2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012-2014 Ecole Normale Superieure
5 * Copyright 2014 INRIA Rocquencourt
6 * Copyright 2016 INRIA Paris
7 * Copyright 2016 Sven Verdoolaege
9 * Use of this software is governed by the MIT license
11 * Written by Sven Verdoolaege, K.U.Leuven, Departement
12 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
13 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
14 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
15 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
16 * and Inria Paris - Rocquencourt, Domaine de Voluceau - Rocquencourt,
17 * B.P. 105 - 78153 Le Chesnay, France
18 * and Centre de Recherche Inria de Paris, 2 rue Simone Iff - Voie DQ12,
19 * CS 42112, 75589 Paris Cedex 12, France
23 #include <isl_ctx_private.h>
24 #include <isl_map_private.h>
26 #include <isl/constraint.h>
27 #include "isl_space_private.h"
28 #include "isl_equalities.h"
29 #include <isl_lp_private.h>
33 #include <isl_reordering.h>
34 #include "isl_sample.h"
38 #include <isl_mat_private.h>
39 #include <isl_vec_private.h>
40 #include <isl_dim_map.h>
41 #include <isl_local_space_private.h>
42 #include <isl_aff_private.h>
43 #include <isl_options_private.h>
44 #include <isl_morph.h>
45 #include <isl_val_private.h>
46 #include <isl/deprecated/map_int.h>
47 #include <isl/deprecated/set_int.h>
49 #include <bset_to_bmap.c>
50 #include <bset_from_bmap.c>
51 #include <set_to_map.c>
52 #include <set_from_map.c>
54 static unsigned n(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
57 case isl_dim_param
: return dim
->nparam
;
58 case isl_dim_in
: return dim
->n_in
;
59 case isl_dim_out
: return dim
->n_out
;
60 case isl_dim_all
: return dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
65 static unsigned pos(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
68 case isl_dim_param
: return 1;
69 case isl_dim_in
: return 1 + dim
->nparam
;
70 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
75 unsigned isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
76 enum isl_dim_type type
)
81 case isl_dim_cst
: return 1;
84 case isl_dim_out
: return isl_space_dim(bmap
->dim
, type
);
85 case isl_dim_div
: return bmap
->n_div
;
86 case isl_dim_all
: return isl_basic_map_total_dim(bmap
);
91 /* Return the space of "map".
93 __isl_keep isl_space
*isl_map_peek_space(__isl_keep
const isl_map
*map
)
95 return map
? map
->dim
: NULL
;
98 unsigned isl_map_dim(__isl_keep isl_map
*map
, enum isl_dim_type type
)
100 return map
? n(map
->dim
, type
) : 0;
103 unsigned isl_set_dim(__isl_keep isl_set
*set
, enum isl_dim_type type
)
105 return set
? n(set
->dim
, type
) : 0;
108 unsigned isl_basic_map_offset(struct isl_basic_map
*bmap
,
109 enum isl_dim_type type
)
118 case isl_dim_cst
: return 0;
119 case isl_dim_param
: return 1;
120 case isl_dim_in
: return 1 + space
->nparam
;
121 case isl_dim_out
: return 1 + space
->nparam
+ space
->n_in
;
122 case isl_dim_div
: return 1 + space
->nparam
+ space
->n_in
+
128 unsigned isl_basic_set_offset(struct isl_basic_set
*bset
,
129 enum isl_dim_type type
)
131 return isl_basic_map_offset(bset
, type
);
134 static unsigned map_offset(__isl_keep isl_map
*map
, enum isl_dim_type type
)
136 return pos(map
->dim
, type
);
139 unsigned isl_basic_set_dim(__isl_keep isl_basic_set
*bset
,
140 enum isl_dim_type type
)
142 return isl_basic_map_dim(bset
, type
);
145 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set
*bset
)
147 return isl_basic_set_dim(bset
, isl_dim_set
);
150 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set
*bset
)
152 return isl_basic_set_dim(bset
, isl_dim_param
);
155 unsigned isl_basic_set_total_dim(const struct isl_basic_set
*bset
)
159 return isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->n_div
;
162 unsigned isl_set_n_dim(__isl_keep isl_set
*set
)
164 return isl_set_dim(set
, isl_dim_set
);
167 unsigned isl_set_n_param(__isl_keep isl_set
*set
)
169 return isl_set_dim(set
, isl_dim_param
);
172 unsigned isl_basic_map_n_in(__isl_keep
const isl_basic_map
*bmap
)
174 return bmap
? bmap
->dim
->n_in
: 0;
177 unsigned isl_basic_map_n_out(__isl_keep
const isl_basic_map
*bmap
)
179 return bmap
? bmap
->dim
->n_out
: 0;
182 unsigned isl_basic_map_n_param(__isl_keep
const isl_basic_map
*bmap
)
184 return bmap
? bmap
->dim
->nparam
: 0;
187 unsigned isl_basic_map_n_div(__isl_keep
const isl_basic_map
*bmap
)
189 return bmap
? bmap
->n_div
: 0;
192 unsigned isl_basic_map_total_dim(const struct isl_basic_map
*bmap
)
194 return bmap
? isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->n_div
: 0;
197 unsigned isl_map_n_in(const struct isl_map
*map
)
199 return map
? map
->dim
->n_in
: 0;
202 unsigned isl_map_n_out(const struct isl_map
*map
)
204 return map
? map
->dim
->n_out
: 0;
207 unsigned isl_map_n_param(const struct isl_map
*map
)
209 return map
? map
->dim
->nparam
: 0;
212 /* Do "bmap1" and "bmap2" have the same parameters?
214 static isl_bool
isl_basic_map_has_equal_params(__isl_keep isl_basic_map
*bmap1
,
215 __isl_keep isl_basic_map
*bmap2
)
217 isl_space
*space1
, *space2
;
219 space1
= isl_basic_map_peek_space(bmap1
);
220 space2
= isl_basic_map_peek_space(bmap2
);
221 return isl_space_has_equal_params(space1
, space2
);
224 /* Do "map1" and "map2" have the same parameters?
226 isl_bool
isl_map_has_equal_params(__isl_keep isl_map
*map1
,
227 __isl_keep isl_map
*map2
)
229 isl_space
*space1
, *space2
;
231 space1
= isl_map_peek_space(map1
);
232 space2
= isl_map_peek_space(map2
);
233 return isl_space_has_equal_params(space1
, space2
);
236 /* Do "map" and "set" have the same parameters?
238 static isl_bool
isl_map_set_has_equal_params(__isl_keep isl_map
*map
,
239 __isl_keep isl_set
*set
)
241 return isl_map_has_equal_params(map
, set_to_map(set
));
244 isl_bool
isl_map_compatible_domain(__isl_keep isl_map
*map
,
245 __isl_keep isl_set
*set
)
249 return isl_bool_error
;
250 m
= isl_map_has_equal_params(map
, set_to_map(set
));
253 return isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
254 set
->dim
, isl_dim_set
);
257 isl_bool
isl_basic_map_compatible_domain(__isl_keep isl_basic_map
*bmap
,
258 __isl_keep isl_basic_set
*bset
)
262 return isl_bool_error
;
263 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
266 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
267 bset
->dim
, isl_dim_set
);
270 isl_bool
isl_map_compatible_range(__isl_keep isl_map
*map
,
271 __isl_keep isl_set
*set
)
275 return isl_bool_error
;
276 m
= isl_map_has_equal_params(map
, set_to_map(set
));
279 return isl_space_tuple_is_equal(map
->dim
, isl_dim_out
,
280 set
->dim
, isl_dim_set
);
283 isl_bool
isl_basic_map_compatible_range(__isl_keep isl_basic_map
*bmap
,
284 __isl_keep isl_basic_set
*bset
)
288 return isl_bool_error
;
289 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
292 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_out
,
293 bset
->dim
, isl_dim_set
);
296 isl_ctx
*isl_basic_map_get_ctx(__isl_keep isl_basic_map
*bmap
)
298 return bmap
? bmap
->ctx
: NULL
;
301 isl_ctx
*isl_basic_set_get_ctx(__isl_keep isl_basic_set
*bset
)
303 return bset
? bset
->ctx
: NULL
;
306 isl_ctx
*isl_map_get_ctx(__isl_keep isl_map
*map
)
308 return map
? map
->ctx
: NULL
;
311 isl_ctx
*isl_set_get_ctx(__isl_keep isl_set
*set
)
313 return set
? set
->ctx
: NULL
;
316 /* Return the space of "bmap".
318 __isl_keep isl_space
*isl_basic_map_peek_space(
319 __isl_keep
const isl_basic_map
*bmap
)
321 return bmap
? bmap
->dim
: NULL
;
324 /* Return the space of "bset".
326 __isl_keep isl_space
*isl_basic_set_peek_space(__isl_keep isl_basic_set
*bset
)
328 return isl_basic_map_peek_space(bset_to_bmap(bset
));
331 __isl_give isl_space
*isl_basic_map_get_space(__isl_keep isl_basic_map
*bmap
)
333 return isl_space_copy(isl_basic_map_peek_space(bmap
));
336 __isl_give isl_space
*isl_basic_set_get_space(__isl_keep isl_basic_set
*bset
)
338 return isl_basic_map_get_space(bset_to_bmap(bset
));
341 /* Extract the divs in "bmap" as a matrix.
343 __isl_give isl_mat
*isl_basic_map_get_divs(__isl_keep isl_basic_map
*bmap
)
354 ctx
= isl_basic_map_get_ctx(bmap
);
355 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
356 cols
= 1 + 1 + total
+ bmap
->n_div
;
357 div
= isl_mat_alloc(ctx
, bmap
->n_div
, cols
);
361 for (i
= 0; i
< bmap
->n_div
; ++i
)
362 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
367 /* Extract the divs in "bset" as a matrix.
369 __isl_give isl_mat
*isl_basic_set_get_divs(__isl_keep isl_basic_set
*bset
)
371 return isl_basic_map_get_divs(bset
);
374 __isl_give isl_local_space
*isl_basic_map_get_local_space(
375 __isl_keep isl_basic_map
*bmap
)
382 div
= isl_basic_map_get_divs(bmap
);
383 return isl_local_space_alloc_div(isl_space_copy(bmap
->dim
), div
);
386 __isl_give isl_local_space
*isl_basic_set_get_local_space(
387 __isl_keep isl_basic_set
*bset
)
389 return isl_basic_map_get_local_space(bset
);
392 /* For each known div d = floor(f/m), add the constraints
395 * -(f-(m-1)) + m d >= 0
397 * Do not finalize the result.
399 static __isl_give isl_basic_map
*add_known_div_constraints(
400 __isl_take isl_basic_map
*bmap
)
407 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
410 bmap
= isl_basic_map_cow(bmap
);
411 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
414 for (i
= 0; i
< n_div
; ++i
) {
415 if (isl_int_is_zero(bmap
->div
[i
][0]))
417 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
418 return isl_basic_map_free(bmap
);
424 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
425 __isl_take isl_local_space
*ls
)
434 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
435 bmap
= isl_basic_map_alloc_space(isl_local_space_get_space(ls
),
436 n_div
, 0, 2 * n_div
);
438 for (i
= 0; i
< n_div
; ++i
)
439 if (isl_basic_map_alloc_div(bmap
) < 0)
442 for (i
= 0; i
< n_div
; ++i
)
443 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
444 bmap
= add_known_div_constraints(bmap
);
446 isl_local_space_free(ls
);
449 isl_local_space_free(ls
);
450 isl_basic_map_free(bmap
);
454 __isl_give isl_basic_set
*isl_basic_set_from_local_space(
455 __isl_take isl_local_space
*ls
)
457 return isl_basic_map_from_local_space(ls
);
460 __isl_give isl_space
*isl_map_get_space(__isl_keep isl_map
*map
)
462 return isl_space_copy(isl_map_peek_space(map
));
465 __isl_give isl_space
*isl_set_get_space(__isl_keep isl_set
*set
)
469 return isl_space_copy(set
->dim
);
472 __isl_give isl_basic_map
*isl_basic_map_set_tuple_name(
473 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, const char *s
)
475 bmap
= isl_basic_map_cow(bmap
);
478 bmap
->dim
= isl_space_set_tuple_name(bmap
->dim
, type
, s
);
481 bmap
= isl_basic_map_finalize(bmap
);
484 isl_basic_map_free(bmap
);
488 __isl_give isl_basic_set
*isl_basic_set_set_tuple_name(
489 __isl_take isl_basic_set
*bset
, const char *s
)
491 return isl_basic_map_set_tuple_name(bset
, isl_dim_set
, s
);
494 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map
*bmap
,
495 enum isl_dim_type type
)
497 return bmap
? isl_space_get_tuple_name(bmap
->dim
, type
) : NULL
;
500 __isl_give isl_map
*isl_map_set_tuple_name(__isl_take isl_map
*map
,
501 enum isl_dim_type type
, const char *s
)
505 map
= isl_map_cow(map
);
509 map
->dim
= isl_space_set_tuple_name(map
->dim
, type
, s
);
513 for (i
= 0; i
< map
->n
; ++i
) {
514 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
525 /* Replace the identifier of the tuple of type "type" by "id".
527 __isl_give isl_basic_map
*isl_basic_map_set_tuple_id(
528 __isl_take isl_basic_map
*bmap
,
529 enum isl_dim_type type
, __isl_take isl_id
*id
)
531 bmap
= isl_basic_map_cow(bmap
);
534 bmap
->dim
= isl_space_set_tuple_id(bmap
->dim
, type
, id
);
536 return isl_basic_map_free(bmap
);
537 bmap
= isl_basic_map_finalize(bmap
);
544 /* Replace the identifier of the tuple by "id".
546 __isl_give isl_basic_set
*isl_basic_set_set_tuple_id(
547 __isl_take isl_basic_set
*bset
, __isl_take isl_id
*id
)
549 return isl_basic_map_set_tuple_id(bset
, isl_dim_set
, id
);
552 /* Does the input or output tuple have a name?
554 isl_bool
isl_map_has_tuple_name(__isl_keep isl_map
*map
, enum isl_dim_type type
)
556 return map
? isl_space_has_tuple_name(map
->dim
, type
) : isl_bool_error
;
559 const char *isl_map_get_tuple_name(__isl_keep isl_map
*map
,
560 enum isl_dim_type type
)
562 return map
? isl_space_get_tuple_name(map
->dim
, type
) : NULL
;
565 __isl_give isl_set
*isl_set_set_tuple_name(__isl_take isl_set
*set
,
568 return set_from_map(isl_map_set_tuple_name(set_to_map(set
),
572 __isl_give isl_map
*isl_map_set_tuple_id(__isl_take isl_map
*map
,
573 enum isl_dim_type type
, __isl_take isl_id
*id
)
575 map
= isl_map_cow(map
);
579 map
->dim
= isl_space_set_tuple_id(map
->dim
, type
, id
);
581 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
587 __isl_give isl_set
*isl_set_set_tuple_id(__isl_take isl_set
*set
,
588 __isl_take isl_id
*id
)
590 return isl_map_set_tuple_id(set
, isl_dim_set
, id
);
593 __isl_give isl_map
*isl_map_reset_tuple_id(__isl_take isl_map
*map
,
594 enum isl_dim_type type
)
596 map
= isl_map_cow(map
);
600 map
->dim
= isl_space_reset_tuple_id(map
->dim
, type
);
602 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
605 __isl_give isl_set
*isl_set_reset_tuple_id(__isl_take isl_set
*set
)
607 return isl_map_reset_tuple_id(set
, isl_dim_set
);
610 isl_bool
isl_map_has_tuple_id(__isl_keep isl_map
*map
, enum isl_dim_type type
)
612 return map
? isl_space_has_tuple_id(map
->dim
, type
) : isl_bool_error
;
615 __isl_give isl_id
*isl_map_get_tuple_id(__isl_keep isl_map
*map
,
616 enum isl_dim_type type
)
618 return map
? isl_space_get_tuple_id(map
->dim
, type
) : NULL
;
621 isl_bool
isl_set_has_tuple_id(__isl_keep isl_set
*set
)
623 return isl_map_has_tuple_id(set
, isl_dim_set
);
626 __isl_give isl_id
*isl_set_get_tuple_id(__isl_keep isl_set
*set
)
628 return isl_map_get_tuple_id(set
, isl_dim_set
);
631 /* Does the set tuple have a name?
633 isl_bool
isl_set_has_tuple_name(__isl_keep isl_set
*set
)
636 return isl_bool_error
;
637 return isl_space_has_tuple_name(set
->dim
, isl_dim_set
);
641 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
643 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
646 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
648 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
651 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
652 enum isl_dim_type type
, unsigned pos
)
654 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
657 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
658 enum isl_dim_type type
, unsigned pos
)
660 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
663 /* Does the given dimension have a name?
665 isl_bool
isl_map_has_dim_name(__isl_keep isl_map
*map
,
666 enum isl_dim_type type
, unsigned pos
)
669 return isl_bool_error
;
670 return isl_space_has_dim_name(map
->dim
, type
, pos
);
673 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
674 enum isl_dim_type type
, unsigned pos
)
676 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
679 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
680 enum isl_dim_type type
, unsigned pos
)
682 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
685 /* Does the given dimension have a name?
687 isl_bool
isl_set_has_dim_name(__isl_keep isl_set
*set
,
688 enum isl_dim_type type
, unsigned pos
)
691 return isl_bool_error
;
692 return isl_space_has_dim_name(set
->dim
, type
, pos
);
695 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
696 __isl_take isl_basic_map
*bmap
,
697 enum isl_dim_type type
, unsigned pos
, const char *s
)
699 bmap
= isl_basic_map_cow(bmap
);
702 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
705 return isl_basic_map_finalize(bmap
);
707 isl_basic_map_free(bmap
);
711 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
712 enum isl_dim_type type
, unsigned pos
, const char *s
)
716 map
= isl_map_cow(map
);
720 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
724 for (i
= 0; i
< map
->n
; ++i
) {
725 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
736 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
737 __isl_take isl_basic_set
*bset
,
738 enum isl_dim_type type
, unsigned pos
, const char *s
)
740 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset
),
744 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
745 enum isl_dim_type type
, unsigned pos
, const char *s
)
747 return set_from_map(isl_map_set_dim_name(set_to_map(set
),
751 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
752 enum isl_dim_type type
, unsigned pos
)
755 return isl_bool_error
;
756 return isl_space_has_dim_id(bmap
->dim
, type
, pos
);
759 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
760 enum isl_dim_type type
, unsigned pos
)
762 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
765 isl_bool
isl_map_has_dim_id(__isl_keep isl_map
*map
,
766 enum isl_dim_type type
, unsigned pos
)
768 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : isl_bool_error
;
771 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
772 enum isl_dim_type type
, unsigned pos
)
774 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
777 isl_bool
isl_set_has_dim_id(__isl_keep isl_set
*set
,
778 enum isl_dim_type type
, unsigned pos
)
780 return isl_map_has_dim_id(set
, type
, pos
);
783 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
784 enum isl_dim_type type
, unsigned pos
)
786 return isl_map_get_dim_id(set
, type
, pos
);
789 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
790 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
792 map
= isl_map_cow(map
);
796 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
798 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
804 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
805 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
807 return isl_map_set_dim_id(set
, type
, pos
, id
);
810 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
811 __isl_keep isl_id
*id
)
815 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
818 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
819 __isl_keep isl_id
*id
)
821 return isl_map_find_dim_by_id(set
, type
, id
);
824 /* Return the position of the dimension of the given type and name
826 * Return -1 if no such dimension can be found.
828 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
829 enum isl_dim_type type
, const char *name
)
833 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
836 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
841 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
844 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
847 return isl_map_find_dim_by_name(set
, type
, name
);
850 /* Check whether equality i of bset is a pure stride constraint
851 * on a single dimension, i.e., of the form
855 * with k a constant and e an existentially quantified variable.
857 isl_bool
isl_basic_set_eq_is_stride(__isl_keep isl_basic_set
*bset
, int i
)
866 return isl_bool_error
;
868 if (!isl_int_is_zero(bset
->eq
[i
][0]))
869 return isl_bool_false
;
871 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
872 d
= isl_basic_set_dim(bset
, isl_dim_set
);
873 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
875 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1, nparam
) != -1)
876 return isl_bool_false
;
877 pos1
= isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
, d
);
879 return isl_bool_false
;
880 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ pos1
+ 1,
882 return isl_bool_false
;
884 pos2
= isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ d
, n_div
);
886 return isl_bool_false
;
887 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ d
+ pos2
+ 1,
888 n_div
- pos2
- 1) != -1)
889 return isl_bool_false
;
890 if (!isl_int_is_one(bset
->eq
[i
][1 + nparam
+ pos1
]) &&
891 !isl_int_is_negone(bset
->eq
[i
][1 + nparam
+ pos1
]))
892 return isl_bool_false
;
894 return isl_bool_true
;
897 /* Reset the user pointer on all identifiers of parameters and tuples
898 * of the space of "map".
900 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
904 space
= isl_map_get_space(map
);
905 space
= isl_space_reset_user(space
);
906 map
= isl_map_reset_space(map
, space
);
911 /* Reset the user pointer on all identifiers of parameters and tuples
912 * of the space of "set".
914 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
916 return isl_map_reset_user(set
);
919 isl_bool
isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
922 return isl_bool_error
;
923 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
926 /* Has "map" been marked as a rational map?
927 * In particular, have all basic maps in "map" been marked this way?
928 * An empty map is not considered to be rational.
929 * Maps where only some of the basic maps are marked rational
932 isl_bool
isl_map_is_rational(__isl_keep isl_map
*map
)
938 return isl_bool_error
;
940 return isl_bool_false
;
941 rational
= isl_basic_map_is_rational(map
->p
[0]);
944 for (i
= 1; i
< map
->n
; ++i
) {
947 rational_i
= isl_basic_map_is_rational(map
->p
[i
]);
950 if (rational
!= rational_i
)
951 isl_die(isl_map_get_ctx(map
), isl_error_unsupported
,
952 "mixed rational and integer basic maps "
953 "not supported", return isl_bool_error
);
959 /* Has "set" been marked as a rational set?
960 * In particular, have all basic set in "set" been marked this way?
961 * An empty set is not considered to be rational.
962 * Sets where only some of the basic sets are marked rational
965 isl_bool
isl_set_is_rational(__isl_keep isl_set
*set
)
967 return isl_map_is_rational(set
);
970 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
972 return isl_basic_map_is_rational(bset
);
975 /* Does "bmap" contain any rational points?
977 * If "bmap" has an equality for each dimension, equating the dimension
978 * to an integer constant, then it has no rational points, even if it
979 * is marked as rational.
981 isl_bool
isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
983 isl_bool has_rational
= isl_bool_true
;
987 return isl_bool_error
;
988 if (isl_basic_map_plain_is_empty(bmap
))
989 return isl_bool_false
;
990 if (!isl_basic_map_is_rational(bmap
))
991 return isl_bool_false
;
992 bmap
= isl_basic_map_copy(bmap
);
993 bmap
= isl_basic_map_implicit_equalities(bmap
);
995 return isl_bool_error
;
996 total
= isl_basic_map_total_dim(bmap
);
997 if (bmap
->n_eq
== total
) {
999 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
1000 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
1003 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
1004 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
1006 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
1011 if (i
== bmap
->n_eq
)
1012 has_rational
= isl_bool_false
;
1014 isl_basic_map_free(bmap
);
1016 return has_rational
;
1019 /* Does "map" contain any rational points?
1021 isl_bool
isl_map_has_rational(__isl_keep isl_map
*map
)
1024 isl_bool has_rational
;
1027 return isl_bool_error
;
1028 for (i
= 0; i
< map
->n
; ++i
) {
1029 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
1030 if (has_rational
< 0 || has_rational
)
1031 return has_rational
;
1033 return isl_bool_false
;
1036 /* Does "set" contain any rational points?
1038 isl_bool
isl_set_has_rational(__isl_keep isl_set
*set
)
1040 return isl_map_has_rational(set
);
1043 /* Is this basic set a parameter domain?
1045 isl_bool
isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
1048 return isl_bool_error
;
1049 return isl_space_is_params(bset
->dim
);
1052 /* Is this set a parameter domain?
1054 isl_bool
isl_set_is_params(__isl_keep isl_set
*set
)
1057 return isl_bool_error
;
1058 return isl_space_is_params(set
->dim
);
1061 /* Is this map actually a parameter domain?
1062 * Users should never call this function. Outside of isl,
1063 * a map can never be a parameter domain.
1065 isl_bool
isl_map_is_params(__isl_keep isl_map
*map
)
1068 return isl_bool_error
;
1069 return isl_space_is_params(map
->dim
);
1072 static struct isl_basic_map
*basic_map_init(struct isl_ctx
*ctx
,
1073 struct isl_basic_map
*bmap
, unsigned extra
,
1074 unsigned n_eq
, unsigned n_ineq
)
1077 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
1082 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
1083 if (isl_blk_is_error(bmap
->block
))
1086 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
1087 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
1091 bmap
->block2
= isl_blk_empty();
1094 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
1095 if (isl_blk_is_error(bmap
->block2
))
1098 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
1103 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
1104 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
1106 for (i
= 0; i
< extra
; ++i
)
1107 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
1111 bmap
->c_size
= n_eq
+ n_ineq
;
1112 bmap
->eq
= bmap
->ineq
+ n_ineq
;
1113 bmap
->extra
= extra
;
1117 bmap
->sample
= NULL
;
1121 isl_basic_map_free(bmap
);
1125 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
1126 unsigned nparam
, unsigned dim
, unsigned extra
,
1127 unsigned n_eq
, unsigned n_ineq
)
1129 struct isl_basic_map
*bmap
;
1132 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
1136 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1137 return bset_from_bmap(bmap
);
1140 struct isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
1141 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1143 struct isl_basic_map
*bmap
;
1146 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
1147 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1148 return bset_from_bmap(bmap
);
1150 isl_space_free(dim
);
1154 struct isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*dim
,
1155 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1157 struct isl_basic_map
*bmap
;
1161 bmap
= isl_calloc_type(dim
->ctx
, struct isl_basic_map
);
1166 return basic_map_init(dim
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
1168 isl_space_free(dim
);
1172 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
1173 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
1174 unsigned n_eq
, unsigned n_ineq
)
1176 struct isl_basic_map
*bmap
;
1179 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
1183 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1187 static void dup_constraints(
1188 struct isl_basic_map
*dst
, struct isl_basic_map
*src
)
1191 unsigned total
= isl_basic_map_total_dim(src
);
1193 for (i
= 0; i
< src
->n_eq
; ++i
) {
1194 int j
= isl_basic_map_alloc_equality(dst
);
1195 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1198 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1199 int j
= isl_basic_map_alloc_inequality(dst
);
1200 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1203 for (i
= 0; i
< src
->n_div
; ++i
) {
1204 int j
= isl_basic_map_alloc_div(dst
);
1205 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1207 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1210 struct isl_basic_map
*isl_basic_map_dup(struct isl_basic_map
*bmap
)
1212 struct isl_basic_map
*dup
;
1216 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1217 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1220 dup_constraints(dup
, bmap
);
1221 dup
->flags
= bmap
->flags
;
1222 dup
->sample
= isl_vec_copy(bmap
->sample
);
1226 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1228 struct isl_basic_map
*dup
;
1230 dup
= isl_basic_map_dup(bset_to_bmap(bset
));
1231 return bset_from_bmap(dup
);
1234 struct isl_basic_set
*isl_basic_set_copy(struct isl_basic_set
*bset
)
1239 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1243 return isl_basic_set_dup(bset
);
1246 struct isl_set
*isl_set_copy(struct isl_set
*set
)
1255 struct isl_basic_map
*isl_basic_map_copy(struct isl_basic_map
*bmap
)
1260 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1264 bmap
= isl_basic_map_dup(bmap
);
1266 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1270 struct isl_map
*isl_map_copy(struct isl_map
*map
)
1279 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1284 if (--bmap
->ref
> 0)
1287 isl_ctx_deref(bmap
->ctx
);
1289 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1291 isl_blk_free(bmap
->ctx
, bmap
->block
);
1292 isl_vec_free(bmap
->sample
);
1293 isl_space_free(bmap
->dim
);
1299 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1301 return isl_basic_map_free(bset_to_bmap(bset
));
1304 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1306 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1309 /* Check that "map" has only named parameters, reporting an error
1312 isl_stat
isl_map_check_named_params(__isl_keep isl_map
*map
)
1314 return isl_space_check_named_params(isl_map_peek_space(map
));
1317 /* Check that "bmap1" and "bmap2" have the same parameters,
1318 * reporting an error if they do not.
1320 static isl_stat
isl_basic_map_check_equal_params(
1321 __isl_keep isl_basic_map
*bmap1
, __isl_keep isl_basic_map
*bmap2
)
1325 match
= isl_basic_map_has_equal_params(bmap1
, bmap2
);
1327 return isl_stat_error
;
1329 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
1330 "parameters don't match", return isl_stat_error
);
1334 __isl_give isl_map
*isl_map_align_params_map_map_and(
1335 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1336 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1337 __isl_take isl_map
*map2
))
1341 if (isl_map_has_equal_params(map1
, map2
))
1342 return fn(map1
, map2
);
1343 if (isl_map_check_named_params(map1
) < 0)
1345 if (isl_map_check_named_params(map2
) < 0)
1347 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1348 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1349 return fn(map1
, map2
);
1356 isl_bool
isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1357 __isl_keep isl_map
*map2
,
1358 isl_bool (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1363 return isl_bool_error
;
1364 if (isl_map_has_equal_params(map1
, map2
))
1365 return fn(map1
, map2
);
1366 if (isl_map_check_named_params(map1
) < 0)
1367 return isl_bool_error
;
1368 if (isl_map_check_named_params(map2
) < 0)
1369 return isl_bool_error
;
1370 map1
= isl_map_copy(map1
);
1371 map2
= isl_map_copy(map2
);
1372 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1373 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1380 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1382 struct isl_ctx
*ctx
;
1386 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1387 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1389 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1390 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1391 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1392 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1393 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1394 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1396 int j
= isl_basic_map_alloc_inequality(bmap
);
1400 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1401 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1408 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1409 bmap
->extra
- bmap
->n_div
);
1410 return bmap
->n_eq
++;
1413 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1415 return isl_basic_map_alloc_equality(bset_to_bmap(bset
));
1418 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1422 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1427 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1429 return isl_basic_map_free_equality(bset_to_bmap(bset
), n
);
1432 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1437 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1439 if (pos
!= bmap
->n_eq
- 1) {
1441 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1442 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1448 /* Turn inequality "pos" of "bmap" into an equality.
1450 * In particular, we move the inequality in front of the equalities
1451 * and move the last inequality in the position of the moved inequality.
1452 * Note that isl_tab_make_equalities_explicit depends on this particular
1453 * change in the ordering of the constraints.
1455 void isl_basic_map_inequality_to_equality(
1456 struct isl_basic_map
*bmap
, unsigned pos
)
1460 t
= bmap
->ineq
[pos
];
1461 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1462 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1467 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1468 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1469 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1470 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1473 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1475 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1478 int isl_basic_map_alloc_inequality(struct isl_basic_map
*bmap
)
1480 struct isl_ctx
*ctx
;
1484 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1485 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1486 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1487 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1488 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1489 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1490 1 + isl_basic_map_total_dim(bmap
),
1491 bmap
->extra
- bmap
->n_div
);
1492 return bmap
->n_ineq
++;
1495 int isl_basic_set_alloc_inequality(struct isl_basic_set
*bset
)
1497 return isl_basic_map_alloc_inequality(bset_to_bmap(bset
));
1500 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1504 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1509 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1511 return isl_basic_map_free_inequality(bset_to_bmap(bset
), n
);
1514 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1519 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1521 if (pos
!= bmap
->n_ineq
- 1) {
1522 t
= bmap
->ineq
[pos
];
1523 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1524 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1525 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
1531 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1533 return isl_basic_map_drop_inequality(bset_to_bmap(bset
), pos
);
1536 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1541 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1544 k
= isl_basic_map_alloc_equality(bmap
);
1547 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1550 isl_basic_map_free(bmap
);
1554 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1557 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset
), eq
));
1560 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1565 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1568 k
= isl_basic_map_alloc_inequality(bmap
);
1571 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1574 isl_basic_map_free(bmap
);
1578 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1581 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset
), ineq
));
1584 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1588 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1589 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1590 1 + 1 + isl_basic_map_total_dim(bmap
),
1591 bmap
->extra
- bmap
->n_div
);
1592 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1593 return bmap
->n_div
++;
1596 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1598 return isl_basic_map_alloc_div(bset_to_bmap(bset
));
1601 /* Check that there are "n" dimensions of type "type" starting at "first"
1604 static isl_stat
isl_basic_map_check_range(__isl_keep isl_basic_map
*bmap
,
1605 enum isl_dim_type type
, unsigned first
, unsigned n
)
1610 return isl_stat_error
;
1611 dim
= isl_basic_map_dim(bmap
, type
);
1612 if (first
+ n
> dim
|| first
+ n
< first
)
1613 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1614 "position or range out of bounds",
1615 return isl_stat_error
);
1619 /* Insert an extra integer division, prescribed by "div", to "bmap"
1620 * at (integer division) position "pos".
1622 * The integer division is first added at the end and then moved
1623 * into the right position.
1625 __isl_give isl_basic_map
*isl_basic_map_insert_div(
1626 __isl_take isl_basic_map
*bmap
, int pos
, __isl_keep isl_vec
*div
)
1630 bmap
= isl_basic_map_cow(bmap
);
1632 return isl_basic_map_free(bmap
);
1634 if (div
->size
!= 1 + 1 + isl_basic_map_dim(bmap
, isl_dim_all
))
1635 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1636 "unexpected size", return isl_basic_map_free(bmap
));
1637 if (isl_basic_map_check_range(bmap
, isl_dim_div
, pos
, 0) < 0)
1638 return isl_basic_map_free(bmap
);
1640 bmap
= isl_basic_map_extend_space(bmap
,
1641 isl_basic_map_get_space(bmap
), 1, 0, 2);
1642 k
= isl_basic_map_alloc_div(bmap
);
1644 return isl_basic_map_free(bmap
);
1645 isl_seq_cpy(bmap
->div
[k
], div
->el
, div
->size
);
1646 isl_int_set_si(bmap
->div
[k
][div
->size
], 0);
1648 for (i
= k
; i
> pos
; --i
)
1649 isl_basic_map_swap_div(bmap
, i
, i
- 1);
1654 isl_stat
isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1657 return isl_stat_error
;
1658 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return isl_stat_error
);
1663 /* Copy constraint from src to dst, putting the vars of src at offset
1664 * dim_off in dst and the divs of src at offset div_off in dst.
1665 * If both sets are actually map, then dim_off applies to the input
1668 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1669 struct isl_basic_map
*src_map
, isl_int
*src
,
1670 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1672 unsigned src_nparam
= isl_basic_map_dim(src_map
, isl_dim_param
);
1673 unsigned dst_nparam
= isl_basic_map_dim(dst_map
, isl_dim_param
);
1674 unsigned src_in
= isl_basic_map_dim(src_map
, isl_dim_in
);
1675 unsigned dst_in
= isl_basic_map_dim(dst_map
, isl_dim_in
);
1676 unsigned src_out
= isl_basic_map_dim(src_map
, isl_dim_out
);
1677 unsigned dst_out
= isl_basic_map_dim(dst_map
, isl_dim_out
);
1678 isl_int_set(dst
[0], src
[0]);
1679 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1680 if (dst_nparam
> src_nparam
)
1681 isl_seq_clr(dst
+1+src_nparam
,
1682 dst_nparam
- src_nparam
);
1683 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1684 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1686 isl_min(dst_in
-in_off
, src_in
));
1687 if (dst_in
-in_off
> src_in
)
1688 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1689 dst_in
- in_off
- src_in
);
1690 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1691 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1692 src
+1+src_nparam
+src_in
,
1693 isl_min(dst_out
-out_off
, src_out
));
1694 if (dst_out
-out_off
> src_out
)
1695 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1696 dst_out
- out_off
- src_out
);
1697 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1698 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1699 src
+1+src_nparam
+src_in
+src_out
,
1700 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1701 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1702 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1703 div_off
+src_map
->n_div
,
1704 dst_map
->n_div
- div_off
- src_map
->n_div
);
1707 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1708 struct isl_basic_map
*src_map
, isl_int
*src
,
1709 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1711 isl_int_set(dst
[0], src
[0]);
1712 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1715 static __isl_give isl_basic_map
*add_constraints(
1716 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
,
1717 unsigned i_pos
, unsigned o_pos
)
1722 if (!bmap1
|| !bmap2
)
1725 div_off
= bmap1
->n_div
;
1727 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1728 int i1
= isl_basic_map_alloc_equality(bmap1
);
1731 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1732 i_pos
, o_pos
, div_off
);
1735 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1736 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1739 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1740 i_pos
, o_pos
, div_off
);
1743 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1744 int i1
= isl_basic_map_alloc_div(bmap1
);
1747 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1748 i_pos
, o_pos
, div_off
);
1751 isl_basic_map_free(bmap2
);
1756 isl_basic_map_free(bmap1
);
1757 isl_basic_map_free(bmap2
);
1761 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1762 struct isl_basic_set
*bset2
, unsigned pos
)
1764 return bset_from_bmap(add_constraints(bset_to_bmap(bset1
),
1765 bset_to_bmap(bset2
), 0, pos
));
1768 struct isl_basic_map
*isl_basic_map_extend_space(struct isl_basic_map
*base
,
1769 __isl_take isl_space
*dim
, unsigned extra
,
1770 unsigned n_eq
, unsigned n_ineq
)
1772 struct isl_basic_map
*ext
;
1782 dims_ok
= isl_space_is_equal(base
->dim
, dim
) &&
1783 base
->extra
>= base
->n_div
+ extra
;
1785 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1786 room_for_ineq(base
, n_ineq
)) {
1787 isl_space_free(dim
);
1791 isl_assert(base
->ctx
, base
->dim
->nparam
<= dim
->nparam
, goto error
);
1792 isl_assert(base
->ctx
, base
->dim
->n_in
<= dim
->n_in
, goto error
);
1793 isl_assert(base
->ctx
, base
->dim
->n_out
<= dim
->n_out
, goto error
);
1794 extra
+= base
->extra
;
1796 n_ineq
+= base
->n_ineq
;
1798 ext
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1804 ext
->sample
= isl_vec_copy(base
->sample
);
1805 flags
= base
->flags
;
1806 ext
= add_constraints(ext
, base
, 0, 0);
1809 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1815 isl_space_free(dim
);
1816 isl_basic_map_free(base
);
1820 struct isl_basic_set
*isl_basic_set_extend_space(struct isl_basic_set
*base
,
1821 __isl_take isl_space
*dim
, unsigned extra
,
1822 unsigned n_eq
, unsigned n_ineq
)
1824 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base
),
1825 dim
, extra
, n_eq
, n_ineq
));
1828 struct isl_basic_map
*isl_basic_map_extend_constraints(
1829 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1833 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1837 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1838 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1839 unsigned n_eq
, unsigned n_ineq
)
1841 struct isl_basic_map
*bmap
;
1846 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1850 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1853 isl_basic_map_free(base
);
1857 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1858 unsigned nparam
, unsigned dim
, unsigned extra
,
1859 unsigned n_eq
, unsigned n_ineq
)
1861 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base
),
1862 nparam
, 0, dim
, extra
, n_eq
, n_ineq
));
1865 struct isl_basic_set
*isl_basic_set_extend_constraints(
1866 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1868 isl_basic_map
*bmap
= bset_to_bmap(base
);
1869 bmap
= isl_basic_map_extend_constraints(bmap
, n_eq
, n_ineq
);
1870 return bset_from_bmap(bmap
);
1873 struct isl_basic_set
*isl_basic_set_cow(struct isl_basic_set
*bset
)
1875 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset
)));
1878 struct isl_basic_map
*isl_basic_map_cow(struct isl_basic_map
*bmap
)
1883 if (bmap
->ref
> 1) {
1885 bmap
= isl_basic_map_dup(bmap
);
1888 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1889 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1894 /* Clear all cached information in "map", either because it is about
1895 * to be modified or because it is being freed.
1896 * Always return the same pointer that is passed in.
1897 * This is needed for the use in isl_map_free.
1899 static __isl_give isl_map
*clear_caches(__isl_take isl_map
*map
)
1901 isl_basic_map_free(map
->cached_simple_hull
[0]);
1902 isl_basic_map_free(map
->cached_simple_hull
[1]);
1903 map
->cached_simple_hull
[0] = NULL
;
1904 map
->cached_simple_hull
[1] = NULL
;
1908 struct isl_set
*isl_set_cow(struct isl_set
*set
)
1910 return isl_map_cow(set
);
1913 /* Return an isl_map that is equal to "map" and that has only
1914 * a single reference.
1916 * If the original input already has only one reference, then
1917 * simply return it, but clear all cached information, since
1918 * it may be rendered invalid by the operations that will be
1919 * performed on the result.
1921 * Otherwise, create a duplicate (without any cached information).
1923 struct isl_map
*isl_map_cow(struct isl_map
*map
)
1929 return clear_caches(map
);
1931 return isl_map_dup(map
);
1934 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1935 unsigned a_len
, unsigned b_len
)
1937 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1938 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1939 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1942 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1943 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
1951 isl_assert(bmap
->ctx
,
1952 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
1954 if (n1
== 0 || n2
== 0)
1957 bmap
= isl_basic_map_cow(bmap
);
1961 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
1962 if (isl_blk_is_error(blk
))
1965 for (i
= 0; i
< bmap
->n_eq
; ++i
)
1967 bmap
->eq
[i
] + pos
, n1
, n2
);
1969 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
1971 bmap
->ineq
[i
] + pos
, n1
, n2
);
1973 for (i
= 0; i
< bmap
->n_div
; ++i
)
1975 bmap
->div
[i
]+1 + pos
, n1
, n2
);
1977 isl_blk_free(bmap
->ctx
, blk
);
1979 ISL_F_CLR(bmap
, ISL_BASIC_SET_NORMALIZED
);
1980 bmap
= isl_basic_map_gauss(bmap
, NULL
);
1981 return isl_basic_map_finalize(bmap
);
1983 isl_basic_map_free(bmap
);
1987 struct isl_basic_map
*isl_basic_map_set_to_empty(struct isl_basic_map
*bmap
)
1993 total
= isl_basic_map_total_dim(bmap
);
1994 if (isl_basic_map_free_div(bmap
, bmap
->n_div
) < 0)
1995 return isl_basic_map_free(bmap
);
1996 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
1998 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
2000 i
= isl_basic_map_alloc_equality(bmap
);
2004 isl_int_set_si(bmap
->eq
[i
][0], 1);
2005 isl_seq_clr(bmap
->eq
[i
]+1, total
);
2006 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
2007 isl_vec_free(bmap
->sample
);
2008 bmap
->sample
= NULL
;
2009 return isl_basic_map_finalize(bmap
);
2011 isl_basic_map_free(bmap
);
2015 struct isl_basic_set
*isl_basic_set_set_to_empty(struct isl_basic_set
*bset
)
2017 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset
)));
2020 __isl_give isl_basic_map
*isl_basic_map_set_rational(
2021 __isl_take isl_basic_map
*bmap
)
2026 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
2029 bmap
= isl_basic_map_cow(bmap
);
2033 ISL_F_SET(bmap
, ISL_BASIC_MAP_RATIONAL
);
2035 return isl_basic_map_finalize(bmap
);
2038 __isl_give isl_basic_set
*isl_basic_set_set_rational(
2039 __isl_take isl_basic_set
*bset
)
2041 return isl_basic_map_set_rational(bset
);
2044 __isl_give isl_basic_set
*isl_basic_set_set_integral(
2045 __isl_take isl_basic_set
*bset
)
2050 if (!ISL_F_ISSET(bset
, ISL_BASIC_MAP_RATIONAL
))
2053 bset
= isl_basic_set_cow(bset
);
2057 ISL_F_CLR(bset
, ISL_BASIC_MAP_RATIONAL
);
2059 return isl_basic_set_finalize(bset
);
2062 __isl_give isl_map
*isl_map_set_rational(__isl_take isl_map
*map
)
2066 map
= isl_map_cow(map
);
2069 for (i
= 0; i
< map
->n
; ++i
) {
2070 map
->p
[i
] = isl_basic_map_set_rational(map
->p
[i
]);
2080 __isl_give isl_set
*isl_set_set_rational(__isl_take isl_set
*set
)
2082 return isl_map_set_rational(set
);
2085 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2088 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
2090 isl_int
*t
= bmap
->div
[a
];
2091 bmap
->div
[a
] = bmap
->div
[b
];
2095 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2096 * div definitions accordingly.
2098 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
2101 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2103 swap_div(bmap
, a
, b
);
2105 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2106 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
2108 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2109 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
2111 for (i
= 0; i
< bmap
->n_div
; ++i
)
2112 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
2113 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2116 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2117 * div definitions accordingly.
2119 void isl_basic_set_swap_div(__isl_keep isl_basic_set
*bset
, int a
, int b
)
2121 isl_basic_map_swap_div(bset
, a
, b
);
2124 static void constraint_drop_vars(isl_int
*c
, unsigned n
, unsigned rem
)
2126 isl_seq_cpy(c
, c
+ n
, rem
);
2127 isl_seq_clr(c
+ rem
, n
);
2130 /* Drop n dimensions starting at first.
2132 * In principle, this frees up some extra variables as the number
2133 * of columns remains constant, but we would have to extend
2134 * the div array too as the number of rows in this array is assumed
2135 * to be equal to extra.
2137 struct isl_basic_set
*isl_basic_set_drop_dims(
2138 struct isl_basic_set
*bset
, unsigned first
, unsigned n
)
2140 return isl_basic_map_drop(bset_to_bmap(bset
), isl_dim_set
, first
, n
);
2143 /* Move "n" divs starting at "first" to the end of the list of divs.
2145 static struct isl_basic_map
*move_divs_last(struct isl_basic_map
*bmap
,
2146 unsigned first
, unsigned n
)
2151 if (first
+ n
== bmap
->n_div
)
2154 div
= isl_alloc_array(bmap
->ctx
, isl_int
*, n
);
2157 for (i
= 0; i
< n
; ++i
)
2158 div
[i
] = bmap
->div
[first
+ i
];
2159 for (i
= 0; i
< bmap
->n_div
- first
- n
; ++i
)
2160 bmap
->div
[first
+ i
] = bmap
->div
[first
+ n
+ i
];
2161 for (i
= 0; i
< n
; ++i
)
2162 bmap
->div
[bmap
->n_div
- n
+ i
] = div
[i
];
2166 isl_basic_map_free(bmap
);
2170 /* Drop "n" dimensions of type "type" starting at "first".
2172 * In principle, this frees up some extra variables as the number
2173 * of columns remains constant, but we would have to extend
2174 * the div array too as the number of rows in this array is assumed
2175 * to be equal to extra.
2177 struct isl_basic_map
*isl_basic_map_drop(struct isl_basic_map
*bmap
,
2178 enum isl_dim_type type
, unsigned first
, unsigned n
)
2188 dim
= isl_basic_map_dim(bmap
, type
);
2189 isl_assert(bmap
->ctx
, first
+ n
<= dim
, goto error
);
2191 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2194 bmap
= isl_basic_map_cow(bmap
);
2198 offset
= isl_basic_map_offset(bmap
, type
) + first
;
2199 left
= isl_basic_map_total_dim(bmap
) - (offset
- 1) - n
;
2200 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2201 constraint_drop_vars(bmap
->eq
[i
]+offset
, n
, left
);
2203 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2204 constraint_drop_vars(bmap
->ineq
[i
]+offset
, n
, left
);
2206 for (i
= 0; i
< bmap
->n_div
; ++i
)
2207 constraint_drop_vars(bmap
->div
[i
]+1+offset
, n
, left
);
2209 if (type
== isl_dim_div
) {
2210 bmap
= move_divs_last(bmap
, first
, n
);
2213 if (isl_basic_map_free_div(bmap
, n
) < 0)
2214 return isl_basic_map_free(bmap
);
2216 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
2220 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2221 bmap
= isl_basic_map_simplify(bmap
);
2222 return isl_basic_map_finalize(bmap
);
2224 isl_basic_map_free(bmap
);
2228 __isl_give isl_basic_set
*isl_basic_set_drop(__isl_take isl_basic_set
*bset
,
2229 enum isl_dim_type type
, unsigned first
, unsigned n
)
2231 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset
),
2235 struct isl_map
*isl_map_drop(struct isl_map
*map
,
2236 enum isl_dim_type type
, unsigned first
, unsigned n
)
2243 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
2245 if (n
== 0 && !isl_space_is_named_or_nested(map
->dim
, type
))
2247 map
= isl_map_cow(map
);
2250 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
2254 for (i
= 0; i
< map
->n
; ++i
) {
2255 map
->p
[i
] = isl_basic_map_drop(map
->p
[i
], type
, first
, n
);
2259 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
2267 struct isl_set
*isl_set_drop(struct isl_set
*set
,
2268 enum isl_dim_type type
, unsigned first
, unsigned n
)
2270 return set_from_map(isl_map_drop(set_to_map(set
), type
, first
, n
));
2274 * We don't cow, as the div is assumed to be redundant.
2276 __isl_give isl_basic_map
*isl_basic_map_drop_div(
2277 __isl_take isl_basic_map
*bmap
, unsigned div
)
2285 pos
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + div
;
2287 isl_assert(bmap
->ctx
, div
< bmap
->n_div
, goto error
);
2289 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2290 constraint_drop_vars(bmap
->eq
[i
]+pos
, 1, bmap
->extra
-div
-1);
2292 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2293 if (!isl_int_is_zero(bmap
->ineq
[i
][pos
])) {
2294 isl_basic_map_drop_inequality(bmap
, i
);
2298 constraint_drop_vars(bmap
->ineq
[i
]+pos
, 1, bmap
->extra
-div
-1);
2301 for (i
= 0; i
< bmap
->n_div
; ++i
)
2302 constraint_drop_vars(bmap
->div
[i
]+1+pos
, 1, bmap
->extra
-div
-1);
2304 if (div
!= bmap
->n_div
- 1) {
2306 isl_int
*t
= bmap
->div
[div
];
2308 for (j
= div
; j
< bmap
->n_div
- 1; ++j
)
2309 bmap
->div
[j
] = bmap
->div
[j
+1];
2311 bmap
->div
[bmap
->n_div
- 1] = t
;
2313 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2314 if (isl_basic_map_free_div(bmap
, 1) < 0)
2315 return isl_basic_map_free(bmap
);
2319 isl_basic_map_free(bmap
);
2323 /* Eliminate the specified n dimensions starting at first from the
2324 * constraints, without removing the dimensions from the space.
2325 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2327 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
2328 enum isl_dim_type type
, unsigned first
, unsigned n
)
2337 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
2338 isl_die(map
->ctx
, isl_error_invalid
,
2339 "index out of bounds", goto error
);
2341 map
= isl_map_cow(map
);
2345 for (i
= 0; i
< map
->n
; ++i
) {
2346 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
2356 /* Eliminate the specified n dimensions starting at first from the
2357 * constraints, without removing the dimensions from the space.
2358 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2360 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
2361 enum isl_dim_type type
, unsigned first
, unsigned n
)
2363 return set_from_map(isl_map_eliminate(set_to_map(set
), type
, first
, n
));
2366 /* Eliminate the specified n dimensions starting at first from the
2367 * constraints, without removing the dimensions from the space.
2368 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2370 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
2371 unsigned first
, unsigned n
)
2373 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
2376 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
2377 __isl_take isl_basic_map
*bmap
)
2381 bmap
= isl_basic_map_eliminate_vars(bmap
,
2382 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
2386 return isl_basic_map_finalize(bmap
);
2389 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
2390 __isl_take isl_basic_set
*bset
)
2392 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset
)));
2395 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
2404 map
= isl_map_cow(map
);
2408 for (i
= 0; i
< map
->n
; ++i
) {
2409 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
2419 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
2421 return isl_map_remove_divs(set
);
2424 struct isl_basic_map
*isl_basic_map_remove_dims(struct isl_basic_map
*bmap
,
2425 enum isl_dim_type type
, unsigned first
, unsigned n
)
2427 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2428 return isl_basic_map_free(bmap
);
2429 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2431 bmap
= isl_basic_map_eliminate_vars(bmap
,
2432 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
2435 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
2437 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
2441 /* Return true if the definition of the given div (recursively) involves
2442 * any of the given variables.
2444 static isl_bool
div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
2445 unsigned first
, unsigned n
)
2448 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2450 if (isl_int_is_zero(bmap
->div
[div
][0]))
2451 return isl_bool_false
;
2452 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
2453 return isl_bool_true
;
2455 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2458 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2460 involves
= div_involves_vars(bmap
, i
, first
, n
);
2461 if (involves
< 0 || involves
)
2465 return isl_bool_false
;
2468 /* Try and add a lower and/or upper bound on "div" to "bmap"
2469 * based on inequality "i".
2470 * "total" is the total number of variables (excluding the divs).
2471 * "v" is a temporary object that can be used during the calculations.
2472 * If "lb" is set, then a lower bound should be constructed.
2473 * If "ub" is set, then an upper bound should be constructed.
2475 * The calling function has already checked that the inequality does not
2476 * reference "div", but we still need to check that the inequality is
2477 * of the right form. We'll consider the case where we want to construct
2478 * a lower bound. The construction of upper bounds is similar.
2480 * Let "div" be of the form
2482 * q = floor((a + f(x))/d)
2484 * We essentially check if constraint "i" is of the form
2488 * so that we can use it to derive a lower bound on "div".
2489 * However, we allow a slightly more general form
2493 * with the condition that the coefficients of g(x) - f(x) are all
2495 * Rewriting this constraint as
2499 * adding a + f(x) to both sides and dividing by d, we obtain
2501 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2503 * Taking the floor on both sides, we obtain
2505 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2509 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2511 * In the case of an upper bound, we construct the constraint
2513 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2516 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
2517 __isl_take isl_basic_map
*bmap
, int div
, int i
,
2518 unsigned total
, isl_int v
, int lb
, int ub
)
2522 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
2524 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
2525 bmap
->div
[div
][1 + 1 + j
]);
2526 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2529 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
2530 bmap
->div
[div
][1 + 1 + j
]);
2531 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2537 bmap
= isl_basic_map_cow(bmap
);
2538 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2540 int k
= isl_basic_map_alloc_inequality(bmap
);
2543 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2544 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2545 bmap
->div
[div
][1 + j
]);
2546 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2547 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2549 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2552 int k
= isl_basic_map_alloc_inequality(bmap
);
2555 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2556 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2557 bmap
->div
[div
][1 + j
]);
2558 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2559 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2561 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2564 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
2567 isl_basic_map_free(bmap
);
2571 /* This function is called right before "div" is eliminated from "bmap"
2572 * using Fourier-Motzkin.
2573 * Look through the constraints of "bmap" for constraints on the argument
2574 * of the integer division and use them to construct constraints on the
2575 * integer division itself. These constraints can then be combined
2576 * during the Fourier-Motzkin elimination.
2577 * Note that it is only useful to introduce lower bounds on "div"
2578 * if "bmap" already contains upper bounds on "div" as the newly
2579 * introduce lower bounds can then be combined with the pre-existing
2580 * upper bounds. Similarly for upper bounds.
2581 * We therefore first check if "bmap" contains any lower and/or upper bounds
2584 * It is interesting to note that the introduction of these constraints
2585 * can indeed lead to more accurate results, even when compared to
2586 * deriving constraints on the argument of "div" from constraints on "div".
2587 * Consider, for example, the set
2589 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2591 * The second constraint can be rewritten as
2593 * 2 * [(-i-2j+3)/4] + k >= 0
2595 * from which we can derive
2597 * -i - 2j + 3 >= -2k
2603 * Combined with the first constraint, we obtain
2605 * -3 <= 3 + 2k or k >= -3
2607 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2608 * the first constraint, we obtain
2610 * [(i + 2j)/4] >= [-3/4] = -1
2612 * Combining this constraint with the second constraint, we obtain
2616 static __isl_give isl_basic_map
*insert_bounds_on_div(
2617 __isl_take isl_basic_map
*bmap
, int div
)
2620 int check_lb
, check_ub
;
2627 if (isl_int_is_zero(bmap
->div
[div
][0]))
2630 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2634 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2635 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2642 if (!check_lb
&& !check_ub
)
2647 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2648 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2651 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2652 check_lb
, check_ub
);
2660 /* Remove all divs (recursively) involving any of the given dimensions
2661 * in their definitions.
2663 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2664 __isl_take isl_basic_map
*bmap
,
2665 enum isl_dim_type type
, unsigned first
, unsigned n
)
2669 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2670 return isl_basic_map_free(bmap
);
2671 first
+= isl_basic_map_offset(bmap
, type
);
2673 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2676 involves
= div_involves_vars(bmap
, i
, first
, n
);
2678 return isl_basic_map_free(bmap
);
2681 bmap
= insert_bounds_on_div(bmap
, i
);
2682 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2691 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2692 __isl_take isl_basic_set
*bset
,
2693 enum isl_dim_type type
, unsigned first
, unsigned n
)
2695 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2698 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2699 enum isl_dim_type type
, unsigned first
, unsigned n
)
2708 map
= isl_map_cow(map
);
2712 for (i
= 0; i
< map
->n
; ++i
) {
2713 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2724 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2725 enum isl_dim_type type
, unsigned first
, unsigned n
)
2727 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set
),
2731 /* Does the description of "bmap" depend on the specified dimensions?
2732 * We also check whether the dimensions appear in any of the div definitions.
2733 * In principle there is no need for this check. If the dimensions appear
2734 * in a div definition, they also appear in the defining constraints of that
2737 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2738 enum isl_dim_type type
, unsigned first
, unsigned n
)
2742 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2743 return isl_bool_error
;
2745 first
+= isl_basic_map_offset(bmap
, type
);
2746 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2747 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2748 return isl_bool_true
;
2749 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2750 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2751 return isl_bool_true
;
2752 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2753 if (isl_int_is_zero(bmap
->div
[i
][0]))
2755 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2756 return isl_bool_true
;
2759 return isl_bool_false
;
2762 isl_bool
isl_map_involves_dims(__isl_keep isl_map
*map
,
2763 enum isl_dim_type type
, unsigned first
, unsigned n
)
2768 return isl_bool_error
;
2770 if (first
+ n
> isl_map_dim(map
, type
))
2771 isl_die(map
->ctx
, isl_error_invalid
,
2772 "index out of bounds", return isl_bool_error
);
2774 for (i
= 0; i
< map
->n
; ++i
) {
2775 isl_bool involves
= isl_basic_map_involves_dims(map
->p
[i
],
2777 if (involves
< 0 || involves
)
2781 return isl_bool_false
;
2784 isl_bool
isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2785 enum isl_dim_type type
, unsigned first
, unsigned n
)
2787 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2790 isl_bool
isl_set_involves_dims(__isl_keep isl_set
*set
,
2791 enum isl_dim_type type
, unsigned first
, unsigned n
)
2793 return isl_map_involves_dims(set
, type
, first
, n
);
2796 /* Drop all constraints in bmap that involve any of the dimensions
2797 * first to first+n-1.
2799 static __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving(
2800 __isl_take isl_basic_map
*bmap
, unsigned first
, unsigned n
)
2807 bmap
= isl_basic_map_cow(bmap
);
2812 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2813 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
2815 isl_basic_map_drop_equality(bmap
, i
);
2818 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2819 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) == -1)
2821 isl_basic_map_drop_inequality(bmap
, i
);
2824 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2828 /* Drop all constraints in bset that involve any of the dimensions
2829 * first to first+n-1.
2831 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving(
2832 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
2834 return isl_basic_map_drop_constraints_involving(bset
, first
, n
);
2837 /* Drop all constraints in bmap that do not involve any of the dimensions
2838 * first to first + n - 1 of the given type.
2840 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_not_involving_dims(
2841 __isl_take isl_basic_map
*bmap
,
2842 enum isl_dim_type type
, unsigned first
, unsigned n
)
2847 isl_space
*space
= isl_basic_map_get_space(bmap
);
2848 isl_basic_map_free(bmap
);
2849 return isl_basic_map_universe(space
);
2851 bmap
= isl_basic_map_cow(bmap
);
2855 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2856 return isl_basic_map_free(bmap
);
2858 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2860 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2861 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) != -1)
2863 isl_basic_map_drop_equality(bmap
, i
);
2866 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2867 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) != -1)
2869 isl_basic_map_drop_inequality(bmap
, i
);
2872 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2876 /* Drop all constraints in bset that do not involve any of the dimensions
2877 * first to first + n - 1 of the given type.
2879 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_not_involving_dims(
2880 __isl_take isl_basic_set
*bset
,
2881 enum isl_dim_type type
, unsigned first
, unsigned n
)
2883 return isl_basic_map_drop_constraints_not_involving_dims(bset
,
2887 /* Drop all constraints in bmap that involve any of the dimensions
2888 * first to first + n - 1 of the given type.
2890 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving_dims(
2891 __isl_take isl_basic_map
*bmap
,
2892 enum isl_dim_type type
, unsigned first
, unsigned n
)
2899 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2900 return isl_basic_map_free(bmap
);
2902 bmap
= isl_basic_map_remove_divs_involving_dims(bmap
, type
, first
, n
);
2903 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2904 return isl_basic_map_drop_constraints_involving(bmap
, first
, n
);
2907 /* Drop all constraints in bset that involve any of the dimensions
2908 * first to first + n - 1 of the given type.
2910 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving_dims(
2911 __isl_take isl_basic_set
*bset
,
2912 enum isl_dim_type type
, unsigned first
, unsigned n
)
2914 return isl_basic_map_drop_constraints_involving_dims(bset
,
2918 /* Drop constraints from "map" by applying "drop" to each basic map.
2920 static __isl_give isl_map
*drop_constraints(__isl_take isl_map
*map
,
2921 enum isl_dim_type type
, unsigned first
, unsigned n
,
2922 __isl_give isl_basic_map
*(*drop
)(__isl_take isl_basic_map
*bmap
,
2923 enum isl_dim_type type
, unsigned first
, unsigned n
))
2931 dim
= isl_map_dim(map
, type
);
2932 if (first
+ n
> dim
|| first
+ n
< first
)
2933 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
2934 "index out of bounds", return isl_map_free(map
));
2936 map
= isl_map_cow(map
);
2940 for (i
= 0; i
< map
->n
; ++i
) {
2941 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
2943 return isl_map_free(map
);
2947 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
2952 /* Drop all constraints in map that involve any of the dimensions
2953 * first to first + n - 1 of the given type.
2955 __isl_give isl_map
*isl_map_drop_constraints_involving_dims(
2956 __isl_take isl_map
*map
,
2957 enum isl_dim_type type
, unsigned first
, unsigned n
)
2961 return drop_constraints(map
, type
, first
, n
,
2962 &isl_basic_map_drop_constraints_involving_dims
);
2965 /* Drop all constraints in "map" that do not involve any of the dimensions
2966 * first to first + n - 1 of the given type.
2968 __isl_give isl_map
*isl_map_drop_constraints_not_involving_dims(
2969 __isl_take isl_map
*map
,
2970 enum isl_dim_type type
, unsigned first
, unsigned n
)
2973 isl_space
*space
= isl_map_get_space(map
);
2975 return isl_map_universe(space
);
2977 return drop_constraints(map
, type
, first
, n
,
2978 &isl_basic_map_drop_constraints_not_involving_dims
);
2981 /* Drop all constraints in set that involve any of the dimensions
2982 * first to first + n - 1 of the given type.
2984 __isl_give isl_set
*isl_set_drop_constraints_involving_dims(
2985 __isl_take isl_set
*set
,
2986 enum isl_dim_type type
, unsigned first
, unsigned n
)
2988 return isl_map_drop_constraints_involving_dims(set
, type
, first
, n
);
2991 /* Drop all constraints in "set" that do not involve any of the dimensions
2992 * first to first + n - 1 of the given type.
2994 __isl_give isl_set
*isl_set_drop_constraints_not_involving_dims(
2995 __isl_take isl_set
*set
,
2996 enum isl_dim_type type
, unsigned first
, unsigned n
)
2998 return isl_map_drop_constraints_not_involving_dims(set
, type
, first
, n
);
3001 /* Does local variable "div" of "bmap" have a complete explicit representation?
3002 * Having a complete explicit representation requires not only
3003 * an explicit representation, but also that all local variables
3004 * that appear in this explicit representation in turn have
3005 * a complete explicit representation.
3007 isl_bool
isl_basic_map_div_is_known(__isl_keep isl_basic_map
*bmap
, int div
)
3010 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
3013 marked
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
3014 if (marked
< 0 || marked
)
3015 return isl_bool_not(marked
);
3017 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
3020 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
3022 known
= isl_basic_map_div_is_known(bmap
, i
);
3023 if (known
< 0 || !known
)
3027 return isl_bool_true
;
3030 /* Remove all divs that are unknown or defined in terms of unknown divs.
3032 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
3033 __isl_take isl_basic_map
*bmap
)
3040 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
3041 if (isl_basic_map_div_is_known(bmap
, i
))
3043 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
3052 /* Remove all divs that are unknown or defined in terms of unknown divs.
3054 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
3055 __isl_take isl_basic_set
*bset
)
3057 return isl_basic_map_remove_unknown_divs(bset
);
3060 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
3069 map
= isl_map_cow(map
);
3073 for (i
= 0; i
< map
->n
; ++i
) {
3074 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
3084 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
3086 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set
)));
3089 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
3090 __isl_take isl_basic_set
*bset
,
3091 enum isl_dim_type type
, unsigned first
, unsigned n
)
3093 isl_basic_map
*bmap
= bset_to_bmap(bset
);
3094 bmap
= isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3095 return bset_from_bmap(bmap
);
3098 struct isl_map
*isl_map_remove_dims(struct isl_map
*map
,
3099 enum isl_dim_type type
, unsigned first
, unsigned n
)
3106 map
= isl_map_cow(map
);
3109 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
3111 for (i
= 0; i
< map
->n
; ++i
) {
3112 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
3113 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
3117 map
= isl_map_drop(map
, type
, first
, n
);
3124 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
3125 enum isl_dim_type type
, unsigned first
, unsigned n
)
3127 return set_from_map(isl_map_remove_dims(set_to_map(bset
),
3131 /* Project out n inputs starting at first using Fourier-Motzkin */
3132 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
3133 unsigned first
, unsigned n
)
3135 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
3138 static void dump_term(struct isl_basic_map
*bmap
,
3139 isl_int c
, int pos
, FILE *out
)
3142 unsigned in
= isl_basic_map_dim(bmap
, isl_dim_in
);
3143 unsigned dim
= in
+ isl_basic_map_dim(bmap
, isl_dim_out
);
3144 unsigned nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
3146 isl_int_print(out
, c
, 0);
3148 if (!isl_int_is_one(c
))
3149 isl_int_print(out
, c
, 0);
3150 if (pos
< 1 + nparam
) {
3151 name
= isl_space_get_dim_name(bmap
->dim
,
3152 isl_dim_param
, pos
- 1);
3154 fprintf(out
, "%s", name
);
3156 fprintf(out
, "p%d", pos
- 1);
3157 } else if (pos
< 1 + nparam
+ in
)
3158 fprintf(out
, "i%d", pos
- 1 - nparam
);
3159 else if (pos
< 1 + nparam
+ dim
)
3160 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
3162 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
3166 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
3167 int sign
, FILE *out
)
3171 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
3175 for (i
= 0, first
= 1; i
< len
; ++i
) {
3176 if (isl_int_sgn(c
[i
]) * sign
<= 0)
3179 fprintf(out
, " + ");
3181 isl_int_abs(v
, c
[i
]);
3182 dump_term(bmap
, v
, i
, out
);
3189 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
3190 const char *op
, FILE *out
, int indent
)
3194 fprintf(out
, "%*s", indent
, "");
3196 dump_constraint_sign(bmap
, c
, 1, out
);
3197 fprintf(out
, " %s ", op
);
3198 dump_constraint_sign(bmap
, c
, -1, out
);
3202 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
3203 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
3205 fprintf(out
, "%*s", indent
, "");
3206 fprintf(out
, "ERROR: unused div coefficient not zero\n");
3211 static void dump_constraints(struct isl_basic_map
*bmap
,
3212 isl_int
**c
, unsigned n
,
3213 const char *op
, FILE *out
, int indent
)
3217 for (i
= 0; i
< n
; ++i
)
3218 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
3221 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
3225 unsigned total
= isl_basic_map_total_dim(bmap
);
3227 for (j
= 0; j
< 1 + total
; ++j
) {
3228 if (isl_int_is_zero(exp
[j
]))
3230 if (!first
&& isl_int_is_pos(exp
[j
]))
3232 dump_term(bmap
, exp
[j
], j
, out
);
3237 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
3241 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
3242 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
3244 for (i
= 0; i
< bmap
->n_div
; ++i
) {
3245 fprintf(out
, "%*s", indent
, "");
3246 fprintf(out
, "e%d = [(", i
);
3247 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
3249 isl_int_print(out
, bmap
->div
[i
][0], 0);
3250 fprintf(out
, "]\n");
3254 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
3255 FILE *out
, int indent
)
3258 fprintf(out
, "null basic set\n");
3262 fprintf(out
, "%*s", indent
, "");
3263 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3264 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
3265 bset
->extra
, bset
->flags
);
3266 dump(bset_to_bmap(bset
), out
, indent
);
3269 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
3270 FILE *out
, int indent
)
3273 fprintf(out
, "null basic map\n");
3277 fprintf(out
, "%*s", indent
, "");
3278 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3279 "flags: %x, n_name: %d\n",
3281 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
3282 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
3283 dump(bmap
, out
, indent
);
3286 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
3291 total
= isl_basic_map_total_dim(bmap
);
3292 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
3293 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
3294 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
3295 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
3299 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*space
, int n
,
3304 if (isl_space_dim(space
, isl_dim_in
) != 0)
3305 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
3306 "set cannot have input dimensions", goto error
);
3307 return isl_map_alloc_space(space
, n
, flags
);
3309 isl_space_free(space
);
3313 /* Make sure "map" has room for at least "n" more basic maps.
3315 struct isl_map
*isl_map_grow(struct isl_map
*map
, int n
)
3318 struct isl_map
*grown
= NULL
;
3322 isl_assert(map
->ctx
, n
>= 0, goto error
);
3323 if (map
->n
+ n
<= map
->size
)
3325 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
3328 for (i
= 0; i
< map
->n
; ++i
) {
3329 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
3337 isl_map_free(grown
);
3342 /* Make sure "set" has room for at least "n" more basic sets.
3344 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
3346 return set_from_map(isl_map_grow(set_to_map(set
), n
));
3349 struct isl_set
*isl_set_from_basic_set(struct isl_basic_set
*bset
)
3351 return isl_map_from_basic_map(bset
);
3354 struct isl_map
*isl_map_from_basic_map(struct isl_basic_map
*bmap
)
3356 struct isl_map
*map
;
3361 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
3362 return isl_map_add_basic_map(map
, bmap
);
3365 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
3366 __isl_take isl_basic_set
*bset
)
3368 return set_from_map(isl_map_add_basic_map(set_to_map(set
),
3369 bset_to_bmap(bset
)));
3372 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
3374 return isl_map_free(set
);
3377 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
3382 fprintf(out
, "null set\n");
3386 fprintf(out
, "%*s", indent
, "");
3387 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3388 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
3390 for (i
= 0; i
< set
->n
; ++i
) {
3391 fprintf(out
, "%*s", indent
, "");
3392 fprintf(out
, "basic set %d:\n", i
);
3393 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
3397 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
3402 fprintf(out
, "null map\n");
3406 fprintf(out
, "%*s", indent
, "");
3407 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3408 "flags: %x, n_name: %d\n",
3409 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
3410 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
3411 for (i
= 0; i
< map
->n
; ++i
) {
3412 fprintf(out
, "%*s", indent
, "");
3413 fprintf(out
, "basic map %d:\n", i
);
3414 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
3418 struct isl_basic_map
*isl_basic_map_intersect_domain(
3419 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3421 struct isl_basic_map
*bmap_domain
;
3423 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3426 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
3427 isl_assert(bset
->ctx
,
3428 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
3430 bmap
= isl_basic_map_cow(bmap
);
3433 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3434 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3435 bmap_domain
= isl_basic_map_from_domain(bset
);
3436 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
3438 bmap
= isl_basic_map_simplify(bmap
);
3439 return isl_basic_map_finalize(bmap
);
3441 isl_basic_map_free(bmap
);
3442 isl_basic_set_free(bset
);
3446 /* Check that the space of "bset" is the same as that of the range of "bmap".
3448 static isl_stat
isl_basic_map_check_compatible_range(
3449 __isl_keep isl_basic_map
*bmap
, __isl_keep isl_basic_set
*bset
)
3453 ok
= isl_basic_map_compatible_range(bmap
, bset
);
3455 return isl_stat_error
;
3457 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3458 "incompatible spaces", return isl_stat_error
);
3463 struct isl_basic_map
*isl_basic_map_intersect_range(
3464 struct isl_basic_map
*bmap
, struct isl_basic_set
*bset
)
3466 struct isl_basic_map
*bmap_range
;
3468 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3471 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0 &&
3472 isl_basic_map_check_compatible_range(bmap
, bset
) < 0)
3475 if (isl_basic_set_plain_is_universe(bset
)) {
3476 isl_basic_set_free(bset
);
3480 bmap
= isl_basic_map_cow(bmap
);
3483 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3484 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3485 bmap_range
= bset_to_bmap(bset
);
3486 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
3488 bmap
= isl_basic_map_simplify(bmap
);
3489 return isl_basic_map_finalize(bmap
);
3491 isl_basic_map_free(bmap
);
3492 isl_basic_set_free(bset
);
3496 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
3497 __isl_keep isl_vec
*vec
)
3504 return isl_bool_error
;
3506 total
= 1 + isl_basic_map_total_dim(bmap
);
3507 if (total
!= vec
->size
)
3508 return isl_bool_false
;
3512 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
3513 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
3514 if (!isl_int_is_zero(s
)) {
3516 return isl_bool_false
;
3520 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
3521 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
3522 if (isl_int_is_neg(s
)) {
3524 return isl_bool_false
;
3530 return isl_bool_true
;
3533 isl_bool
isl_basic_set_contains(__isl_keep isl_basic_set
*bset
,
3534 __isl_keep isl_vec
*vec
)
3536 return isl_basic_map_contains(bset_to_bmap(bset
), vec
);
3539 struct isl_basic_map
*isl_basic_map_intersect(
3540 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
3542 struct isl_vec
*sample
= NULL
;
3544 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
3546 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
3547 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
3548 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3549 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3550 return isl_basic_map_intersect(bmap2
, bmap1
);
3552 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3553 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3554 isl_assert(bmap1
->ctx
,
3555 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
3557 if (isl_basic_map_plain_is_empty(bmap1
)) {
3558 isl_basic_map_free(bmap2
);
3561 if (isl_basic_map_plain_is_empty(bmap2
)) {
3562 isl_basic_map_free(bmap1
);
3566 if (bmap1
->sample
&&
3567 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
3568 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
3569 sample
= isl_vec_copy(bmap1
->sample
);
3570 else if (bmap2
->sample
&&
3571 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
3572 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
3573 sample
= isl_vec_copy(bmap2
->sample
);
3575 bmap1
= isl_basic_map_cow(bmap1
);
3578 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
3579 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
3580 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
3583 isl_vec_free(sample
);
3585 isl_vec_free(bmap1
->sample
);
3586 bmap1
->sample
= sample
;
3589 bmap1
= isl_basic_map_simplify(bmap1
);
3590 return isl_basic_map_finalize(bmap1
);
3593 isl_vec_free(sample
);
3594 isl_basic_map_free(bmap1
);
3595 isl_basic_map_free(bmap2
);
3599 struct isl_basic_set
*isl_basic_set_intersect(
3600 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
3602 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1
),
3603 bset_to_bmap(bset2
)));
3606 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
3607 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
3609 return isl_basic_set_intersect(bset1
, bset2
);
3612 /* Special case of isl_map_intersect, where both map1 and map2
3613 * are convex, without any divs and such that either map1 or map2
3614 * contains a single constraint. This constraint is then simply
3615 * added to the other map.
3617 static __isl_give isl_map
*map_intersect_add_constraint(
3618 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
3620 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
3621 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
3622 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3623 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3625 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
3626 return isl_map_intersect(map2
, map1
);
3628 map1
= isl_map_cow(map1
);
3631 if (isl_map_plain_is_empty(map1
)) {
3635 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
3636 if (map2
->p
[0]->n_eq
== 1)
3637 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
3639 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
3640 map2
->p
[0]->ineq
[0]);
3642 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
3643 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
3647 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
3648 isl_basic_map_free(map1
->p
[0]);
3661 /* map2 may be either a parameter domain or a map living in the same
3664 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
3665 __isl_take isl_map
*map2
)
3674 if ((isl_map_plain_is_empty(map1
) ||
3675 isl_map_plain_is_universe(map2
)) &&
3676 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3680 if ((isl_map_plain_is_empty(map2
) ||
3681 isl_map_plain_is_universe(map1
)) &&
3682 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3687 if (map1
->n
== 1 && map2
->n
== 1 &&
3688 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
3689 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
3690 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
3691 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
3692 return map_intersect_add_constraint(map1
, map2
);
3694 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
3695 isl_space_dim(map2
->dim
, isl_dim_param
))
3696 isl_assert(map1
->ctx
,
3697 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3699 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
3700 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3701 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3703 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3704 map1
->n
* map2
->n
, flags
);
3707 for (i
= 0; i
< map1
->n
; ++i
)
3708 for (j
= 0; j
< map2
->n
; ++j
) {
3709 struct isl_basic_map
*part
;
3710 part
= isl_basic_map_intersect(
3711 isl_basic_map_copy(map1
->p
[i
]),
3712 isl_basic_map_copy(map2
->p
[j
]));
3713 if (isl_basic_map_is_empty(part
) < 0)
3714 part
= isl_basic_map_free(part
);
3715 result
= isl_map_add_basic_map(result
, part
);
3728 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3729 __isl_take isl_map
*map2
)
3733 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3734 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3735 "spaces don't match", goto error
);
3736 return map_intersect_internal(map1
, map2
);
3743 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3744 __isl_take isl_map
*map2
)
3746 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3749 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3751 return set_from_map(isl_map_intersect(set_to_map(set1
),
3755 /* map_intersect_internal accepts intersections
3756 * with parameter domains, so we can just call that function.
3758 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3759 __isl_take isl_set
*params
)
3761 return map_intersect_internal(map
, params
);
3764 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3765 __isl_take isl_map
*map2
)
3767 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3770 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3771 __isl_take isl_set
*params
)
3773 return isl_map_intersect_params(set
, params
);
3776 struct isl_basic_map
*isl_basic_map_reverse(struct isl_basic_map
*bmap
)
3779 unsigned pos
, n1
, n2
;
3783 bmap
= isl_basic_map_cow(bmap
);
3786 space
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3787 pos
= isl_basic_map_offset(bmap
, isl_dim_in
);
3788 n1
= isl_basic_map_dim(bmap
, isl_dim_in
);
3789 n2
= isl_basic_map_dim(bmap
, isl_dim_out
);
3790 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
3791 return isl_basic_map_reset_space(bmap
, space
);
3794 static __isl_give isl_basic_map
*basic_map_space_reset(
3795 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3801 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3804 space
= isl_basic_map_get_space(bmap
);
3805 space
= isl_space_reset(space
, type
);
3806 bmap
= isl_basic_map_reset_space(bmap
, space
);
3810 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3811 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3812 unsigned pos
, unsigned n
)
3816 struct isl_basic_map
*res
;
3817 struct isl_dim_map
*dim_map
;
3818 unsigned total
, off
;
3819 enum isl_dim_type t
;
3822 return basic_map_space_reset(bmap
, type
);
3827 res_dim
= isl_space_insert_dims(isl_basic_map_get_space(bmap
), type
, pos
, n
);
3829 total
= isl_basic_map_total_dim(bmap
) + n
;
3830 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3832 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3834 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3836 unsigned size
= isl_basic_map_dim(bmap
, t
);
3837 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3839 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3840 pos
, size
- pos
, off
+ pos
+ n
);
3842 off
+= isl_space_dim(res_dim
, t
);
3844 isl_dim_map_div(dim_map
, bmap
, off
);
3846 res
= isl_basic_map_alloc_space(res_dim
,
3847 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3848 rational
= isl_basic_map_is_rational(bmap
);
3850 res
= isl_basic_map_free(res
);
3852 res
= isl_basic_map_set_rational(res
);
3853 if (isl_basic_map_plain_is_empty(bmap
)) {
3854 isl_basic_map_free(bmap
);
3856 return isl_basic_map_set_to_empty(res
);
3858 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3859 return isl_basic_map_finalize(res
);
3862 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3863 __isl_take isl_basic_set
*bset
,
3864 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3866 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3869 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3870 enum isl_dim_type type
, unsigned n
)
3874 return isl_basic_map_insert_dims(bmap
, type
,
3875 isl_basic_map_dim(bmap
, type
), n
);
3878 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3879 enum isl_dim_type type
, unsigned n
)
3883 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3884 return isl_basic_map_add_dims(bset
, type
, n
);
3886 isl_basic_set_free(bset
);
3890 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3891 enum isl_dim_type type
)
3895 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3898 space
= isl_map_get_space(map
);
3899 space
= isl_space_reset(space
, type
);
3900 map
= isl_map_reset_space(map
, space
);
3904 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3905 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3910 return map_space_reset(map
, type
);
3912 map
= isl_map_cow(map
);
3916 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3920 for (i
= 0; i
< map
->n
; ++i
) {
3921 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
3932 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
3933 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3935 return isl_map_insert_dims(set
, type
, pos
, n
);
3938 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
3939 enum isl_dim_type type
, unsigned n
)
3943 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
3946 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
3947 enum isl_dim_type type
, unsigned n
)
3951 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
3952 return set_from_map(isl_map_add_dims(set_to_map(set
), type
, n
));
3958 __isl_give isl_basic_map
*isl_basic_map_move_dims(
3959 __isl_take isl_basic_map
*bmap
,
3960 enum isl_dim_type dst_type
, unsigned dst_pos
,
3961 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
3963 struct isl_dim_map
*dim_map
;
3964 struct isl_basic_map
*res
;
3965 enum isl_dim_type t
;
3966 unsigned total
, off
;
3971 bmap
= isl_basic_map_reset(bmap
, src_type
);
3972 bmap
= isl_basic_map_reset(bmap
, dst_type
);
3976 if (isl_basic_map_check_range(bmap
, src_type
, src_pos
, n
) < 0)
3977 return isl_basic_map_free(bmap
);
3979 if (dst_type
== src_type
&& dst_pos
== src_pos
)
3982 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
3984 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
3985 pos(bmap
->dim
, src_type
) + src_pos
+
3986 ((src_type
< dst_type
) ? n
: 0)) {
3987 bmap
= isl_basic_map_cow(bmap
);
3991 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
3992 src_type
, src_pos
, n
);
3996 bmap
= isl_basic_map_finalize(bmap
);
4001 total
= isl_basic_map_total_dim(bmap
);
4002 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4005 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
4006 unsigned size
= isl_space_dim(bmap
->dim
, t
);
4007 if (t
== dst_type
) {
4008 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4011 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
4014 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4015 dst_pos
, size
- dst_pos
, off
);
4016 off
+= size
- dst_pos
;
4017 } else if (t
== src_type
) {
4018 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4021 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4022 src_pos
+ n
, size
- src_pos
- n
, off
);
4023 off
+= size
- src_pos
- n
;
4025 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
4029 isl_dim_map_div(dim_map
, bmap
, off
);
4031 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
4032 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
4033 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
4037 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
4038 src_type
, src_pos
, n
);
4042 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
4043 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4044 bmap
= isl_basic_map_finalize(bmap
);
4048 isl_basic_map_free(bmap
);
4052 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
4053 enum isl_dim_type dst_type
, unsigned dst_pos
,
4054 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4056 isl_basic_map
*bmap
= bset_to_bmap(bset
);
4057 bmap
= isl_basic_map_move_dims(bmap
, dst_type
, dst_pos
,
4058 src_type
, src_pos
, n
);
4059 return bset_from_bmap(bmap
);
4062 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
4063 enum isl_dim_type dst_type
, unsigned dst_pos
,
4064 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4068 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
4069 return set_from_map(isl_map_move_dims(set_to_map(set
),
4070 dst_type
, dst_pos
, src_type
, src_pos
, n
));
4076 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
4077 enum isl_dim_type dst_type
, unsigned dst_pos
,
4078 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4085 map
= isl_map_reset(map
, src_type
);
4086 map
= isl_map_reset(map
, dst_type
);
4090 isl_assert(map
->ctx
, src_pos
+ n
<= isl_map_dim(map
, src_type
),
4093 if (dst_type
== src_type
&& dst_pos
== src_pos
)
4096 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
4098 map
= isl_map_cow(map
);
4102 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
4106 for (i
= 0; i
< map
->n
; ++i
) {
4107 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
4109 src_type
, src_pos
, n
);
4120 /* Move the specified dimensions to the last columns right before
4121 * the divs. Don't change the dimension specification of bmap.
4122 * That's the responsibility of the caller.
4124 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
4125 enum isl_dim_type type
, unsigned first
, unsigned n
)
4127 struct isl_dim_map
*dim_map
;
4128 struct isl_basic_map
*res
;
4129 enum isl_dim_type t
;
4130 unsigned total
, off
;
4134 if (pos(bmap
->dim
, type
) + first
+ n
==
4135 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
4138 total
= isl_basic_map_total_dim(bmap
);
4139 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4142 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
4143 unsigned size
= isl_space_dim(bmap
->dim
, t
);
4145 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4148 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4149 first
, n
, total
- bmap
->n_div
- n
);
4150 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4151 first
+ n
, size
- (first
+ n
), off
);
4152 off
+= size
- (first
+ n
);
4154 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
4158 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
4160 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
4161 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
4162 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
4166 /* Insert "n" rows in the divs of "bmap".
4168 * The number of columns is not changed, which means that the last
4169 * dimensions of "bmap" are being reintepreted as the new divs.
4170 * The space of "bmap" is not adjusted, however, which means
4171 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4172 * from the space of "bmap" is the responsibility of the caller.
4174 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
4182 bmap
= isl_basic_map_cow(bmap
);
4186 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
4187 old
= bmap
->block2
.data
;
4188 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
4189 (bmap
->extra
+ n
) * (1 + row_size
));
4190 if (!bmap
->block2
.data
)
4191 return isl_basic_map_free(bmap
);
4192 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
4194 return isl_basic_map_free(bmap
);
4195 for (i
= 0; i
< n
; ++i
) {
4196 new_div
[i
] = bmap
->block2
.data
+
4197 (bmap
->extra
+ i
) * (1 + row_size
);
4198 isl_seq_clr(new_div
[i
], 1 + row_size
);
4200 for (i
= 0; i
< bmap
->extra
; ++i
)
4201 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
4203 bmap
->div
= new_div
;
4210 /* Drop constraints from "bmap" that only involve the variables
4211 * of "type" in the range [first, first + n] that are not related
4212 * to any of the variables outside that interval.
4213 * These constraints cannot influence the values for the variables
4214 * outside the interval, except in case they cause "bmap" to be empty.
4215 * Only drop the constraints if "bmap" is known to be non-empty.
4217 static __isl_give isl_basic_map
*drop_irrelevant_constraints(
4218 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
4219 unsigned first
, unsigned n
)
4223 unsigned dim
, n_div
;
4226 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
4228 return isl_basic_map_free(bmap
);
4232 dim
= isl_basic_map_dim(bmap
, isl_dim_all
);
4233 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4234 groups
= isl_calloc_array(isl_basic_map_get_ctx(bmap
), int, dim
);
4236 return isl_basic_map_free(bmap
);
4237 first
+= isl_basic_map_offset(bmap
, type
) - 1;
4238 for (i
= 0; i
< first
; ++i
)
4240 for (i
= first
+ n
; i
< dim
- n_div
; ++i
)
4243 bmap
= isl_basic_map_drop_unrelated_constraints(bmap
, groups
);
4248 /* Turn the n dimensions of type type, starting at first
4249 * into existentially quantified variables.
4251 * If a subset of the projected out variables are unrelated
4252 * to any of the variables that remain, then the constraints
4253 * involving this subset are simply dropped first.
4255 __isl_give isl_basic_map
*isl_basic_map_project_out(
4256 __isl_take isl_basic_map
*bmap
,
4257 enum isl_dim_type type
, unsigned first
, unsigned n
)
4262 return basic_map_space_reset(bmap
, type
);
4263 if (type
== isl_dim_div
)
4264 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
4265 "cannot project out existentially quantified variables",
4266 return isl_basic_map_free(bmap
));
4268 empty
= isl_basic_map_plain_is_empty(bmap
);
4270 return isl_basic_map_free(bmap
);
4272 bmap
= isl_basic_map_set_to_empty(bmap
);
4274 bmap
= drop_irrelevant_constraints(bmap
, type
, first
, n
);
4278 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
4279 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
4281 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
4282 return isl_basic_map_free(bmap
);
4284 bmap
= move_last(bmap
, type
, first
, n
);
4285 bmap
= isl_basic_map_cow(bmap
);
4286 bmap
= insert_div_rows(bmap
, n
);
4290 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
4293 bmap
= isl_basic_map_simplify(bmap
);
4294 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4295 return isl_basic_map_finalize(bmap
);
4297 isl_basic_map_free(bmap
);
4301 /* Turn the n dimensions of type type, starting at first
4302 * into existentially quantified variables.
4304 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
4305 enum isl_dim_type type
, unsigned first
, unsigned n
)
4307 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset
),
4311 /* Turn the n dimensions of type type, starting at first
4312 * into existentially quantified variables.
4314 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
4315 enum isl_dim_type type
, unsigned first
, unsigned n
)
4323 return map_space_reset(map
, type
);
4325 isl_assert(map
->ctx
, first
+ n
<= isl_map_dim(map
, type
), goto error
);
4327 map
= isl_map_cow(map
);
4331 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
4335 for (i
= 0; i
< map
->n
; ++i
) {
4336 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
4347 /* Turn the n dimensions of type type, starting at first
4348 * into existentially quantified variables.
4350 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
4351 enum isl_dim_type type
, unsigned first
, unsigned n
)
4353 return set_from_map(isl_map_project_out(set_to_map(set
),
4357 /* Return a map that projects the elements in "set" onto their
4358 * "n" set dimensions starting at "first".
4359 * "type" should be equal to isl_dim_set.
4361 __isl_give isl_map
*isl_set_project_onto_map(__isl_take isl_set
*set
,
4362 enum isl_dim_type type
, unsigned first
, unsigned n
)
4370 if (type
!= isl_dim_set
)
4371 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4372 "only set dimensions can be projected out", goto error
);
4373 dim
= isl_set_dim(set
, isl_dim_set
);
4374 if (first
+ n
> dim
|| first
+ n
< first
)
4375 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4376 "index out of bounds", goto error
);
4378 map
= isl_map_from_domain(set
);
4379 map
= isl_map_add_dims(map
, isl_dim_out
, n
);
4380 for (i
= 0; i
< n
; ++i
)
4381 map
= isl_map_equate(map
, isl_dim_in
, first
+ i
,
4389 static struct isl_basic_map
*add_divs(struct isl_basic_map
*bmap
, unsigned n
)
4393 for (i
= 0; i
< n
; ++i
) {
4394 j
= isl_basic_map_alloc_div(bmap
);
4397 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
4401 isl_basic_map_free(bmap
);
4405 struct isl_basic_map
*isl_basic_map_apply_range(
4406 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4408 isl_space
*dim_result
= NULL
;
4409 struct isl_basic_map
*bmap
;
4410 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
4411 struct isl_dim_map
*dim_map1
, *dim_map2
;
4413 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
4415 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
4416 bmap2
->dim
, isl_dim_in
))
4417 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4418 "spaces don't match", goto error
);
4420 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
4421 isl_space_copy(bmap2
->dim
));
4423 n_in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
4424 n_out
= isl_basic_map_dim(bmap2
, isl_dim_out
);
4425 n
= isl_basic_map_dim(bmap1
, isl_dim_out
);
4426 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
4428 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
4429 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4430 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4431 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4432 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
4433 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4434 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
4435 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
4436 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4437 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4438 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4440 bmap
= isl_basic_map_alloc_space(dim_result
,
4441 bmap1
->n_div
+ bmap2
->n_div
+ n
,
4442 bmap1
->n_eq
+ bmap2
->n_eq
,
4443 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4444 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4445 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4446 bmap
= add_divs(bmap
, n
);
4447 bmap
= isl_basic_map_simplify(bmap
);
4448 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4449 return isl_basic_map_finalize(bmap
);
4451 isl_basic_map_free(bmap1
);
4452 isl_basic_map_free(bmap2
);
4456 struct isl_basic_set
*isl_basic_set_apply(
4457 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
4462 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
4465 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset
),
4468 isl_basic_set_free(bset
);
4469 isl_basic_map_free(bmap
);
4473 struct isl_basic_map
*isl_basic_map_apply_domain(
4474 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4476 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
4478 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_in
,
4479 bmap2
->dim
, isl_dim_in
))
4480 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4481 "spaces don't match", goto error
);
4483 bmap1
= isl_basic_map_reverse(bmap1
);
4484 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
4485 return isl_basic_map_reverse(bmap1
);
4487 isl_basic_map_free(bmap1
);
4488 isl_basic_map_free(bmap2
);
4492 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4493 * A \cap B -> f(A) + f(B)
4495 struct isl_basic_map
*isl_basic_map_sum(
4496 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4498 unsigned n_in
, n_out
, nparam
, total
, pos
;
4499 struct isl_basic_map
*bmap
= NULL
;
4500 struct isl_dim_map
*dim_map1
, *dim_map2
;
4503 if (!bmap1
|| !bmap2
)
4506 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
4509 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
4510 n_in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
4511 n_out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
4513 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
4514 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4515 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
4516 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4517 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
4518 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4519 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4520 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
4521 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4522 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4523 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
4525 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
4526 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
4527 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
4528 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4529 for (i
= 0; i
< n_out
; ++i
) {
4530 int j
= isl_basic_map_alloc_equality(bmap
);
4533 isl_seq_clr(bmap
->eq
[j
], 1+total
);
4534 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
4535 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
4536 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
4538 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4539 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4540 bmap
= add_divs(bmap
, 2 * n_out
);
4542 bmap
= isl_basic_map_simplify(bmap
);
4543 return isl_basic_map_finalize(bmap
);
4545 isl_basic_map_free(bmap
);
4546 isl_basic_map_free(bmap1
);
4547 isl_basic_map_free(bmap2
);
4551 /* Given two maps A -> f(A) and B -> g(B), construct a map
4552 * A \cap B -> f(A) + f(B)
4554 struct isl_map
*isl_map_sum(struct isl_map
*map1
, struct isl_map
*map2
)
4556 struct isl_map
*result
;
4562 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
4564 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
4565 map1
->n
* map2
->n
, 0);
4568 for (i
= 0; i
< map1
->n
; ++i
)
4569 for (j
= 0; j
< map2
->n
; ++j
) {
4570 struct isl_basic_map
*part
;
4571 part
= isl_basic_map_sum(
4572 isl_basic_map_copy(map1
->p
[i
]),
4573 isl_basic_map_copy(map2
->p
[j
]));
4574 if (isl_basic_map_is_empty(part
))
4575 isl_basic_map_free(part
);
4577 result
= isl_map_add_basic_map(result
, part
);
4590 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
4591 __isl_take isl_set
*set2
)
4593 return set_from_map(isl_map_sum(set_to_map(set1
), set_to_map(set2
)));
4596 /* Given a basic map A -> f(A), construct A -> -f(A).
4598 struct isl_basic_map
*isl_basic_map_neg(struct isl_basic_map
*bmap
)
4603 bmap
= isl_basic_map_cow(bmap
);
4607 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
4608 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
4609 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4610 for (j
= 0; j
< n
; ++j
)
4611 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
4612 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
4613 for (j
= 0; j
< n
; ++j
)
4614 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
4615 for (i
= 0; i
< bmap
->n_div
; ++i
)
4616 for (j
= 0; j
< n
; ++j
)
4617 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
4618 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4619 return isl_basic_map_finalize(bmap
);
4622 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
4624 return isl_basic_map_neg(bset
);
4627 /* Given a map A -> f(A), construct A -> -f(A).
4629 struct isl_map
*isl_map_neg(struct isl_map
*map
)
4633 map
= isl_map_cow(map
);
4637 for (i
= 0; i
< map
->n
; ++i
) {
4638 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
4649 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
4651 return set_from_map(isl_map_neg(set_to_map(set
)));
4654 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4655 * A -> floor(f(A)/d).
4657 struct isl_basic_map
*isl_basic_map_floordiv(struct isl_basic_map
*bmap
,
4660 unsigned n_in
, n_out
, nparam
, total
, pos
;
4661 struct isl_basic_map
*result
= NULL
;
4662 struct isl_dim_map
*dim_map
;
4668 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4669 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4670 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4672 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
4673 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4674 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
4675 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
4676 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
4677 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
4679 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
4680 bmap
->n_div
+ n_out
,
4681 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
4682 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
4683 result
= add_divs(result
, n_out
);
4684 for (i
= 0; i
< n_out
; ++i
) {
4686 j
= isl_basic_map_alloc_inequality(result
);
4689 isl_seq_clr(result
->ineq
[j
], 1+total
);
4690 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4691 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
4692 j
= isl_basic_map_alloc_inequality(result
);
4695 isl_seq_clr(result
->ineq
[j
], 1+total
);
4696 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4697 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
4698 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
4701 result
= isl_basic_map_simplify(result
);
4702 return isl_basic_map_finalize(result
);
4704 isl_basic_map_free(result
);
4708 /* Given a map A -> f(A) and an integer d, construct a map
4709 * A -> floor(f(A)/d).
4711 struct isl_map
*isl_map_floordiv(struct isl_map
*map
, isl_int d
)
4715 map
= isl_map_cow(map
);
4719 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
4720 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
4721 for (i
= 0; i
< map
->n
; ++i
) {
4722 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
4733 /* Given a map A -> f(A) and an integer d, construct a map
4734 * A -> floor(f(A)/d).
4736 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
4737 __isl_take isl_val
*d
)
4741 if (!isl_val_is_int(d
))
4742 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
4743 "expecting integer denominator", goto error
);
4744 map
= isl_map_floordiv(map
, d
->n
);
4753 static __isl_give isl_basic_map
*var_equal(__isl_take isl_basic_map
*bmap
,
4760 i
= isl_basic_map_alloc_equality(bmap
);
4763 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4764 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4765 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4766 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
4767 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
4768 return isl_basic_map_finalize(bmap
);
4770 isl_basic_map_free(bmap
);
4774 /* Add a constraint to "bmap" expressing i_pos < o_pos
4776 static __isl_give isl_basic_map
*var_less(__isl_take isl_basic_map
*bmap
,
4783 i
= isl_basic_map_alloc_inequality(bmap
);
4786 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4787 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4788 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4789 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4790 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4791 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4792 return isl_basic_map_finalize(bmap
);
4794 isl_basic_map_free(bmap
);
4798 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4800 static __isl_give isl_basic_map
*var_less_or_equal(
4801 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4807 i
= isl_basic_map_alloc_inequality(bmap
);
4810 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4811 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4812 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4813 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4814 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4815 return isl_basic_map_finalize(bmap
);
4817 isl_basic_map_free(bmap
);
4821 /* Add a constraint to "bmap" expressing i_pos > o_pos
4823 static __isl_give isl_basic_map
*var_more(__isl_take isl_basic_map
*bmap
,
4830 i
= isl_basic_map_alloc_inequality(bmap
);
4833 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4834 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4835 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4836 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4837 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4838 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4839 return isl_basic_map_finalize(bmap
);
4841 isl_basic_map_free(bmap
);
4845 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4847 static __isl_give isl_basic_map
*var_more_or_equal(
4848 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4854 i
= isl_basic_map_alloc_inequality(bmap
);
4857 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4858 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4859 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4860 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4861 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4862 return isl_basic_map_finalize(bmap
);
4864 isl_basic_map_free(bmap
);
4868 __isl_give isl_basic_map
*isl_basic_map_equal(
4869 __isl_take isl_space
*dim
, unsigned n_equal
)
4872 struct isl_basic_map
*bmap
;
4873 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4876 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4877 bmap
= var_equal(bmap
, i
);
4878 return isl_basic_map_finalize(bmap
);
4881 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4883 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4887 struct isl_basic_map
*bmap
;
4888 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4891 for (i
= 0; i
< pos
&& bmap
; ++i
)
4892 bmap
= var_equal(bmap
, i
);
4894 bmap
= var_less(bmap
, pos
);
4895 return isl_basic_map_finalize(bmap
);
4898 /* Return a relation on "dim" expressing i_[0..pos] <<= o_[0..pos]
4900 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4901 __isl_take isl_space
*dim
, unsigned pos
)
4904 isl_basic_map
*bmap
;
4906 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4907 for (i
= 0; i
< pos
; ++i
)
4908 bmap
= var_equal(bmap
, i
);
4909 bmap
= var_less_or_equal(bmap
, pos
);
4910 return isl_basic_map_finalize(bmap
);
4913 /* Return a relation on "dim" expressing i_pos > o_pos
4915 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*dim
,
4919 struct isl_basic_map
*bmap
;
4920 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4923 for (i
= 0; i
< pos
&& bmap
; ++i
)
4924 bmap
= var_equal(bmap
, i
);
4926 bmap
= var_more(bmap
, pos
);
4927 return isl_basic_map_finalize(bmap
);
4930 /* Return a relation on "dim" expressing i_[0..pos] >>= o_[0..pos]
4932 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
4933 __isl_take isl_space
*dim
, unsigned pos
)
4936 isl_basic_map
*bmap
;
4938 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4939 for (i
= 0; i
< pos
; ++i
)
4940 bmap
= var_equal(bmap
, i
);
4941 bmap
= var_more_or_equal(bmap
, pos
);
4942 return isl_basic_map_finalize(bmap
);
4945 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*dims
,
4946 unsigned n
, int equal
)
4948 struct isl_map
*map
;
4951 if (n
== 0 && equal
)
4952 return isl_map_universe(dims
);
4954 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
4956 for (i
= 0; i
+ 1 < n
; ++i
)
4957 map
= isl_map_add_basic_map(map
,
4958 isl_basic_map_less_at(isl_space_copy(dims
), i
));
4961 map
= isl_map_add_basic_map(map
,
4962 isl_basic_map_less_or_equal_at(dims
, n
- 1));
4964 map
= isl_map_add_basic_map(map
,
4965 isl_basic_map_less_at(dims
, n
- 1));
4967 isl_space_free(dims
);
4972 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*dims
, int equal
)
4976 return map_lex_lte_first(dims
, dims
->n_out
, equal
);
4979 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
4981 return map_lex_lte_first(dim
, n
, 0);
4984 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
4986 return map_lex_lte_first(dim
, n
, 1);
4989 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
4991 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
4994 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
4996 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
4999 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*dims
,
5000 unsigned n
, int equal
)
5002 struct isl_map
*map
;
5005 if (n
== 0 && equal
)
5006 return isl_map_universe(dims
);
5008 map
= isl_map_alloc_space(isl_space_copy(dims
), n
, ISL_MAP_DISJOINT
);
5010 for (i
= 0; i
+ 1 < n
; ++i
)
5011 map
= isl_map_add_basic_map(map
,
5012 isl_basic_map_more_at(isl_space_copy(dims
), i
));
5015 map
= isl_map_add_basic_map(map
,
5016 isl_basic_map_more_or_equal_at(dims
, n
- 1));
5018 map
= isl_map_add_basic_map(map
,
5019 isl_basic_map_more_at(dims
, n
- 1));
5021 isl_space_free(dims
);
5026 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*dims
, int equal
)
5030 return map_lex_gte_first(dims
, dims
->n_out
, equal
);
5033 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
5035 return map_lex_gte_first(dim
, n
, 0);
5038 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
5040 return map_lex_gte_first(dim
, n
, 1);
5043 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
5045 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
5048 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
5050 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
5053 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
5054 __isl_take isl_set
*set2
)
5057 map
= isl_map_lex_le(isl_set_get_space(set1
));
5058 map
= isl_map_intersect_domain(map
, set1
);
5059 map
= isl_map_intersect_range(map
, set2
);
5063 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
5064 __isl_take isl_set
*set2
)
5067 map
= isl_map_lex_lt(isl_set_get_space(set1
));
5068 map
= isl_map_intersect_domain(map
, set1
);
5069 map
= isl_map_intersect_range(map
, set2
);
5073 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
5074 __isl_take isl_set
*set2
)
5077 map
= isl_map_lex_ge(isl_set_get_space(set1
));
5078 map
= isl_map_intersect_domain(map
, set1
);
5079 map
= isl_map_intersect_range(map
, set2
);
5083 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
5084 __isl_take isl_set
*set2
)
5087 map
= isl_map_lex_gt(isl_set_get_space(set1
));
5088 map
= isl_map_intersect_domain(map
, set1
);
5089 map
= isl_map_intersect_range(map
, set2
);
5093 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
5094 __isl_take isl_map
*map2
)
5097 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
5098 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5099 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5103 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
5104 __isl_take isl_map
*map2
)
5107 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
5108 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5109 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5113 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
5114 __isl_take isl_map
*map2
)
5117 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
5118 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5119 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5123 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
5124 __isl_take isl_map
*map2
)
5127 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
5128 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5129 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5133 /* For a div d = floor(f/m), add the constraint
5137 static isl_stat
add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
5138 unsigned pos
, isl_int
*div
)
5141 unsigned total
= isl_basic_map_total_dim(bmap
);
5143 i
= isl_basic_map_alloc_inequality(bmap
);
5145 return isl_stat_error
;
5146 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
5147 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
5152 /* For a div d = floor(f/m), add the constraint
5154 * -(f-(m-1)) + m d >= 0
5156 static isl_stat
add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
5157 unsigned pos
, isl_int
*div
)
5160 unsigned total
= isl_basic_map_total_dim(bmap
);
5162 i
= isl_basic_map_alloc_inequality(bmap
);
5164 return isl_stat_error
;
5165 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
5166 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
5167 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
5168 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
5173 /* For a div d = floor(f/m), add the constraints
5176 * -(f-(m-1)) + m d >= 0
5178 * Note that the second constraint is the negation of
5182 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
5183 unsigned pos
, isl_int
*div
)
5185 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
5187 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
5192 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
5193 unsigned pos
, isl_int
*div
)
5195 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset
),
5199 int isl_basic_map_add_div_constraints(struct isl_basic_map
*bmap
, unsigned div
)
5201 unsigned total
= isl_basic_map_total_dim(bmap
);
5202 unsigned div_pos
= total
- bmap
->n_div
+ div
;
5204 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
5208 /* For each known div d = floor(f/m), add the constraints
5211 * -(f-(m-1)) + m d >= 0
5213 * Remove duplicate constraints in case of some these div constraints
5214 * already appear in "bmap".
5216 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
5217 __isl_take isl_basic_map
*bmap
)
5223 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
5227 bmap
= add_known_div_constraints(bmap
);
5228 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
5229 bmap
= isl_basic_map_finalize(bmap
);
5233 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5235 * In particular, if this div is of the form d = floor(f/m),
5236 * then add the constraint
5240 * if sign < 0 or the constraint
5242 * -(f-(m-1)) + m d >= 0
5246 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
5247 unsigned div
, int sign
)
5255 total
= isl_basic_map_total_dim(bmap
);
5256 div_pos
= total
- bmap
->n_div
+ div
;
5259 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
5261 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
5264 struct isl_basic_set
*isl_basic_map_underlying_set(
5265 struct isl_basic_map
*bmap
)
5269 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
5271 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
5272 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
5273 return bset_from_bmap(bmap
);
5274 bmap
= isl_basic_map_cow(bmap
);
5277 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
5280 bmap
->extra
-= bmap
->n_div
;
5282 bmap
= isl_basic_map_finalize(bmap
);
5283 return bset_from_bmap(bmap
);
5285 isl_basic_map_free(bmap
);
5289 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
5290 __isl_take isl_basic_set
*bset
)
5292 return isl_basic_map_underlying_set(bset_to_bmap(bset
));
5295 /* Replace each element in "list" by the result of applying
5296 * isl_basic_map_underlying_set to the element.
5298 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
5299 __isl_take isl_basic_map_list
*list
)
5306 n
= isl_basic_map_list_n_basic_map(list
);
5307 for (i
= 0; i
< n
; ++i
) {
5308 isl_basic_map
*bmap
;
5309 isl_basic_set
*bset
;
5311 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
5312 bset
= isl_basic_set_underlying_set(bmap
);
5313 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
5319 struct isl_basic_map
*isl_basic_map_overlying_set(
5320 struct isl_basic_set
*bset
, struct isl_basic_map
*like
)
5322 struct isl_basic_map
*bmap
;
5323 struct isl_ctx
*ctx
;
5330 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
5331 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
5332 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
5334 if (like
->n_div
== 0) {
5335 isl_space
*space
= isl_basic_map_get_space(like
);
5336 isl_basic_map_free(like
);
5337 return isl_basic_map_reset_space(bset
, space
);
5339 bset
= isl_basic_set_cow(bset
);
5342 total
= bset
->dim
->n_out
+ bset
->extra
;
5343 bmap
= bset_to_bmap(bset
);
5344 isl_space_free(bmap
->dim
);
5345 bmap
->dim
= isl_space_copy(like
->dim
);
5348 bmap
->n_div
= like
->n_div
;
5349 bmap
->extra
+= like
->n_div
;
5353 ltotal
= total
- bmap
->extra
+ like
->extra
;
5356 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
5357 bmap
->extra
* (1 + 1 + total
));
5358 if (isl_blk_is_error(bmap
->block2
))
5360 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
5364 for (i
= 0; i
< bmap
->extra
; ++i
)
5365 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
5366 for (i
= 0; i
< like
->n_div
; ++i
) {
5367 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
5368 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
5370 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
5372 isl_basic_map_free(like
);
5373 bmap
= isl_basic_map_simplify(bmap
);
5374 bmap
= isl_basic_map_finalize(bmap
);
5377 isl_basic_map_free(like
);
5378 isl_basic_set_free(bset
);
5382 struct isl_basic_set
*isl_basic_set_from_underlying_set(
5383 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
5385 return bset_from_bmap(isl_basic_map_overlying_set(bset
,
5386 bset_to_bmap(like
)));
5389 struct isl_set
*isl_map_underlying_set(struct isl_map
*map
)
5393 map
= isl_map_cow(map
);
5396 map
->dim
= isl_space_cow(map
->dim
);
5400 for (i
= 1; i
< map
->n
; ++i
)
5401 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
5403 for (i
= 0; i
< map
->n
; ++i
) {
5404 map
->p
[i
] = bset_to_bmap(
5405 isl_basic_map_underlying_set(map
->p
[i
]));
5410 map
->dim
= isl_space_underlying(map
->dim
, 0);
5412 isl_space_free(map
->dim
);
5413 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
5417 return set_from_map(map
);
5423 /* Replace the space of "bmap" by "space".
5425 * If the space of "bmap" is identical to "space" (including the identifiers
5426 * of the input and output dimensions), then simply return the original input.
5428 __isl_give isl_basic_map
*isl_basic_map_reset_space(
5429 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*space
)
5432 isl_space
*bmap_space
;
5434 bmap_space
= isl_basic_map_peek_space(bmap
);
5435 equal
= isl_space_is_equal(bmap_space
, space
);
5436 if (equal
>= 0 && equal
)
5437 equal
= isl_space_has_equal_ids(bmap_space
, space
);
5441 isl_space_free(space
);
5444 bmap
= isl_basic_map_cow(bmap
);
5445 if (!bmap
|| !space
)
5448 isl_space_free(bmap
->dim
);
5451 bmap
= isl_basic_map_finalize(bmap
);
5455 isl_basic_map_free(bmap
);
5456 isl_space_free(space
);
5460 __isl_give isl_basic_set
*isl_basic_set_reset_space(
5461 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
5463 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset
),
5467 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
5468 __isl_take isl_space
*dim
)
5472 map
= isl_map_cow(map
);
5476 for (i
= 0; i
< map
->n
; ++i
) {
5477 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
5478 isl_space_copy(dim
));
5482 isl_space_free(map
->dim
);
5488 isl_space_free(dim
);
5492 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
5493 __isl_take isl_space
*dim
)
5495 return set_from_map(isl_map_reset_space(set_to_map(set
), dim
));
5498 /* Compute the parameter domain of the given basic set.
5500 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
5506 is_params
= isl_basic_set_is_params(bset
);
5508 return isl_basic_set_free(bset
);
5512 n
= isl_basic_set_dim(bset
, isl_dim_set
);
5513 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
5514 space
= isl_basic_set_get_space(bset
);
5515 space
= isl_space_params(space
);
5516 bset
= isl_basic_set_reset_space(bset
, space
);
5520 /* Construct a zero-dimensional basic set with the given parameter domain.
5522 __isl_give isl_basic_set
*isl_basic_set_from_params(
5523 __isl_take isl_basic_set
*bset
)
5526 space
= isl_basic_set_get_space(bset
);
5527 space
= isl_space_set_from_params(space
);
5528 bset
= isl_basic_set_reset_space(bset
, space
);
5532 /* Compute the parameter domain of the given set.
5534 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
5539 if (isl_set_is_params(set
))
5542 n
= isl_set_dim(set
, isl_dim_set
);
5543 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
5544 space
= isl_set_get_space(set
);
5545 space
= isl_space_params(space
);
5546 set
= isl_set_reset_space(set
, space
);
5550 /* Construct a zero-dimensional set with the given parameter domain.
5552 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
5555 space
= isl_set_get_space(set
);
5556 space
= isl_space_set_from_params(space
);
5557 set
= isl_set_reset_space(set
, space
);
5561 /* Compute the parameter domain of the given map.
5563 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
5568 n
= isl_map_dim(map
, isl_dim_in
);
5569 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
5570 n
= isl_map_dim(map
, isl_dim_out
);
5571 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
5572 space
= isl_map_get_space(map
);
5573 space
= isl_space_params(space
);
5574 map
= isl_map_reset_space(map
, space
);
5578 struct isl_basic_set
*isl_basic_map_domain(struct isl_basic_map
*bmap
)
5585 space
= isl_space_domain(isl_basic_map_get_space(bmap
));
5587 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5588 bmap
= isl_basic_map_project_out(bmap
, isl_dim_out
, 0, n_out
);
5590 return isl_basic_map_reset_space(bmap
, space
);
5593 isl_bool
isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
5596 return isl_bool_error
;
5597 return isl_space_may_be_set(bmap
->dim
);
5600 /* Is this basic map actually a set?
5601 * Users should never call this function. Outside of isl,
5602 * the type should indicate whether something is a set or a map.
5604 isl_bool
isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
5607 return isl_bool_error
;
5608 return isl_space_is_set(bmap
->dim
);
5611 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
5615 is_set
= isl_basic_map_is_set(bmap
);
5620 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
5622 isl_basic_map_free(bmap
);
5626 __isl_give isl_basic_map
*isl_basic_map_domain_map(
5627 __isl_take isl_basic_map
*bmap
)
5631 isl_basic_map
*domain
;
5632 int nparam
, n_in
, n_out
;
5634 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5635 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5636 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5638 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
5639 domain
= isl_basic_map_universe(dim
);
5641 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5642 bmap
= isl_basic_map_apply_range(bmap
, domain
);
5643 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
5645 for (i
= 0; i
< n_in
; ++i
)
5646 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, i
,
5649 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5650 return isl_basic_map_finalize(bmap
);
5653 __isl_give isl_basic_map
*isl_basic_map_range_map(
5654 __isl_take isl_basic_map
*bmap
)
5658 isl_basic_map
*range
;
5659 int nparam
, n_in
, n_out
;
5661 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5662 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5663 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5665 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
5666 range
= isl_basic_map_universe(dim
);
5668 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5669 bmap
= isl_basic_map_apply_range(bmap
, range
);
5670 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
5672 for (i
= 0; i
< n_out
; ++i
)
5673 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, n_in
+ i
,
5676 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5677 return isl_basic_map_finalize(bmap
);
5680 int isl_map_may_be_set(__isl_keep isl_map
*map
)
5684 return isl_space_may_be_set(map
->dim
);
5687 /* Is this map actually a set?
5688 * Users should never call this function. Outside of isl,
5689 * the type should indicate whether something is a set or a map.
5691 isl_bool
isl_map_is_set(__isl_keep isl_map
*map
)
5694 return isl_bool_error
;
5695 return isl_space_is_set(map
->dim
);
5698 struct isl_set
*isl_map_range(struct isl_map
*map
)
5702 struct isl_set
*set
;
5704 is_set
= isl_map_is_set(map
);
5708 return set_from_map(map
);
5710 map
= isl_map_cow(map
);
5714 set
= set_from_map(map
);
5715 set
->dim
= isl_space_range(set
->dim
);
5718 for (i
= 0; i
< map
->n
; ++i
) {
5719 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
5723 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5724 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5731 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5735 map
= isl_map_cow(map
);
5739 map
->dim
= isl_space_domain_map(map
->dim
);
5742 for (i
= 0; i
< map
->n
; ++i
) {
5743 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5747 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5748 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5755 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5758 isl_space
*range_dim
;
5760 map
= isl_map_cow(map
);
5764 range_dim
= isl_space_range(isl_map_get_space(map
));
5765 range_dim
= isl_space_from_range(range_dim
);
5766 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5767 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5770 for (i
= 0; i
< map
->n
; ++i
) {
5771 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5775 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5776 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
5783 /* Given a wrapped map of the form A[B -> C],
5784 * return the map A[B -> C] -> B.
5786 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5793 if (!isl_set_has_tuple_id(set
))
5794 return isl_map_domain_map(isl_set_unwrap(set
));
5796 id
= isl_set_get_tuple_id(set
);
5797 map
= isl_map_domain_map(isl_set_unwrap(set
));
5798 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5803 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5804 __isl_take isl_basic_set
*bset
)
5806 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5809 __isl_give isl_basic_map
*isl_basic_map_from_range(
5810 __isl_take isl_basic_set
*bset
)
5813 space
= isl_basic_set_get_space(bset
);
5814 space
= isl_space_from_range(space
);
5815 bset
= isl_basic_set_reset_space(bset
, space
);
5816 return bset_to_bmap(bset
);
5819 /* Create a relation with the given set as range.
5820 * The domain of the created relation is a zero-dimensional
5821 * flat anonymous space.
5823 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5826 space
= isl_set_get_space(set
);
5827 space
= isl_space_from_range(space
);
5828 set
= isl_set_reset_space(set
, space
);
5829 return set_to_map(set
);
5832 /* Create a relation with the given set as domain.
5833 * The range of the created relation is a zero-dimensional
5834 * flat anonymous space.
5836 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5838 return isl_map_reverse(isl_map_from_range(set
));
5841 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5842 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5844 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5847 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5848 __isl_take isl_set
*range
)
5850 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5853 /* Return a newly allocated isl_map with given space and flags and
5854 * room for "n" basic maps.
5855 * Make sure that all cached information is cleared.
5857 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*space
, int n
,
5860 struct isl_map
*map
;
5865 isl_die(space
->ctx
, isl_error_internal
,
5866 "negative number of basic maps", goto error
);
5867 map
= isl_calloc(space
->ctx
, struct isl_map
,
5868 sizeof(struct isl_map
) +
5869 (n
- 1) * sizeof(struct isl_basic_map
*));
5873 map
->ctx
= space
->ctx
;
5874 isl_ctx_ref(map
->ctx
);
5882 isl_space_free(space
);
5886 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*dim
)
5888 struct isl_basic_map
*bmap
;
5889 bmap
= isl_basic_map_alloc_space(dim
, 0, 1, 0);
5890 bmap
= isl_basic_map_set_to_empty(bmap
);
5894 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*dim
)
5896 struct isl_basic_set
*bset
;
5897 bset
= isl_basic_set_alloc_space(dim
, 0, 1, 0);
5898 bset
= isl_basic_set_set_to_empty(bset
);
5902 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*dim
)
5904 struct isl_basic_map
*bmap
;
5905 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, 0);
5906 bmap
= isl_basic_map_finalize(bmap
);
5910 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*dim
)
5912 struct isl_basic_set
*bset
;
5913 bset
= isl_basic_set_alloc_space(dim
, 0, 0, 0);
5914 bset
= isl_basic_set_finalize(bset
);
5918 __isl_give isl_basic_map
*isl_basic_map_nat_universe(__isl_take isl_space
*dim
)
5921 unsigned total
= isl_space_dim(dim
, isl_dim_all
);
5922 isl_basic_map
*bmap
;
5924 bmap
= isl_basic_map_alloc_space(dim
, 0, 0, total
);
5925 for (i
= 0; i
< total
; ++i
) {
5926 int k
= isl_basic_map_alloc_inequality(bmap
);
5929 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
5930 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
5934 isl_basic_map_free(bmap
);
5938 __isl_give isl_basic_set
*isl_basic_set_nat_universe(__isl_take isl_space
*dim
)
5940 return isl_basic_map_nat_universe(dim
);
5943 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
5945 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
5948 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
5950 return isl_map_nat_universe(dim
);
5953 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*dim
)
5955 return isl_map_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5958 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*dim
)
5960 return isl_set_alloc_space(dim
, 0, ISL_MAP_DISJOINT
);
5963 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*dim
)
5965 struct isl_map
*map
;
5968 map
= isl_map_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5969 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(dim
));
5973 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*dim
)
5975 struct isl_set
*set
;
5978 set
= isl_set_alloc_space(isl_space_copy(dim
), 1, ISL_MAP_DISJOINT
);
5979 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(dim
));
5983 struct isl_map
*isl_map_dup(struct isl_map
*map
)
5986 struct isl_map
*dup
;
5990 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
5991 for (i
= 0; i
< map
->n
; ++i
)
5992 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
5996 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
5997 __isl_take isl_basic_map
*bmap
)
6001 if (isl_basic_map_plain_is_empty(bmap
)) {
6002 isl_basic_map_free(bmap
);
6005 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
6006 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
6007 map
->p
[map
->n
] = bmap
;
6009 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6015 isl_basic_map_free(bmap
);
6019 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
6030 isl_ctx_deref(map
->ctx
);
6031 for (i
= 0; i
< map
->n
; ++i
)
6032 isl_basic_map_free(map
->p
[i
]);
6033 isl_space_free(map
->dim
);
6039 static struct isl_basic_map
*isl_basic_map_fix_pos_si(
6040 struct isl_basic_map
*bmap
, unsigned pos
, int value
)
6044 bmap
= isl_basic_map_cow(bmap
);
6045 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
6046 j
= isl_basic_map_alloc_equality(bmap
);
6049 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
6050 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
6051 isl_int_set_si(bmap
->eq
[j
][0], value
);
6052 bmap
= isl_basic_map_simplify(bmap
);
6053 return isl_basic_map_finalize(bmap
);
6055 isl_basic_map_free(bmap
);
6059 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
6060 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
6064 bmap
= isl_basic_map_cow(bmap
);
6065 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
6066 j
= isl_basic_map_alloc_equality(bmap
);
6069 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
6070 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
6071 isl_int_set(bmap
->eq
[j
][0], value
);
6072 bmap
= isl_basic_map_simplify(bmap
);
6073 return isl_basic_map_finalize(bmap
);
6075 isl_basic_map_free(bmap
);
6079 struct isl_basic_map
*isl_basic_map_fix_si(struct isl_basic_map
*bmap
,
6080 enum isl_dim_type type
, unsigned pos
, int value
)
6082 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6083 return isl_basic_map_free(bmap
);
6084 return isl_basic_map_fix_pos_si(bmap
,
6085 isl_basic_map_offset(bmap
, type
) + pos
, value
);
6088 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
6089 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6091 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6092 return isl_basic_map_free(bmap
);
6093 return isl_basic_map_fix_pos(bmap
,
6094 isl_basic_map_offset(bmap
, type
) + pos
, value
);
6097 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6098 * to be equal to "v".
6100 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
6101 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6105 if (!isl_val_is_int(v
))
6106 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
6107 "expecting integer value", goto error
);
6108 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6110 pos
+= isl_basic_map_offset(bmap
, type
);
6111 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
6115 isl_basic_map_free(bmap
);
6120 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6121 * to be equal to "v".
6123 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
6124 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6126 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
6129 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
6130 enum isl_dim_type type
, unsigned pos
, int value
)
6132 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
6136 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
6137 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6139 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset
),
6143 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
6144 unsigned input
, int value
)
6146 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
6149 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
6150 unsigned dim
, int value
)
6152 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
6153 isl_dim_set
, dim
, value
));
6156 static int remove_if_empty(__isl_keep isl_map
*map
, int i
)
6158 int empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
6165 isl_basic_map_free(map
->p
[i
]);
6166 if (i
!= map
->n
- 1) {
6167 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6168 map
->p
[i
] = map
->p
[map
->n
- 1];
6175 /* Perform "fn" on each basic map of "map", where we may not be holding
6176 * the only reference to "map".
6177 * In particular, "fn" should be a semantics preserving operation
6178 * that we want to apply to all copies of "map". We therefore need
6179 * to be careful not to modify "map" in a way that breaks "map"
6180 * in case anything goes wrong.
6182 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
6183 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
6185 struct isl_basic_map
*bmap
;
6191 for (i
= map
->n
- 1; i
>= 0; --i
) {
6192 bmap
= isl_basic_map_copy(map
->p
[i
]);
6196 isl_basic_map_free(map
->p
[i
]);
6198 if (remove_if_empty(map
, i
) < 0)
6208 struct isl_map
*isl_map_fix_si(struct isl_map
*map
,
6209 enum isl_dim_type type
, unsigned pos
, int value
)
6213 map
= isl_map_cow(map
);
6217 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6218 for (i
= map
->n
- 1; i
>= 0; --i
) {
6219 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
6220 if (remove_if_empty(map
, i
) < 0)
6223 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6230 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
6231 enum isl_dim_type type
, unsigned pos
, int value
)
6233 return set_from_map(isl_map_fix_si(set_to_map(set
), type
, pos
, value
));
6236 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
6237 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6241 map
= isl_map_cow(map
);
6245 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6246 for (i
= 0; i
< map
->n
; ++i
) {
6247 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
6251 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6258 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
6259 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6261 return set_from_map(isl_map_fix(set_to_map(set
), type
, pos
, value
));
6264 /* Fix the value of the variable at position "pos" of type "type" of "map"
6265 * to be equal to "v".
6267 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
6268 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6272 map
= isl_map_cow(map
);
6276 if (!isl_val_is_int(v
))
6277 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6278 "expecting integer value", goto error
);
6279 if (pos
>= isl_map_dim(map
, type
))
6280 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6281 "index out of bounds", goto error
);
6282 for (i
= map
->n
- 1; i
>= 0; --i
) {
6283 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
6285 if (remove_if_empty(map
, i
) < 0)
6288 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6297 /* Fix the value of the variable at position "pos" of type "type" of "set"
6298 * to be equal to "v".
6300 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
6301 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6303 return isl_map_fix_val(set
, type
, pos
, v
);
6306 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
6307 unsigned input
, int value
)
6309 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
6312 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
6314 return set_from_map(isl_map_fix_si(set_to_map(set
),
6315 isl_dim_set
, dim
, value
));
6318 static __isl_give isl_basic_map
*basic_map_bound_si(
6319 __isl_take isl_basic_map
*bmap
,
6320 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6324 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6325 return isl_basic_map_free(bmap
);
6326 pos
+= isl_basic_map_offset(bmap
, type
);
6327 bmap
= isl_basic_map_cow(bmap
);
6328 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6329 j
= isl_basic_map_alloc_inequality(bmap
);
6332 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6334 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6335 isl_int_set_si(bmap
->ineq
[j
][0], value
);
6337 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6338 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
6340 bmap
= isl_basic_map_simplify(bmap
);
6341 return isl_basic_map_finalize(bmap
);
6343 isl_basic_map_free(bmap
);
6347 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
6348 __isl_take isl_basic_map
*bmap
,
6349 enum isl_dim_type type
, unsigned pos
, int value
)
6351 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
6354 /* Constrain the values of the given dimension to be no greater than "value".
6356 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
6357 __isl_take isl_basic_map
*bmap
,
6358 enum isl_dim_type type
, unsigned pos
, int value
)
6360 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
6363 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
6364 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6368 map
= isl_map_cow(map
);
6372 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6373 for (i
= 0; i
< map
->n
; ++i
) {
6374 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
6375 type
, pos
, value
, upper
);
6379 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6386 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
6387 enum isl_dim_type type
, unsigned pos
, int value
)
6389 return map_bound_si(map
, type
, pos
, value
, 0);
6392 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
6393 enum isl_dim_type type
, unsigned pos
, int value
)
6395 return map_bound_si(map
, type
, pos
, value
, 1);
6398 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
6399 enum isl_dim_type type
, unsigned pos
, int value
)
6401 return set_from_map(isl_map_lower_bound_si(set_to_map(set
),
6405 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
6406 enum isl_dim_type type
, unsigned pos
, int value
)
6408 return isl_map_upper_bound_si(set
, type
, pos
, value
);
6411 /* Bound the given variable of "bmap" from below (or above is "upper"
6412 * is set) to "value".
6414 static __isl_give isl_basic_map
*basic_map_bound(
6415 __isl_take isl_basic_map
*bmap
,
6416 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6420 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6421 return isl_basic_map_free(bmap
);
6422 pos
+= isl_basic_map_offset(bmap
, type
);
6423 bmap
= isl_basic_map_cow(bmap
);
6424 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6425 j
= isl_basic_map_alloc_inequality(bmap
);
6428 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6430 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6431 isl_int_set(bmap
->ineq
[j
][0], value
);
6433 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6434 isl_int_neg(bmap
->ineq
[j
][0], value
);
6436 bmap
= isl_basic_map_simplify(bmap
);
6437 return isl_basic_map_finalize(bmap
);
6439 isl_basic_map_free(bmap
);
6443 /* Bound the given variable of "map" from below (or above is "upper"
6444 * is set) to "value".
6446 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
6447 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6451 map
= isl_map_cow(map
);
6455 if (pos
>= isl_map_dim(map
, type
))
6456 isl_die(map
->ctx
, isl_error_invalid
,
6457 "index out of bounds", goto error
);
6458 for (i
= map
->n
- 1; i
>= 0; --i
) {
6459 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
6460 if (remove_if_empty(map
, i
) < 0)
6463 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6470 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
6471 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6473 return map_bound(map
, type
, pos
, value
, 0);
6476 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
6477 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6479 return map_bound(map
, type
, pos
, value
, 1);
6482 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
6483 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6485 return isl_map_lower_bound(set
, type
, pos
, value
);
6488 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
6489 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6491 return isl_map_upper_bound(set
, type
, pos
, value
);
6494 /* Force the values of the variable at position "pos" of type "type" of "set"
6495 * to be no smaller than "value".
6497 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
6498 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6502 if (!isl_val_is_int(value
))
6503 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6504 "expecting integer value", goto error
);
6505 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
6506 isl_val_free(value
);
6509 isl_val_free(value
);
6514 /* Force the values of the variable at position "pos" of type "type" of "set"
6515 * to be no greater than "value".
6517 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
6518 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6522 if (!isl_val_is_int(value
))
6523 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6524 "expecting integer value", goto error
);
6525 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
6526 isl_val_free(value
);
6529 isl_val_free(value
);
6534 struct isl_map
*isl_map_reverse(struct isl_map
*map
)
6538 map
= isl_map_cow(map
);
6542 map
->dim
= isl_space_reverse(map
->dim
);
6545 for (i
= 0; i
< map
->n
; ++i
) {
6546 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
6550 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
6558 #define TYPE isl_pw_multi_aff
6560 #define SUFFIX _pw_multi_aff
6562 #define EMPTY isl_pw_multi_aff_empty
6564 #define ADD isl_pw_multi_aff_union_add
6565 #include "isl_map_lexopt_templ.c"
6567 /* Given a map "map", compute the lexicographically minimal
6568 * (or maximal) image element for each domain element in dom,
6569 * in the form of an isl_pw_multi_aff.
6570 * If "empty" is not NULL, then set *empty to those elements in dom that
6571 * do not have an image element.
6572 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6573 * should be computed over the domain of "map". "empty" is also NULL
6576 * We first compute the lexicographically minimal or maximal element
6577 * in the first basic map. This results in a partial solution "res"
6578 * and a subset "todo" of dom that still need to be handled.
6579 * We then consider each of the remaining maps in "map" and successively
6580 * update both "res" and "todo".
6581 * If "empty" is NULL, then the todo sets are not needed and therefore
6582 * also not computed.
6584 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6585 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6586 __isl_give isl_set
**empty
, unsigned flags
)
6590 isl_pw_multi_aff
*res
;
6593 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6594 if (!map
|| (!full
&& !dom
))
6597 if (isl_map_plain_is_empty(map
)) {
6602 return isl_pw_multi_aff_from_map(map
);
6605 res
= basic_map_partial_lexopt_pw_multi_aff(
6606 isl_basic_map_copy(map
->p
[0]),
6607 isl_set_copy(dom
), empty
, flags
);
6611 for (i
= 1; i
< map
->n
; ++i
) {
6612 isl_pw_multi_aff
*res_i
;
6614 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6615 isl_basic_map_copy(map
->p
[i
]),
6616 isl_set_copy(dom
), empty
, flags
);
6618 if (ISL_FL_ISSET(flags
, ISL_OPT_MAX
))
6619 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6621 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6624 todo
= isl_set_intersect(todo
, *empty
);
6643 #define TYPE isl_map
6647 #define EMPTY isl_map_empty
6649 #define ADD isl_map_union_disjoint
6650 #include "isl_map_lexopt_templ.c"
6652 /* Given a map "map", compute the lexicographically minimal
6653 * (or maximal) image element for each domain element in "dom",
6654 * in the form of an isl_map.
6655 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6656 * do not have an image element.
6657 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6658 * should be computed over the domain of "map". "empty" is also NULL
6661 * If the input consists of more than one disjunct, then first
6662 * compute the desired result in the form of an isl_pw_multi_aff and
6663 * then convert that into an isl_map.
6665 * This function used to have an explicit implementation in terms
6666 * of isl_maps, but it would continually intersect the domains of
6667 * partial results with the complement of the domain of the next
6668 * partial solution, potentially leading to an explosion in the number
6669 * of disjuncts if there are several disjuncts in the input.
6670 * An even earlier implementation of this function would look for
6671 * better results in the domain of the partial result and for extra
6672 * results in the complement of this domain, which would lead to
6673 * even more splintering.
6675 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6676 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6677 __isl_give isl_set
**empty
, unsigned flags
)
6680 struct isl_map
*res
;
6681 isl_pw_multi_aff
*pma
;
6683 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6684 if (!map
|| (!full
&& !dom
))
6687 if (isl_map_plain_is_empty(map
)) {
6696 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6702 pma
= isl_map_partial_lexopt_aligned_pw_multi_aff(map
, dom
, empty
,
6704 return isl_map_from_pw_multi_aff(pma
);
6713 __isl_give isl_map
*isl_map_partial_lexmax(
6714 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6715 __isl_give isl_set
**empty
)
6717 return isl_map_partial_lexopt(map
, dom
, empty
, ISL_OPT_MAX
);
6720 __isl_give isl_map
*isl_map_partial_lexmin(
6721 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6722 __isl_give isl_set
**empty
)
6724 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6727 __isl_give isl_set
*isl_set_partial_lexmin(
6728 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6729 __isl_give isl_set
**empty
)
6731 return set_from_map(isl_map_partial_lexmin(set_to_map(set
),
6735 __isl_give isl_set
*isl_set_partial_lexmax(
6736 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6737 __isl_give isl_set
**empty
)
6739 return set_from_map(isl_map_partial_lexmax(set_to_map(set
),
6743 /* Compute the lexicographic minimum (or maximum if "flags" includes
6744 * ISL_OPT_MAX) of "bset" over its parametric domain.
6746 __isl_give isl_set
*isl_basic_set_lexopt(__isl_take isl_basic_set
*bset
,
6749 return isl_basic_map_lexopt(bset
, flags
);
6752 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6754 return isl_basic_map_lexopt(bmap
, ISL_OPT_MAX
);
6757 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6759 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset
)));
6762 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6764 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset
)));
6767 /* Compute the lexicographic minimum of "bset" over its parametric domain
6768 * for the purpose of quantifier elimination.
6769 * That is, find an explicit representation for all the existentially
6770 * quantified variables in "bset" by computing their lexicographic
6773 static __isl_give isl_set
*isl_basic_set_lexmin_compute_divs(
6774 __isl_take isl_basic_set
*bset
)
6776 return isl_basic_set_lexopt(bset
, ISL_OPT_QE
);
6779 /* Extract the first and only affine expression from list
6780 * and then add it to *pwaff with the given dom.
6781 * This domain is known to be disjoint from other domains
6782 * because of the way isl_basic_map_foreach_lexmax works.
6784 static isl_stat
update_dim_opt(__isl_take isl_basic_set
*dom
,
6785 __isl_take isl_aff_list
*list
, void *user
)
6787 isl_ctx
*ctx
= isl_basic_set_get_ctx(dom
);
6789 isl_pw_aff
**pwaff
= user
;
6790 isl_pw_aff
*pwaff_i
;
6794 if (isl_aff_list_n_aff(list
) != 1)
6795 isl_die(ctx
, isl_error_internal
,
6796 "expecting single element list", goto error
);
6798 aff
= isl_aff_list_get_aff(list
, 0);
6799 pwaff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(dom
), aff
);
6801 *pwaff
= isl_pw_aff_add_disjoint(*pwaff
, pwaff_i
);
6803 isl_aff_list_free(list
);
6807 isl_basic_set_free(dom
);
6808 isl_aff_list_free(list
);
6809 return isl_stat_error
;
6812 /* Given a basic map with one output dimension, compute the minimum or
6813 * maximum of that dimension as an isl_pw_aff.
6815 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
6816 * call update_dim_opt on each leaf of the result.
6818 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6821 isl_space
*dim
= isl_basic_map_get_space(bmap
);
6825 dim
= isl_space_from_domain(isl_space_domain(dim
));
6826 dim
= isl_space_add_dims(dim
, isl_dim_out
, 1);
6827 pwaff
= isl_pw_aff_empty(dim
);
6829 r
= isl_basic_map_foreach_lexopt(bmap
, max
, &update_dim_opt
, &pwaff
);
6831 return isl_pw_aff_free(pwaff
);
6836 /* Compute the minimum or maximum of the given output dimension
6837 * as a function of the parameters and the input dimensions,
6838 * but independently of the other output dimensions.
6840 * We first project out the other output dimension and then compute
6841 * the "lexicographic" maximum in each basic map, combining the results
6842 * using isl_pw_aff_union_max.
6844 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
6851 n_out
= isl_map_dim(map
, isl_dim_out
);
6852 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
6853 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
6858 isl_space
*dim
= isl_map_get_space(map
);
6860 return isl_pw_aff_empty(dim
);
6863 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
6864 for (i
= 1; i
< map
->n
; ++i
) {
6865 isl_pw_aff
*pwaff_i
;
6867 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
6868 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
6876 /* Compute the minimum of the given output dimension as a function of the
6877 * parameters and input dimensions, but independently of
6878 * the other output dimensions.
6880 __isl_give isl_pw_aff
*isl_map_dim_min(__isl_take isl_map
*map
, int pos
)
6882 return map_dim_opt(map
, pos
, 0);
6885 /* Compute the maximum of the given output dimension as a function of the
6886 * parameters and input dimensions, but independently of
6887 * the other output dimensions.
6889 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
6891 return map_dim_opt(map
, pos
, 1);
6894 /* Compute the minimum or maximum of the given set dimension
6895 * as a function of the parameters,
6896 * but independently of the other set dimensions.
6898 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
6901 return map_dim_opt(set
, pos
, max
);
6904 /* Compute the maximum of the given set dimension as a function of the
6905 * parameters, but independently of the other set dimensions.
6907 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
6909 return set_dim_opt(set
, pos
, 1);
6912 /* Compute the minimum of the given set dimension as a function of the
6913 * parameters, but independently of the other set dimensions.
6915 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
6917 return set_dim_opt(set
, pos
, 0);
6920 /* Apply a preimage specified by "mat" on the parameters of "bset".
6921 * bset is assumed to have only parameters and divs.
6923 static __isl_give isl_basic_set
*basic_set_parameter_preimage(
6924 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*mat
)
6931 bset
->dim
= isl_space_cow(bset
->dim
);
6935 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
6937 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
6939 bset
->dim
->nparam
= 0;
6940 bset
->dim
->n_out
= nparam
;
6941 bset
= isl_basic_set_preimage(bset
, mat
);
6943 bset
->dim
->nparam
= bset
->dim
->n_out
;
6944 bset
->dim
->n_out
= 0;
6949 isl_basic_set_free(bset
);
6953 /* Apply a preimage specified by "mat" on the parameters of "set".
6954 * set is assumed to have only parameters and divs.
6956 static __isl_give isl_set
*set_parameter_preimage(__isl_take isl_set
*set
,
6957 __isl_take isl_mat
*mat
)
6965 nparam
= isl_set_dim(set
, isl_dim_param
);
6967 if (mat
->n_row
!= 1 + nparam
)
6968 isl_die(isl_set_get_ctx(set
), isl_error_internal
,
6969 "unexpected number of rows", goto error
);
6971 space
= isl_set_get_space(set
);
6972 space
= isl_space_move_dims(space
, isl_dim_set
, 0,
6973 isl_dim_param
, 0, nparam
);
6974 set
= isl_set_reset_space(set
, space
);
6975 set
= isl_set_preimage(set
, mat
);
6976 nparam
= isl_set_dim(set
, isl_dim_out
);
6977 space
= isl_set_get_space(set
);
6978 space
= isl_space_move_dims(space
, isl_dim_param
, 0,
6979 isl_dim_out
, 0, nparam
);
6980 set
= isl_set_reset_space(set
, space
);
6988 /* Intersect the basic set "bset" with the affine space specified by the
6989 * equalities in "eq".
6991 static __isl_give isl_basic_set
*basic_set_append_equalities(
6992 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*eq
)
7000 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
7005 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
7006 for (i
= 0; i
< eq
->n_row
; ++i
) {
7007 k
= isl_basic_set_alloc_equality(bset
);
7010 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
7011 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
7015 bset
= isl_basic_set_gauss(bset
, NULL
);
7016 bset
= isl_basic_set_finalize(bset
);
7021 isl_basic_set_free(bset
);
7025 /* Intersect the set "set" with the affine space specified by the
7026 * equalities in "eq".
7028 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
7036 for (i
= 0; i
< set
->n
; ++i
) {
7037 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
7050 /* Given a basic set "bset" that only involves parameters and existentially
7051 * quantified variables, return the index of the first equality
7052 * that only involves parameters. If there is no such equality then
7053 * return bset->n_eq.
7055 * This function assumes that isl_basic_set_gauss has been called on "bset".
7057 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
7060 unsigned nparam
, n_div
;
7065 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7066 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
7068 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
7069 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
7076 /* Compute an explicit representation for the existentially quantified
7077 * variables in "bset" by computing the "minimal value" of the set
7078 * variables. Since there are no set variables, the computation of
7079 * the minimal value essentially computes an explicit representation
7080 * of the non-empty part(s) of "bset".
7082 * The input only involves parameters and existentially quantified variables.
7083 * All equalities among parameters have been removed.
7085 * Since the existentially quantified variables in the result are in general
7086 * going to be different from those in the input, we first replace
7087 * them by the minimal number of variables based on their equalities.
7088 * This should simplify the parametric integer programming.
7090 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
7092 isl_morph
*morph1
, *morph2
;
7098 if (bset
->n_eq
== 0)
7099 return isl_basic_set_lexmin_compute_divs(bset
);
7101 morph1
= isl_basic_set_parameter_compression(bset
);
7102 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
7103 bset
= isl_basic_set_lift(bset
);
7104 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
7105 bset
= isl_morph_basic_set(morph2
, bset
);
7106 n
= isl_basic_set_dim(bset
, isl_dim_set
);
7107 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
7109 set
= isl_basic_set_lexmin_compute_divs(bset
);
7111 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
7116 /* Project the given basic set onto its parameter domain, possibly introducing
7117 * new, explicit, existential variables in the constraints.
7118 * The input has parameters and (possibly implicit) existential variables.
7119 * The output has the same parameters, but only
7120 * explicit existentially quantified variables.
7122 * The actual projection is performed by pip, but pip doesn't seem
7123 * to like equalities very much, so we first remove the equalities
7124 * among the parameters by performing a variable compression on
7125 * the parameters. Afterward, an inverse transformation is performed
7126 * and the equalities among the parameters are inserted back in.
7128 * The variable compression on the parameters may uncover additional
7129 * equalities that were only implicit before. We therefore check
7130 * if there are any new parameter equalities in the result and
7131 * if so recurse. The removal of parameter equalities is required
7132 * for the parameter compression performed by base_compute_divs.
7134 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
7138 struct isl_mat
*T
, *T2
;
7139 struct isl_set
*set
;
7142 bset
= isl_basic_set_cow(bset
);
7146 if (bset
->n_eq
== 0)
7147 return base_compute_divs(bset
);
7149 bset
= isl_basic_set_gauss(bset
, NULL
);
7152 if (isl_basic_set_plain_is_empty(bset
))
7153 return isl_set_from_basic_set(bset
);
7155 i
= first_parameter_equality(bset
);
7156 if (i
== bset
->n_eq
)
7157 return base_compute_divs(bset
);
7159 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7160 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
7162 eq
= isl_mat_cow(eq
);
7163 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
7164 if (T
&& T
->n_col
== 0) {
7168 bset
= isl_basic_set_set_to_empty(bset
);
7169 return isl_set_from_basic_set(bset
);
7171 bset
= basic_set_parameter_preimage(bset
, T
);
7173 i
= first_parameter_equality(bset
);
7176 else if (i
== bset
->n_eq
)
7177 set
= base_compute_divs(bset
);
7179 set
= parameter_compute_divs(bset
);
7180 set
= set_parameter_preimage(set
, T2
);
7181 set
= set_append_equalities(set
, eq
);
7185 /* Insert the divs from "ls" before those of "bmap".
7187 * The number of columns is not changed, which means that the last
7188 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7189 * The caller is responsible for removing the same number of dimensions
7190 * from the space of "bmap".
7192 static __isl_give isl_basic_map
*insert_divs_from_local_space(
7193 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
7199 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7203 old_n_div
= bmap
->n_div
;
7204 bmap
= insert_div_rows(bmap
, n_div
);
7208 for (i
= 0; i
< n_div
; ++i
) {
7209 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
7210 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
7216 /* Replace the space of "bmap" by the space and divs of "ls".
7218 * If "ls" has any divs, then we simplify the result since we may
7219 * have discovered some additional equalities that could simplify
7220 * the div expressions.
7222 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
7223 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
7227 bmap
= isl_basic_map_cow(bmap
);
7231 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7232 bmap
= insert_divs_from_local_space(bmap
, ls
);
7236 isl_space_free(bmap
->dim
);
7237 bmap
->dim
= isl_local_space_get_space(ls
);
7241 isl_local_space_free(ls
);
7243 bmap
= isl_basic_map_simplify(bmap
);
7244 bmap
= isl_basic_map_finalize(bmap
);
7247 isl_basic_map_free(bmap
);
7248 isl_local_space_free(ls
);
7252 /* Replace the space of "map" by the space and divs of "ls".
7254 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
7255 __isl_take isl_local_space
*ls
)
7259 map
= isl_map_cow(map
);
7263 for (i
= 0; i
< map
->n
; ++i
) {
7264 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
7265 isl_local_space_copy(ls
));
7269 isl_space_free(map
->dim
);
7270 map
->dim
= isl_local_space_get_space(ls
);
7274 isl_local_space_free(ls
);
7277 isl_local_space_free(ls
);
7282 /* Compute an explicit representation for the existentially
7283 * quantified variables for which do not know any explicit representation yet.
7285 * We first sort the existentially quantified variables so that the
7286 * existentially quantified variables for which we already have an explicit
7287 * representation are placed before those for which we do not.
7288 * The input dimensions, the output dimensions and the existentially
7289 * quantified variables for which we already have an explicit
7290 * representation are then turned into parameters.
7291 * compute_divs returns a map with the same parameters and
7292 * no input or output dimensions and the dimension specification
7293 * is reset to that of the input, including the existentially quantified
7294 * variables for which we already had an explicit representation.
7296 static struct isl_map
*compute_divs(struct isl_basic_map
*bmap
)
7298 struct isl_basic_set
*bset
;
7299 struct isl_set
*set
;
7300 struct isl_map
*map
;
7302 isl_local_space
*ls
;
7309 bmap
= isl_basic_map_sort_divs(bmap
);
7310 bmap
= isl_basic_map_cow(bmap
);
7314 n_known
= isl_basic_map_first_unknown_div(bmap
);
7316 return isl_map_from_basic_map(isl_basic_map_free(bmap
));
7318 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7319 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
7320 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
7321 dim
= isl_space_set_alloc(bmap
->ctx
,
7322 nparam
+ n_in
+ n_out
+ n_known
, 0);
7326 ls
= isl_basic_map_get_local_space(bmap
);
7327 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
7328 n_known
, bmap
->n_div
- n_known
);
7330 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
7331 swap_div(bmap
, i
- n_known
, i
);
7332 bmap
->n_div
-= n_known
;
7333 bmap
->extra
-= n_known
;
7335 bmap
= isl_basic_map_reset_space(bmap
, dim
);
7336 bset
= bset_from_bmap(bmap
);
7338 set
= parameter_compute_divs(bset
);
7339 map
= set_to_map(set
);
7340 map
= replace_space_by_local_space(map
, ls
);
7344 isl_basic_map_free(bmap
);
7348 /* Remove the explicit representation of local variable "div",
7351 __isl_give isl_basic_map
*isl_basic_map_mark_div_unknown(
7352 __isl_take isl_basic_map
*bmap
, int div
)
7356 unknown
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
7358 return isl_basic_map_free(bmap
);
7362 bmap
= isl_basic_map_cow(bmap
);
7365 isl_int_set_si(bmap
->div
[div
][0], 0);
7369 /* Is local variable "div" of "bmap" marked as not having an explicit
7371 * Note that even if "div" is not marked in this way and therefore
7372 * has an explicit representation, this representation may still
7373 * depend (indirectly) on other local variables that do not
7374 * have an explicit representation.
7376 isl_bool
isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map
*bmap
,
7379 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
7380 return isl_bool_error
;
7381 return isl_int_is_zero(bmap
->div
[div
][0]);
7384 /* Return the position of the first local variable that does not
7385 * have an explicit representation.
7386 * Return the total number of local variables if they all have
7387 * an explicit representation.
7388 * Return -1 on error.
7390 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map
*bmap
)
7397 for (i
= 0; i
< bmap
->n_div
; ++i
) {
7398 if (!isl_basic_map_div_is_known(bmap
, i
))
7404 /* Return the position of the first local variable that does not
7405 * have an explicit representation.
7406 * Return the total number of local variables if they all have
7407 * an explicit representation.
7408 * Return -1 on error.
7410 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set
*bset
)
7412 return isl_basic_map_first_unknown_div(bset
);
7415 /* Does "bmap" have an explicit representation for all local variables?
7417 isl_bool
isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
7421 n
= isl_basic_map_dim(bmap
, isl_dim_div
);
7422 first
= isl_basic_map_first_unknown_div(bmap
);
7424 return isl_bool_error
;
7428 /* Do all basic maps in "map" have an explicit representation
7429 * for all local variables?
7431 isl_bool
isl_map_divs_known(__isl_keep isl_map
*map
)
7436 return isl_bool_error
;
7438 for (i
= 0; i
< map
->n
; ++i
) {
7439 int known
= isl_basic_map_divs_known(map
->p
[i
]);
7444 return isl_bool_true
;
7447 /* If bmap contains any unknown divs, then compute explicit
7448 * expressions for them. However, this computation may be
7449 * quite expensive, so first try to remove divs that aren't
7452 struct isl_map
*isl_basic_map_compute_divs(struct isl_basic_map
*bmap
)
7455 struct isl_map
*map
;
7457 known
= isl_basic_map_divs_known(bmap
);
7461 return isl_map_from_basic_map(bmap
);
7463 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
7465 known
= isl_basic_map_divs_known(bmap
);
7469 return isl_map_from_basic_map(bmap
);
7471 map
= compute_divs(bmap
);
7474 isl_basic_map_free(bmap
);
7478 struct isl_map
*isl_map_compute_divs(struct isl_map
*map
)
7482 struct isl_map
*res
;
7489 known
= isl_map_divs_known(map
);
7497 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
7498 for (i
= 1 ; i
< map
->n
; ++i
) {
7500 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
7501 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
7502 res
= isl_map_union_disjoint(res
, r2
);
7504 res
= isl_map_union(res
, r2
);
7511 struct isl_set
*isl_basic_set_compute_divs(struct isl_basic_set
*bset
)
7513 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset
)));
7516 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
7518 return set_from_map(isl_map_compute_divs(set_to_map(set
)));
7521 struct isl_set
*isl_map_domain(struct isl_map
*map
)
7524 struct isl_set
*set
;
7529 map
= isl_map_cow(map
);
7533 set
= set_from_map(map
);
7534 set
->dim
= isl_space_domain(set
->dim
);
7537 for (i
= 0; i
< map
->n
; ++i
) {
7538 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7542 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7543 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7550 /* Return the union of "map1" and "map2", where we assume for now that
7551 * "map1" and "map2" are disjoint. Note that the basic maps inside
7552 * "map1" or "map2" may not be disjoint from each other.
7553 * Also note that this function is also called from isl_map_union,
7554 * which takes care of handling the situation where "map1" and "map2"
7555 * may not be disjoint.
7557 * If one of the inputs is empty, we can simply return the other input.
7558 * Similarly, if one of the inputs is universal, then it is equal to the union.
7560 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7561 __isl_take isl_map
*map2
)
7565 struct isl_map
*map
= NULL
;
7571 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7572 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7573 "spaces don't match", goto error
);
7584 is_universe
= isl_map_plain_is_universe(map1
);
7585 if (is_universe
< 0)
7592 is_universe
= isl_map_plain_is_universe(map2
);
7593 if (is_universe
< 0)
7600 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7601 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7602 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7604 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7605 map1
->n
+ map2
->n
, flags
);
7608 for (i
= 0; i
< map1
->n
; ++i
) {
7609 map
= isl_map_add_basic_map(map
,
7610 isl_basic_map_copy(map1
->p
[i
]));
7614 for (i
= 0; i
< map2
->n
; ++i
) {
7615 map
= isl_map_add_basic_map(map
,
7616 isl_basic_map_copy(map2
->p
[i
]));
7630 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7631 * guaranteed to be disjoint by the caller.
7633 * Note that this functions is called from within isl_map_make_disjoint,
7634 * so we have to be careful not to touch the constraints of the inputs
7637 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7638 __isl_take isl_map
*map2
)
7640 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7643 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7644 * not be disjoint. The parameters are assumed to have been aligned.
7646 * We currently simply call map_union_disjoint, the internal operation
7647 * of which does not really depend on the inputs being disjoint.
7648 * If the result contains more than one basic map, then we clear
7649 * the disjoint flag since the result may contain basic maps from
7650 * both inputs and these are not guaranteed to be disjoint.
7652 * As a special case, if "map1" and "map2" are obviously equal,
7653 * then we simply return "map1".
7655 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7656 __isl_take isl_map
*map2
)
7663 equal
= isl_map_plain_is_equal(map1
, map2
);
7671 map1
= map_union_disjoint(map1
, map2
);
7675 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7683 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7686 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7687 __isl_take isl_map
*map2
)
7689 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7692 struct isl_set
*isl_set_union_disjoint(
7693 struct isl_set
*set1
, struct isl_set
*set2
)
7695 return set_from_map(isl_map_union_disjoint(set_to_map(set1
),
7699 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7701 return set_from_map(isl_map_union(set_to_map(set1
), set_to_map(set2
)));
7704 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7707 * "map" and "set" are assumed to be compatible and non-NULL.
7709 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7710 __isl_take isl_set
*set
,
7711 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7712 __isl_take isl_basic_set
*bset
))
7715 struct isl_map
*result
;
7718 if (isl_set_plain_is_universe(set
)) {
7723 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7724 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7725 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7727 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7728 map
->n
* set
->n
, flags
);
7729 for (i
= 0; result
&& i
< map
->n
; ++i
)
7730 for (j
= 0; j
< set
->n
; ++j
) {
7731 result
= isl_map_add_basic_map(result
,
7732 fn(isl_basic_map_copy(map
->p
[i
]),
7733 isl_basic_set_copy(set
->p
[j
])));
7743 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7744 __isl_take isl_set
*set
)
7748 ok
= isl_map_compatible_range(map
, set
);
7752 isl_die(set
->ctx
, isl_error_invalid
,
7753 "incompatible spaces", goto error
);
7755 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7762 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7763 __isl_take isl_set
*set
)
7765 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7768 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7769 __isl_take isl_set
*set
)
7773 ok
= isl_map_compatible_domain(map
, set
);
7777 isl_die(set
->ctx
, isl_error_invalid
,
7778 "incompatible spaces", goto error
);
7780 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7787 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7788 __isl_take isl_set
*set
)
7790 return isl_map_align_params_map_map_and(map
, set
,
7791 &map_intersect_domain
);
7794 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
7795 __isl_take isl_map
*map2
)
7799 map1
= isl_map_reverse(map1
);
7800 map1
= isl_map_apply_range(map1
, map2
);
7801 return isl_map_reverse(map1
);
7808 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
7809 __isl_take isl_map
*map2
)
7811 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
7814 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
7815 __isl_take isl_map
*map2
)
7817 isl_space
*dim_result
;
7818 struct isl_map
*result
;
7824 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
7825 isl_space_copy(map2
->dim
));
7827 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
7830 for (i
= 0; i
< map1
->n
; ++i
)
7831 for (j
= 0; j
< map2
->n
; ++j
) {
7832 result
= isl_map_add_basic_map(result
,
7833 isl_basic_map_apply_range(
7834 isl_basic_map_copy(map1
->p
[i
]),
7835 isl_basic_map_copy(map2
->p
[j
])));
7841 if (result
&& result
->n
<= 1)
7842 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
7850 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
7851 __isl_take isl_map
*map2
)
7853 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
7857 * returns range - domain
7859 struct isl_basic_set
*isl_basic_map_deltas(struct isl_basic_map
*bmap
)
7861 isl_space
*target_space
;
7862 struct isl_basic_set
*bset
;
7869 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7870 bmap
->dim
, isl_dim_out
),
7872 target_space
= isl_space_domain(isl_basic_map_get_space(bmap
));
7873 dim
= isl_basic_map_dim(bmap
, isl_dim_in
);
7874 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7875 bmap
= isl_basic_map_from_range(isl_basic_map_wrap(bmap
));
7876 bmap
= isl_basic_map_add_dims(bmap
, isl_dim_in
, dim
);
7877 bmap
= isl_basic_map_extend_constraints(bmap
, dim
, 0);
7878 for (i
= 0; i
< dim
; ++i
) {
7879 int j
= isl_basic_map_alloc_equality(bmap
);
7881 bmap
= isl_basic_map_free(bmap
);
7884 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
7885 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
7886 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], 1);
7887 isl_int_set_si(bmap
->eq
[j
][1+nparam
+2*dim
+i
], -1);
7889 bset
= isl_basic_map_domain(bmap
);
7890 bset
= isl_basic_set_reset_space(bset
, target_space
);
7893 isl_basic_map_free(bmap
);
7898 * returns range - domain
7900 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
7904 struct isl_set
*result
;
7909 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7910 map
->dim
, isl_dim_out
),
7912 dim
= isl_map_get_space(map
);
7913 dim
= isl_space_domain(dim
);
7914 result
= isl_set_alloc_space(dim
, map
->n
, 0);
7917 for (i
= 0; i
< map
->n
; ++i
)
7918 result
= isl_set_add_basic_set(result
,
7919 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
7928 * returns [domain -> range] -> range - domain
7930 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
7931 __isl_take isl_basic_map
*bmap
)
7935 isl_basic_map
*domain
;
7939 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
7940 bmap
->dim
, isl_dim_out
))
7941 isl_die(bmap
->ctx
, isl_error_invalid
,
7942 "domain and range don't match", goto error
);
7944 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7945 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
7947 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
7948 domain
= isl_basic_map_universe(dim
);
7950 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
7951 bmap
= isl_basic_map_apply_range(bmap
, domain
);
7952 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
7954 total
= isl_basic_map_total_dim(bmap
);
7956 for (i
= 0; i
< n
; ++i
) {
7957 k
= isl_basic_map_alloc_equality(bmap
);
7960 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
7961 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
7962 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
7963 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
7966 bmap
= isl_basic_map_gauss(bmap
, NULL
);
7967 return isl_basic_map_finalize(bmap
);
7969 isl_basic_map_free(bmap
);
7974 * returns [domain -> range] -> range - domain
7976 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
7979 isl_space
*domain_dim
;
7984 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
7985 map
->dim
, isl_dim_out
))
7986 isl_die(map
->ctx
, isl_error_invalid
,
7987 "domain and range don't match", goto error
);
7989 map
= isl_map_cow(map
);
7993 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
7994 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
7995 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
7998 for (i
= 0; i
< map
->n
; ++i
) {
7999 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
8003 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8010 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*dims
)
8012 struct isl_basic_map
*bmap
;
8020 nparam
= dims
->nparam
;
8022 bmap
= isl_basic_map_alloc_space(dims
, 0, dim
, 0);
8026 for (i
= 0; i
< dim
; ++i
) {
8027 int j
= isl_basic_map_alloc_equality(bmap
);
8030 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
8031 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
8032 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
8034 return isl_basic_map_finalize(bmap
);
8036 isl_basic_map_free(bmap
);
8040 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*dim
)
8044 if (dim
->n_in
!= dim
->n_out
)
8045 isl_die(dim
->ctx
, isl_error_invalid
,
8046 "number of input and output dimensions needs to be "
8047 "the same", goto error
);
8048 return basic_map_identity(dim
);
8050 isl_space_free(dim
);
8054 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
8056 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
8059 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
8061 isl_space
*dim
= isl_set_get_space(set
);
8063 id
= isl_map_identity(isl_space_map_from_set(dim
));
8064 return isl_map_intersect_range(id
, set
);
8067 /* Construct a basic set with all set dimensions having only non-negative
8070 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
8071 __isl_take isl_space
*space
)
8076 struct isl_basic_set
*bset
;
8080 nparam
= space
->nparam
;
8082 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
8085 for (i
= 0; i
< dim
; ++i
) {
8086 int k
= isl_basic_set_alloc_inequality(bset
);
8089 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
8090 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
8094 isl_basic_set_free(bset
);
8098 /* Construct the half-space x_pos >= 0.
8100 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*dim
,
8104 isl_basic_set
*nonneg
;
8106 nonneg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
8107 k
= isl_basic_set_alloc_inequality(nonneg
);
8110 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
8111 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
8113 return isl_basic_set_finalize(nonneg
);
8115 isl_basic_set_free(nonneg
);
8119 /* Construct the half-space x_pos <= -1.
8121 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*dim
, int pos
)
8126 neg
= isl_basic_set_alloc_space(dim
, 0, 0, 1);
8127 k
= isl_basic_set_alloc_inequality(neg
);
8130 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
8131 isl_int_set_si(neg
->ineq
[k
][0], -1);
8132 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
8134 return isl_basic_set_finalize(neg
);
8136 isl_basic_set_free(neg
);
8140 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
8141 enum isl_dim_type type
, unsigned first
, unsigned n
)
8145 isl_basic_set
*nonneg
;
8153 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
8155 offset
= pos(set
->dim
, type
);
8156 for (i
= 0; i
< n
; ++i
) {
8157 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
8158 offset
+ first
+ i
);
8159 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
8161 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
8170 static isl_stat
foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
8172 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8178 return isl_stat_error
;
8179 if (isl_set_plain_is_empty(set
)) {
8184 return fn(set
, signs
, user
);
8187 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
8189 half
= isl_set_intersect(half
, isl_set_copy(set
));
8190 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
8194 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
8196 half
= isl_set_intersect(half
, set
);
8197 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
8200 return isl_stat_error
;
8203 /* Call "fn" on the intersections of "set" with each of the orthants
8204 * (except for obviously empty intersections). The orthant is identified
8205 * by the signs array, with each entry having value 1 or -1 according
8206 * to the sign of the corresponding variable.
8208 isl_stat
isl_set_foreach_orthant(__isl_keep isl_set
*set
,
8209 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8218 return isl_stat_error
;
8219 if (isl_set_plain_is_empty(set
))
8222 nparam
= isl_set_dim(set
, isl_dim_param
);
8223 nvar
= isl_set_dim(set
, isl_dim_set
);
8225 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
8227 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
8235 isl_bool
isl_set_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8237 return isl_map_is_equal(set_to_map(set1
), set_to_map(set2
));
8240 isl_bool
isl_basic_map_is_subset(__isl_keep isl_basic_map
*bmap1
,
8241 __isl_keep isl_basic_map
*bmap2
)
8244 struct isl_map
*map1
;
8245 struct isl_map
*map2
;
8247 if (!bmap1
|| !bmap2
)
8248 return isl_bool_error
;
8250 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
8251 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
8253 is_subset
= isl_map_is_subset(map1
, map2
);
8261 isl_bool
isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
8262 __isl_keep isl_basic_set
*bset2
)
8264 return isl_basic_map_is_subset(bset1
, bset2
);
8267 isl_bool
isl_basic_map_is_equal(__isl_keep isl_basic_map
*bmap1
,
8268 __isl_keep isl_basic_map
*bmap2
)
8272 if (!bmap1
|| !bmap2
)
8273 return isl_bool_error
;
8274 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8275 if (is_subset
!= isl_bool_true
)
8277 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8281 isl_bool
isl_basic_set_is_equal(__isl_keep isl_basic_set
*bset1
,
8282 __isl_keep isl_basic_set
*bset2
)
8284 return isl_basic_map_is_equal(
8285 bset_to_bmap(bset1
), bset_to_bmap(bset2
));
8288 isl_bool
isl_map_is_empty(__isl_keep isl_map
*map
)
8294 return isl_bool_error
;
8295 for (i
= 0; i
< map
->n
; ++i
) {
8296 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
8298 return isl_bool_error
;
8300 return isl_bool_false
;
8302 return isl_bool_true
;
8305 isl_bool
isl_map_plain_is_empty(__isl_keep isl_map
*map
)
8307 return map
? map
->n
== 0 : isl_bool_error
;
8310 isl_bool
isl_set_plain_is_empty(__isl_keep isl_set
*set
)
8312 return set
? set
->n
== 0 : isl_bool_error
;
8315 isl_bool
isl_set_is_empty(__isl_keep isl_set
*set
)
8317 return isl_map_is_empty(set_to_map(set
));
8320 isl_bool
isl_map_has_equal_space(__isl_keep isl_map
*map1
,
8321 __isl_keep isl_map
*map2
)
8324 return isl_bool_error
;
8326 return isl_space_is_equal(map1
->dim
, map2
->dim
);
8329 isl_bool
isl_set_has_equal_space(__isl_keep isl_set
*set1
,
8330 __isl_keep isl_set
*set2
)
8333 return isl_bool_error
;
8335 return isl_space_is_equal(set1
->dim
, set2
->dim
);
8338 static isl_bool
map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8343 return isl_bool_error
;
8344 is_subset
= isl_map_is_subset(map1
, map2
);
8345 if (is_subset
!= isl_bool_true
)
8347 is_subset
= isl_map_is_subset(map2
, map1
);
8351 /* Is "map1" equal to "map2"?
8353 * First check if they are obviously equal.
8354 * If not, then perform a more detailed analysis.
8356 isl_bool
isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8360 equal
= isl_map_plain_is_equal(map1
, map2
);
8361 if (equal
< 0 || equal
)
8363 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
8366 isl_bool
isl_basic_map_is_strict_subset(
8367 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8371 if (!bmap1
|| !bmap2
)
8372 return isl_bool_error
;
8373 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8374 if (is_subset
!= isl_bool_true
)
8376 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8377 if (is_subset
== isl_bool_error
)
8382 isl_bool
isl_map_is_strict_subset(__isl_keep isl_map
*map1
,
8383 __isl_keep isl_map
*map2
)
8388 return isl_bool_error
;
8389 is_subset
= isl_map_is_subset(map1
, map2
);
8390 if (is_subset
!= isl_bool_true
)
8392 is_subset
= isl_map_is_subset(map2
, map1
);
8393 if (is_subset
== isl_bool_error
)
8398 isl_bool
isl_set_is_strict_subset(__isl_keep isl_set
*set1
,
8399 __isl_keep isl_set
*set2
)
8401 return isl_map_is_strict_subset(set_to_map(set1
), set_to_map(set2
));
8404 /* Is "bmap" obviously equal to the universe with the same space?
8406 * That is, does it not have any constraints?
8408 isl_bool
isl_basic_map_plain_is_universe(__isl_keep isl_basic_map
*bmap
)
8411 return isl_bool_error
;
8412 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
8415 /* Is "bset" obviously equal to the universe with the same space?
8417 isl_bool
isl_basic_set_plain_is_universe(__isl_keep isl_basic_set
*bset
)
8419 return isl_basic_map_plain_is_universe(bset
);
8422 /* If "c" does not involve any existentially quantified variables,
8423 * then set *univ to false and abort
8425 static isl_stat
involves_divs(__isl_take isl_constraint
*c
, void *user
)
8427 isl_bool
*univ
= user
;
8430 n
= isl_constraint_dim(c
, isl_dim_div
);
8431 *univ
= isl_constraint_involves_dims(c
, isl_dim_div
, 0, n
);
8432 isl_constraint_free(c
);
8433 if (*univ
< 0 || !*univ
)
8434 return isl_stat_error
;
8438 /* Is "bmap" equal to the universe with the same space?
8440 * First check if it is obviously equal to the universe.
8441 * If not and if there are any constraints not involving
8442 * existentially quantified variables, then it is certainly
8443 * not equal to the universe.
8444 * Otherwise, check if the universe is a subset of "bmap".
8446 isl_bool
isl_basic_map_is_universe(__isl_keep isl_basic_map
*bmap
)
8449 isl_basic_map
*test
;
8451 univ
= isl_basic_map_plain_is_universe(bmap
);
8452 if (univ
< 0 || univ
)
8454 if (isl_basic_map_dim(bmap
, isl_dim_div
) == 0)
8455 return isl_bool_false
;
8456 univ
= isl_bool_true
;
8457 if (isl_basic_map_foreach_constraint(bmap
, &involves_divs
, &univ
) < 0 &&
8459 return isl_bool_error
;
8460 if (univ
< 0 || !univ
)
8462 test
= isl_basic_map_universe(isl_basic_map_get_space(bmap
));
8463 univ
= isl_basic_map_is_subset(test
, bmap
);
8464 isl_basic_map_free(test
);
8468 /* Is "bset" equal to the universe with the same space?
8470 isl_bool
isl_basic_set_is_universe(__isl_keep isl_basic_set
*bset
)
8472 return isl_basic_map_is_universe(bset
);
8475 isl_bool
isl_map_plain_is_universe(__isl_keep isl_map
*map
)
8480 return isl_bool_error
;
8482 for (i
= 0; i
< map
->n
; ++i
) {
8483 isl_bool r
= isl_basic_map_plain_is_universe(map
->p
[i
]);
8488 return isl_bool_false
;
8491 isl_bool
isl_set_plain_is_universe(__isl_keep isl_set
*set
)
8493 return isl_map_plain_is_universe(set_to_map(set
));
8496 isl_bool
isl_basic_map_is_empty(__isl_keep isl_basic_map
*bmap
)
8498 struct isl_basic_set
*bset
= NULL
;
8499 struct isl_vec
*sample
= NULL
;
8500 isl_bool empty
, non_empty
;
8503 return isl_bool_error
;
8505 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
8506 return isl_bool_true
;
8508 if (isl_basic_map_plain_is_universe(bmap
))
8509 return isl_bool_false
;
8511 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
8512 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
8513 copy
= isl_basic_map_remove_redundancies(copy
);
8514 empty
= isl_basic_map_plain_is_empty(copy
);
8515 isl_basic_map_free(copy
);
8519 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
8521 return isl_bool_error
;
8523 return isl_bool_false
;
8524 isl_vec_free(bmap
->sample
);
8525 bmap
->sample
= NULL
;
8526 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
8528 return isl_bool_error
;
8529 sample
= isl_basic_set_sample_vec(bset
);
8531 return isl_bool_error
;
8532 empty
= sample
->size
== 0;
8533 isl_vec_free(bmap
->sample
);
8534 bmap
->sample
= sample
;
8536 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
8541 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
8544 return isl_bool_error
;
8545 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
8548 isl_bool
isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
8551 return isl_bool_error
;
8552 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
8555 /* Is "bmap" known to be non-empty?
8557 * That is, is the cached sample still valid?
8559 isl_bool
isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map
*bmap
)
8564 return isl_bool_error
;
8566 return isl_bool_false
;
8567 total
= 1 + isl_basic_map_total_dim(bmap
);
8568 if (bmap
->sample
->size
!= total
)
8569 return isl_bool_false
;
8570 return isl_basic_map_contains(bmap
, bmap
->sample
);
8573 isl_bool
isl_basic_set_is_empty(__isl_keep isl_basic_set
*bset
)
8575 return isl_basic_map_is_empty(bset_to_bmap(bset
));
8578 struct isl_map
*isl_basic_map_union(
8579 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8581 struct isl_map
*map
;
8582 if (!bmap1
|| !bmap2
)
8585 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
8587 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
8590 map
= isl_map_add_basic_map(map
, bmap1
);
8591 map
= isl_map_add_basic_map(map
, bmap2
);
8594 isl_basic_map_free(bmap1
);
8595 isl_basic_map_free(bmap2
);
8599 struct isl_set
*isl_basic_set_union(
8600 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
8602 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1
),
8603 bset_to_bmap(bset2
)));
8606 /* Order divs such that any div only depends on previous divs */
8607 struct isl_basic_map
*isl_basic_map_order_divs(struct isl_basic_map
*bmap
)
8615 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8617 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8619 if (isl_int_is_zero(bmap
->div
[i
][0]))
8621 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8626 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_internal
,
8627 "integer division depends on itself",
8628 return isl_basic_map_free(bmap
));
8629 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8635 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8637 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset
)));
8640 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8647 for (i
= 0; i
< map
->n
; ++i
) {
8648 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8659 /* Sort the local variables of "bset".
8661 __isl_give isl_basic_set
*isl_basic_set_sort_divs(
8662 __isl_take isl_basic_set
*bset
)
8664 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset
)));
8667 /* Apply the expansion computed by isl_merge_divs.
8668 * The expansion itself is given by "exp" while the resulting
8669 * list of divs is given by "div".
8671 * Move the integer divisions of "bmap" into the right position
8672 * according to "exp" and then introduce the additional integer
8673 * divisions, adding div constraints.
8674 * The moving should be done first to avoid moving coefficients
8675 * in the definitions of the extra integer divisions.
8677 __isl_give isl_basic_map
*isl_basic_map_expand_divs(
8678 __isl_take isl_basic_map
*bmap
, __isl_take isl_mat
*div
, int *exp
)
8683 bmap
= isl_basic_map_cow(bmap
);
8687 if (div
->n_row
< bmap
->n_div
)
8688 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8689 "not an expansion", goto error
);
8691 n_div
= bmap
->n_div
;
8692 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
8693 div
->n_row
- n_div
, 0,
8694 2 * (div
->n_row
- n_div
));
8696 for (i
= n_div
; i
< div
->n_row
; ++i
)
8697 if (isl_basic_map_alloc_div(bmap
) < 0)
8700 for (j
= n_div
- 1; j
>= 0; --j
) {
8703 isl_basic_map_swap_div(bmap
, j
, exp
[j
]);
8706 for (i
= 0; i
< div
->n_row
; ++i
) {
8707 if (j
< n_div
&& exp
[j
] == i
) {
8710 isl_seq_cpy(bmap
->div
[i
], div
->row
[i
], div
->n_col
);
8711 if (isl_basic_map_div_is_marked_unknown(bmap
, i
))
8713 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
8721 isl_basic_map_free(bmap
);
8726 /* Apply the expansion computed by isl_merge_divs.
8727 * The expansion itself is given by "exp" while the resulting
8728 * list of divs is given by "div".
8730 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8731 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8733 return isl_basic_map_expand_divs(bset
, div
, exp
);
8736 /* Look for a div in dst that corresponds to the div "div" in src.
8737 * The divs before "div" in src and dst are assumed to be the same.
8739 * Returns -1 if no corresponding div was found and the position
8740 * of the corresponding div in dst otherwise.
8742 static int find_div(__isl_keep isl_basic_map
*dst
,
8743 __isl_keep isl_basic_map
*src
, unsigned div
)
8747 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8749 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8750 for (i
= div
; i
< dst
->n_div
; ++i
)
8751 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8752 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8753 dst
->n_div
- div
) == -1)
8758 /* Align the divs of "dst" to those of "src", adding divs from "src"
8759 * if needed. That is, make sure that the first src->n_div divs
8760 * of the result are equal to those of src.
8762 * The result is not finalized as by design it will have redundant
8763 * divs if any divs from "src" were copied.
8765 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8766 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8769 int known
, extended
;
8773 return isl_basic_map_free(dst
);
8775 if (src
->n_div
== 0)
8778 known
= isl_basic_map_divs_known(src
);
8780 return isl_basic_map_free(dst
);
8782 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
8783 "some src divs are unknown",
8784 return isl_basic_map_free(dst
));
8786 src
= isl_basic_map_order_divs(src
);
8789 total
= isl_space_dim(src
->dim
, isl_dim_all
);
8790 for (i
= 0; i
< src
->n_div
; ++i
) {
8791 int j
= find_div(dst
, src
, i
);
8794 int extra
= src
->n_div
- i
;
8795 dst
= isl_basic_map_cow(dst
);
8798 dst
= isl_basic_map_extend_space(dst
,
8799 isl_space_copy(dst
->dim
),
8800 extra
, 0, 2 * extra
);
8803 j
= isl_basic_map_alloc_div(dst
);
8805 return isl_basic_map_free(dst
);
8806 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
8807 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
8808 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
8809 return isl_basic_map_free(dst
);
8812 isl_basic_map_swap_div(dst
, i
, j
);
8817 __isl_give isl_map
*isl_map_align_divs_internal(__isl_take isl_map
*map
)
8825 map
= isl_map_compute_divs(map
);
8826 map
= isl_map_cow(map
);
8830 for (i
= 1; i
< map
->n
; ++i
)
8831 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
8832 for (i
= 1; i
< map
->n
; ++i
) {
8833 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
8835 return isl_map_free(map
);
8838 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
8842 __isl_give isl_map
*isl_map_align_divs(__isl_take isl_map
*map
)
8844 return isl_map_align_divs_internal(map
);
8847 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
8849 return set_from_map(isl_map_align_divs_internal(set_to_map(set
)));
8852 /* Align the divs of the basic maps in "map" to those
8853 * of the basic maps in "list", as well as to the other basic maps in "map".
8854 * The elements in "list" are assumed to have known divs.
8856 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
8857 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
8861 map
= isl_map_compute_divs(map
);
8862 map
= isl_map_cow(map
);
8864 return isl_map_free(map
);
8868 n
= isl_basic_map_list_n_basic_map(list
);
8869 for (i
= 0; i
< n
; ++i
) {
8870 isl_basic_map
*bmap
;
8872 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
8873 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
8874 isl_basic_map_free(bmap
);
8877 return isl_map_free(map
);
8879 return isl_map_align_divs_internal(map
);
8882 /* Align the divs of each element of "list" to those of "bmap".
8883 * Both "bmap" and the elements of "list" are assumed to have known divs.
8885 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
8886 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
8891 return isl_basic_map_list_free(list
);
8893 n
= isl_basic_map_list_n_basic_map(list
);
8894 for (i
= 0; i
< n
; ++i
) {
8895 isl_basic_map
*bmap_i
;
8897 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
8898 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
8899 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
8905 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
8906 __isl_take isl_map
*map
)
8910 ok
= isl_map_compatible_domain(map
, set
);
8914 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
8915 "incompatible spaces", goto error
);
8916 map
= isl_map_intersect_domain(map
, set
);
8917 set
= isl_map_range(map
);
8925 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
8926 __isl_take isl_map
*map
)
8928 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
8931 /* There is no need to cow as removing empty parts doesn't change
8932 * the meaning of the set.
8934 struct isl_map
*isl_map_remove_empty_parts(struct isl_map
*map
)
8941 for (i
= map
->n
- 1; i
>= 0; --i
)
8942 remove_if_empty(map
, i
);
8947 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
8949 return set_from_map(isl_map_remove_empty_parts(set_to_map(set
)));
8952 /* Given two basic sets bset1 and bset2, compute the maximal difference
8953 * between the values of dimension pos in bset1 and those in bset2
8954 * for any common value of the parameters and dimensions preceding pos.
8956 static enum isl_lp_result
basic_set_maximal_difference_at(
8957 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
8958 int pos
, isl_int
*opt
)
8960 isl_basic_map
*bmap1
;
8961 isl_basic_map
*bmap2
;
8962 struct isl_ctx
*ctx
;
8963 struct isl_vec
*obj
;
8967 enum isl_lp_result res
;
8969 if (!bset1
|| !bset2
)
8970 return isl_lp_error
;
8972 nparam
= isl_basic_set_n_param(bset1
);
8973 dim1
= isl_basic_set_n_dim(bset1
);
8975 bmap1
= isl_basic_map_from_range(isl_basic_set_copy(bset1
));
8976 bmap2
= isl_basic_map_from_range(isl_basic_set_copy(bset2
));
8977 bmap1
= isl_basic_map_move_dims(bmap1
, isl_dim_in
, 0,
8978 isl_dim_out
, 0, pos
);
8979 bmap2
= isl_basic_map_move_dims(bmap2
, isl_dim_in
, 0,
8980 isl_dim_out
, 0, pos
);
8981 bmap1
= isl_basic_map_range_product(bmap1
, bmap2
);
8983 return isl_lp_error
;
8985 total
= isl_basic_map_total_dim(bmap1
);
8987 obj
= isl_vec_alloc(ctx
, 1 + total
);
8990 isl_seq_clr(obj
->block
.data
, 1 + total
);
8991 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
8992 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
8993 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
8995 isl_basic_map_free(bmap1
);
8999 isl_basic_map_free(bmap1
);
9000 return isl_lp_error
;
9003 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9004 * for any common value of the parameters and dimensions preceding pos
9005 * in both basic sets, the values of dimension pos in bset1 are
9006 * smaller or larger than those in bset2.
9009 * 1 if bset1 follows bset2
9010 * -1 if bset1 precedes bset2
9011 * 0 if bset1 and bset2 are incomparable
9012 * -2 if some error occurred.
9014 int isl_basic_set_compare_at(struct isl_basic_set
*bset1
,
9015 struct isl_basic_set
*bset2
, int pos
)
9018 enum isl_lp_result res
;
9023 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
9025 if (res
== isl_lp_empty
)
9027 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
9028 res
== isl_lp_unbounded
)
9030 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
9039 /* Given two basic sets bset1 and bset2, check whether
9040 * for any common value of the parameters and dimensions preceding pos
9041 * there is a value of dimension pos in bset1 that is larger
9042 * than a value of the same dimension in bset2.
9045 * 1 if there exists such a pair
9046 * 0 if there is no such pair, but there is a pair of equal values
9048 * -2 if some error occurred.
9050 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
9051 __isl_keep isl_basic_set
*bset2
, int pos
)
9054 enum isl_lp_result res
;
9059 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
9061 if (res
== isl_lp_empty
)
9063 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
9064 res
== isl_lp_unbounded
)
9066 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
9068 else if (res
== isl_lp_ok
)
9077 /* Given two sets set1 and set2, check whether
9078 * for any common value of the parameters and dimensions preceding pos
9079 * there is a value of dimension pos in set1 that is larger
9080 * than a value of the same dimension in set2.
9083 * 1 if there exists such a pair
9084 * 0 if there is no such pair, but there is a pair of equal values
9086 * -2 if some error occurred.
9088 int isl_set_follows_at(__isl_keep isl_set
*set1
,
9089 __isl_keep isl_set
*set2
, int pos
)
9097 for (i
= 0; i
< set1
->n
; ++i
)
9098 for (j
= 0; j
< set2
->n
; ++j
) {
9100 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
9101 if (f
== 1 || f
== -2)
9110 static isl_bool
isl_basic_map_plain_has_fixed_var(
9111 __isl_keep isl_basic_map
*bmap
, unsigned pos
, isl_int
*val
)
9118 return isl_bool_error
;
9119 total
= isl_basic_map_total_dim(bmap
);
9120 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
9121 for (; d
+1 > pos
; --d
)
9122 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
9126 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
9127 return isl_bool_false
;
9128 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
9129 return isl_bool_false
;
9130 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
9131 return isl_bool_false
;
9133 isl_int_neg(*val
, bmap
->eq
[i
][0]);
9134 return isl_bool_true
;
9136 return isl_bool_false
;
9139 static isl_bool
isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
9140 unsigned pos
, isl_int
*val
)
9148 return isl_bool_error
;
9150 return isl_bool_false
;
9152 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
9155 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
9156 for (i
= 1; fixed
== isl_bool_true
&& i
< map
->n
; ++i
) {
9157 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
9158 if (fixed
== isl_bool_true
&& isl_int_ne(tmp
, v
))
9159 fixed
= isl_bool_false
;
9162 isl_int_set(*val
, v
);
9168 static isl_bool
isl_basic_set_plain_has_fixed_var(
9169 __isl_keep isl_basic_set
*bset
, unsigned pos
, isl_int
*val
)
9171 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset
),
9175 isl_bool
isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
9176 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9178 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
9179 return isl_bool_error
;
9180 return isl_basic_map_plain_has_fixed_var(bmap
,
9181 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
9184 /* If "bmap" obviously lies on a hyperplane where the given dimension
9185 * has a fixed value, then return that value.
9186 * Otherwise return NaN.
9188 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
9189 __isl_keep isl_basic_map
*bmap
,
9190 enum isl_dim_type type
, unsigned pos
)
9198 ctx
= isl_basic_map_get_ctx(bmap
);
9199 v
= isl_val_alloc(ctx
);
9202 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
9204 return isl_val_free(v
);
9206 isl_int_set_si(v
->d
, 1);
9210 return isl_val_nan(ctx
);
9213 isl_bool
isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
9214 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9216 if (pos
>= isl_map_dim(map
, type
))
9217 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9218 "position out of bounds", return isl_bool_error
);
9219 return isl_map_plain_has_fixed_var(map
,
9220 map_offset(map
, type
) - 1 + pos
, val
);
9223 /* If "map" obviously lies on a hyperplane where the given dimension
9224 * has a fixed value, then return that value.
9225 * Otherwise return NaN.
9227 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
9228 enum isl_dim_type type
, unsigned pos
)
9236 ctx
= isl_map_get_ctx(map
);
9237 v
= isl_val_alloc(ctx
);
9240 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
9242 return isl_val_free(v
);
9244 isl_int_set_si(v
->d
, 1);
9248 return isl_val_nan(ctx
);
9251 /* If "set" obviously lies on a hyperplane where the given dimension
9252 * has a fixed value, then return that value.
9253 * Otherwise return NaN.
9255 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
9256 enum isl_dim_type type
, unsigned pos
)
9258 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
9261 isl_bool
isl_set_plain_is_fixed(__isl_keep isl_set
*set
,
9262 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9264 return isl_map_plain_is_fixed(set
, type
, pos
, val
);
9267 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9268 * then return this fixed value in *val.
9270 isl_bool
isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
9271 unsigned dim
, isl_int
*val
)
9273 return isl_basic_set_plain_has_fixed_var(bset
,
9274 isl_basic_set_n_param(bset
) + dim
, val
);
9277 /* Return -1 if the constraint "c1" should be sorted before "c2"
9278 * and 1 if it should be sorted after "c2".
9279 * Return 0 if the two constraints are the same (up to the constant term).
9281 * In particular, if a constraint involves later variables than another
9282 * then it is sorted after this other constraint.
9283 * uset_gist depends on constraints without existentially quantified
9284 * variables sorting first.
9286 * For constraints that have the same latest variable, those
9287 * with the same coefficient for this latest variable (first in absolute value
9288 * and then in actual value) are grouped together.
9289 * This is useful for detecting pairs of constraints that can
9290 * be chained in their printed representation.
9292 * Finally, within a group, constraints are sorted according to
9293 * their coefficients (excluding the constant term).
9295 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
9297 isl_int
**c1
= (isl_int
**) p1
;
9298 isl_int
**c2
= (isl_int
**) p2
;
9300 unsigned size
= *(unsigned *) arg
;
9303 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
9304 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
9309 cmp
= isl_int_abs_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9312 cmp
= isl_int_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9316 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
9319 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9320 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9321 * and 0 if the two constraints are the same (up to the constant term).
9323 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map
*bmap
,
9324 isl_int
*c1
, isl_int
*c2
)
9330 total
= isl_basic_map_total_dim(bmap
);
9331 return sort_constraint_cmp(&c1
, &c2
, &total
);
9334 __isl_give isl_basic_map
*isl_basic_map_sort_constraints(
9335 __isl_take isl_basic_map
*bmap
)
9341 if (bmap
->n_ineq
== 0)
9343 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9345 total
= isl_basic_map_total_dim(bmap
);
9346 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
9347 &sort_constraint_cmp
, &total
) < 0)
9348 return isl_basic_map_free(bmap
);
9352 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
9353 __isl_take isl_basic_set
*bset
)
9355 isl_basic_map
*bmap
= bset_to_bmap(bset
);
9356 return bset_from_bmap(isl_basic_map_sort_constraints(bmap
));
9359 struct isl_basic_map
*isl_basic_map_normalize(struct isl_basic_map
*bmap
)
9363 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_NORMALIZED
))
9365 bmap
= isl_basic_map_remove_redundancies(bmap
);
9366 bmap
= isl_basic_map_sort_constraints(bmap
);
9368 ISL_F_SET(bmap
, ISL_BASIC_MAP_NORMALIZED
);
9371 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map
*bmap1
,
9372 __isl_keep isl_basic_map
*bmap2
)
9376 isl_space
*space1
, *space2
;
9378 if (!bmap1
|| !bmap2
)
9383 space1
= isl_basic_map_peek_space(bmap1
);
9384 space2
= isl_basic_map_peek_space(bmap2
);
9385 cmp
= isl_space_cmp(space1
, space2
);
9388 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
9389 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
9390 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
9391 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
9392 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9394 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
9396 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9398 if (bmap1
->n_eq
!= bmap2
->n_eq
)
9399 return bmap1
->n_eq
- bmap2
->n_eq
;
9400 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
9401 return bmap1
->n_ineq
- bmap2
->n_ineq
;
9402 if (bmap1
->n_div
!= bmap2
->n_div
)
9403 return bmap1
->n_div
- bmap2
->n_div
;
9404 total
= isl_basic_map_total_dim(bmap1
);
9405 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
9406 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
9410 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
9411 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
9415 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
9416 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
9423 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set
*bset1
,
9424 __isl_keep isl_basic_set
*bset2
)
9426 return isl_basic_map_plain_cmp(bset1
, bset2
);
9429 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9435 if (set1
->n
!= set2
->n
)
9436 return set1
->n
- set2
->n
;
9438 for (i
= 0; i
< set1
->n
; ++i
) {
9439 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
9447 isl_bool
isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
9448 __isl_keep isl_basic_map
*bmap2
)
9450 if (!bmap1
|| !bmap2
)
9451 return isl_bool_error
;
9452 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
9455 isl_bool
isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
9456 __isl_keep isl_basic_set
*bset2
)
9458 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1
),
9459 bset_to_bmap(bset2
));
9462 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
9464 isl_basic_map
*bmap1
= *(isl_basic_map
**) p1
;
9465 isl_basic_map
*bmap2
= *(isl_basic_map
**) p2
;
9467 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
9470 /* Sort the basic maps of "map" and remove duplicate basic maps.
9472 * While removing basic maps, we make sure that the basic maps remain
9473 * sorted because isl_map_normalize expects the basic maps of the result
9476 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
9480 map
= isl_map_remove_empty_parts(map
);
9483 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
9484 for (i
= map
->n
- 1; i
>= 1; --i
) {
9485 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
9487 isl_basic_map_free(map
->p
[i
-1]);
9488 for (j
= i
; j
< map
->n
; ++j
)
9489 map
->p
[j
- 1] = map
->p
[j
];
9496 /* Remove obvious duplicates among the basic maps of "map".
9498 * Unlike isl_map_normalize, this function does not remove redundant
9499 * constraints and only removes duplicates that have exactly the same
9500 * constraints in the input. It does sort the constraints and
9501 * the basic maps to ease the detection of duplicates.
9503 * If "map" has already been normalized or if the basic maps are
9504 * disjoint, then there can be no duplicates.
9506 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
9509 isl_basic_map
*bmap
;
9515 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
9517 for (i
= 0; i
< map
->n
; ++i
) {
9518 bmap
= isl_basic_map_copy(map
->p
[i
]);
9519 bmap
= isl_basic_map_sort_constraints(bmap
);
9521 return isl_map_free(map
);
9522 isl_basic_map_free(map
->p
[i
]);
9526 map
= sort_and_remove_duplicates(map
);
9530 /* We normalize in place, but if anything goes wrong we need
9531 * to return NULL, so we need to make sure we don't change the
9532 * meaning of any possible other copies of map.
9534 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9537 struct isl_basic_map
*bmap
;
9541 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9543 for (i
= 0; i
< map
->n
; ++i
) {
9544 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9547 isl_basic_map_free(map
->p
[i
]);
9551 map
= sort_and_remove_duplicates(map
);
9553 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9560 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9562 return set_from_map(isl_map_normalize(set_to_map(set
)));
9565 isl_bool
isl_map_plain_is_equal(__isl_keep isl_map
*map1
,
9566 __isl_keep isl_map
*map2
)
9572 return isl_bool_error
;
9575 return isl_bool_true
;
9576 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9577 return isl_bool_false
;
9579 map1
= isl_map_copy(map1
);
9580 map2
= isl_map_copy(map2
);
9581 map1
= isl_map_normalize(map1
);
9582 map2
= isl_map_normalize(map2
);
9585 equal
= map1
->n
== map2
->n
;
9586 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9587 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9597 return isl_bool_error
;
9600 isl_bool
isl_set_plain_is_equal(__isl_keep isl_set
*set1
,
9601 __isl_keep isl_set
*set2
)
9603 return isl_map_plain_is_equal(set_to_map(set1
), set_to_map(set2
));
9606 /* Return the basic maps in "map" as a list.
9608 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9609 __isl_keep isl_map
*map
)
9613 isl_basic_map_list
*list
;
9617 ctx
= isl_map_get_ctx(map
);
9618 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9620 for (i
= 0; i
< map
->n
; ++i
) {
9621 isl_basic_map
*bmap
;
9623 bmap
= isl_basic_map_copy(map
->p
[i
]);
9624 list
= isl_basic_map_list_add(list
, bmap
);
9630 /* Return the intersection of the elements in the non-empty list "list".
9631 * All elements are assumed to live in the same space.
9633 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9634 __isl_take isl_basic_map_list
*list
)
9637 isl_basic_map
*bmap
;
9641 n
= isl_basic_map_list_n_basic_map(list
);
9643 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9644 "expecting non-empty list", goto error
);
9646 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9647 for (i
= 1; i
< n
; ++i
) {
9648 isl_basic_map
*bmap_i
;
9650 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9651 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9654 isl_basic_map_list_free(list
);
9657 isl_basic_map_list_free(list
);
9661 /* Return the intersection of the elements in the non-empty list "list".
9662 * All elements are assumed to live in the same space.
9664 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9665 __isl_take isl_basic_set_list
*list
)
9667 return isl_basic_map_list_intersect(list
);
9670 /* Return the union of the elements of "list".
9671 * The list is required to have at least one element.
9673 __isl_give isl_set
*isl_basic_set_list_union(
9674 __isl_take isl_basic_set_list
*list
)
9678 isl_basic_set
*bset
;
9683 n
= isl_basic_set_list_n_basic_set(list
);
9685 isl_die(isl_basic_set_list_get_ctx(list
), isl_error_invalid
,
9686 "expecting non-empty list", goto error
);
9688 bset
= isl_basic_set_list_get_basic_set(list
, 0);
9689 space
= isl_basic_set_get_space(bset
);
9690 isl_basic_set_free(bset
);
9692 set
= isl_set_alloc_space(space
, n
, 0);
9693 for (i
= 0; i
< n
; ++i
) {
9694 bset
= isl_basic_set_list_get_basic_set(list
, i
);
9695 set
= isl_set_add_basic_set(set
, bset
);
9698 isl_basic_set_list_free(list
);
9701 isl_basic_set_list_free(list
);
9705 /* Return the union of the elements in the non-empty list "list".
9706 * All elements are assumed to live in the same space.
9708 __isl_give isl_set
*isl_set_list_union(__isl_take isl_set_list
*list
)
9715 n
= isl_set_list_n_set(list
);
9717 isl_die(isl_set_list_get_ctx(list
), isl_error_invalid
,
9718 "expecting non-empty list", goto error
);
9720 set
= isl_set_list_get_set(list
, 0);
9721 for (i
= 1; i
< n
; ++i
) {
9724 set_i
= isl_set_list_get_set(list
, i
);
9725 set
= isl_set_union(set
, set_i
);
9728 isl_set_list_free(list
);
9731 isl_set_list_free(list
);
9735 struct isl_basic_map
*isl_basic_map_product(
9736 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
9738 isl_space
*dim_result
= NULL
;
9739 struct isl_basic_map
*bmap
;
9740 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9741 struct isl_dim_map
*dim_map1
, *dim_map2
;
9743 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
9745 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9746 isl_space_copy(bmap2
->dim
));
9748 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9749 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9750 out1
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9751 out2
= isl_basic_map_dim(bmap2
, isl_dim_out
);
9752 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9754 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9755 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9756 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9757 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9758 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9759 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9760 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9761 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9762 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9763 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9764 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9766 bmap
= isl_basic_map_alloc_space(dim_result
,
9767 bmap1
->n_div
+ bmap2
->n_div
,
9768 bmap1
->n_eq
+ bmap2
->n_eq
,
9769 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9770 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9771 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9772 bmap
= isl_basic_map_simplify(bmap
);
9773 return isl_basic_map_finalize(bmap
);
9775 isl_basic_map_free(bmap1
);
9776 isl_basic_map_free(bmap2
);
9780 __isl_give isl_basic_map
*isl_basic_map_flat_product(
9781 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9783 isl_basic_map
*prod
;
9785 prod
= isl_basic_map_product(bmap1
, bmap2
);
9786 prod
= isl_basic_map_flatten(prod
);
9790 __isl_give isl_basic_set
*isl_basic_set_flat_product(
9791 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
9793 return isl_basic_map_flat_range_product(bset1
, bset2
);
9796 __isl_give isl_basic_map
*isl_basic_map_domain_product(
9797 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9799 isl_space
*space_result
= NULL
;
9800 isl_basic_map
*bmap
;
9801 unsigned in1
, in2
, out
, nparam
, total
, pos
;
9802 struct isl_dim_map
*dim_map1
, *dim_map2
;
9804 if (!bmap1
|| !bmap2
)
9807 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
9808 isl_space_copy(bmap2
->dim
));
9810 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9811 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9812 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9813 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9815 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
9816 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9817 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9818 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9819 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9820 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9821 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
9822 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
9823 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
9824 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
9825 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9827 bmap
= isl_basic_map_alloc_space(space_result
,
9828 bmap1
->n_div
+ bmap2
->n_div
,
9829 bmap1
->n_eq
+ bmap2
->n_eq
,
9830 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9831 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9832 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9833 bmap
= isl_basic_map_simplify(bmap
);
9834 return isl_basic_map_finalize(bmap
);
9836 isl_basic_map_free(bmap1
);
9837 isl_basic_map_free(bmap2
);
9841 __isl_give isl_basic_map
*isl_basic_map_range_product(
9842 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9845 isl_space
*dim_result
= NULL
;
9846 isl_basic_map
*bmap
;
9847 unsigned in
, out1
, out2
, nparam
, total
, pos
;
9848 struct isl_dim_map
*dim_map1
, *dim_map2
;
9850 rational
= isl_basic_map_is_rational(bmap1
);
9851 if (rational
>= 0 && rational
)
9852 rational
= isl_basic_map_is_rational(bmap2
);
9853 if (!bmap1
|| !bmap2
|| rational
< 0)
9856 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
9859 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
9860 isl_space_copy(bmap2
->dim
));
9862 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9863 out1
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9864 out2
= isl_basic_map_dim(bmap2
, isl_dim_out
);
9865 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9867 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9868 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9869 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9870 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9871 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9872 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9873 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
9874 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
9875 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
9876 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
9877 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
9879 bmap
= isl_basic_map_alloc_space(dim_result
,
9880 bmap1
->n_div
+ bmap2
->n_div
,
9881 bmap1
->n_eq
+ bmap2
->n_eq
,
9882 bmap1
->n_ineq
+ bmap2
->n_ineq
);
9883 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
9884 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
9886 bmap
= isl_basic_map_set_rational(bmap
);
9887 bmap
= isl_basic_map_simplify(bmap
);
9888 return isl_basic_map_finalize(bmap
);
9890 isl_basic_map_free(bmap1
);
9891 isl_basic_map_free(bmap2
);
9895 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
9896 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9898 isl_basic_map
*prod
;
9900 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
9901 prod
= isl_basic_map_flatten_range(prod
);
9905 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
9906 * and collect the results.
9907 * The result live in the space obtained by calling "space_product"
9908 * on the spaces of "map1" and "map2".
9909 * If "remove_duplicates" is set then the result may contain duplicates
9910 * (even if the inputs do not) and so we try and remove the obvious
9913 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
9914 __isl_take isl_map
*map2
,
9915 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
9916 __isl_take isl_space
*right
),
9917 __isl_give isl_basic_map
*(*basic_map_product
)(
9918 __isl_take isl_basic_map
*left
,
9919 __isl_take isl_basic_map
*right
),
9920 int remove_duplicates
)
9923 struct isl_map
*result
;
9927 m
= isl_map_has_equal_params(map1
, map2
);
9931 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
9932 "parameters don't match", goto error
);
9934 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
9935 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
9936 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
9938 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
9939 isl_space_copy(map2
->dim
)),
9940 map1
->n
* map2
->n
, flags
);
9943 for (i
= 0; i
< map1
->n
; ++i
)
9944 for (j
= 0; j
< map2
->n
; ++j
) {
9945 struct isl_basic_map
*part
;
9946 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
9947 isl_basic_map_copy(map2
->p
[j
]));
9948 if (isl_basic_map_is_empty(part
))
9949 isl_basic_map_free(part
);
9951 result
= isl_map_add_basic_map(result
, part
);
9955 if (remove_duplicates
)
9956 result
= isl_map_remove_obvious_duplicates(result
);
9966 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
9968 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
9969 __isl_take isl_map
*map2
)
9971 return map_product(map1
, map2
, &isl_space_product
,
9972 &isl_basic_map_product
, 0);
9975 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
9976 __isl_take isl_map
*map2
)
9978 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
9981 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
9983 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
9984 __isl_take isl_map
*map2
)
9988 prod
= isl_map_product(map1
, map2
);
9989 prod
= isl_map_flatten(prod
);
9993 /* Given two set A and B, construct its Cartesian product A x B.
9995 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
9997 return isl_map_range_product(set1
, set2
);
10000 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
10001 __isl_take isl_set
*set2
)
10003 return isl_map_flat_range_product(set1
, set2
);
10006 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10008 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
10009 __isl_take isl_map
*map2
)
10011 return map_product(map1
, map2
, &isl_space_domain_product
,
10012 &isl_basic_map_domain_product
, 1);
10015 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10017 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
10018 __isl_take isl_map
*map2
)
10020 return map_product(map1
, map2
, &isl_space_range_product
,
10021 &isl_basic_map_range_product
, 1);
10024 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
10025 __isl_take isl_map
*map2
)
10027 return isl_map_align_params_map_map_and(map1
, map2
,
10028 &map_domain_product_aligned
);
10031 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
10032 __isl_take isl_map
*map2
)
10034 return isl_map_align_params_map_map_and(map1
, map2
,
10035 &map_range_product_aligned
);
10038 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10040 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
10043 int total1
, keep1
, total2
, keep2
;
10047 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10048 !isl_space_range_is_wrapping(map
->dim
))
10049 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10050 "not a product", return isl_map_free(map
));
10052 space
= isl_map_get_space(map
);
10053 total1
= isl_space_dim(space
, isl_dim_in
);
10054 total2
= isl_space_dim(space
, isl_dim_out
);
10055 space
= isl_space_factor_domain(space
);
10056 keep1
= isl_space_dim(space
, isl_dim_in
);
10057 keep2
= isl_space_dim(space
, isl_dim_out
);
10058 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
10059 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
10060 map
= isl_map_reset_space(map
, space
);
10065 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10067 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
10070 int total1
, keep1
, total2
, keep2
;
10074 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10075 !isl_space_range_is_wrapping(map
->dim
))
10076 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10077 "not a product", return isl_map_free(map
));
10079 space
= isl_map_get_space(map
);
10080 total1
= isl_space_dim(space
, isl_dim_in
);
10081 total2
= isl_space_dim(space
, isl_dim_out
);
10082 space
= isl_space_factor_range(space
);
10083 keep1
= isl_space_dim(space
, isl_dim_in
);
10084 keep2
= isl_space_dim(space
, isl_dim_out
);
10085 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
10086 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
10087 map
= isl_map_reset_space(map
, space
);
10092 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10094 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
10101 if (!isl_space_domain_is_wrapping(map
->dim
))
10102 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10103 "domain is not a product", return isl_map_free(map
));
10105 space
= isl_map_get_space(map
);
10106 total
= isl_space_dim(space
, isl_dim_in
);
10107 space
= isl_space_domain_factor_domain(space
);
10108 keep
= isl_space_dim(space
, isl_dim_in
);
10109 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
10110 map
= isl_map_reset_space(map
, space
);
10115 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10117 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
10124 if (!isl_space_domain_is_wrapping(map
->dim
))
10125 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10126 "domain is not a product", return isl_map_free(map
));
10128 space
= isl_map_get_space(map
);
10129 total
= isl_space_dim(space
, isl_dim_in
);
10130 space
= isl_space_domain_factor_range(space
);
10131 keep
= isl_space_dim(space
, isl_dim_in
);
10132 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
10133 map
= isl_map_reset_space(map
, space
);
10138 /* Given a map A -> [B -> C], extract the map A -> B.
10140 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
10147 if (!isl_space_range_is_wrapping(map
->dim
))
10148 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10149 "range is not a product", return isl_map_free(map
));
10151 space
= isl_map_get_space(map
);
10152 total
= isl_space_dim(space
, isl_dim_out
);
10153 space
= isl_space_range_factor_domain(space
);
10154 keep
= isl_space_dim(space
, isl_dim_out
);
10155 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
10156 map
= isl_map_reset_space(map
, space
);
10161 /* Given a map A -> [B -> C], extract the map A -> C.
10163 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
10170 if (!isl_space_range_is_wrapping(map
->dim
))
10171 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10172 "range is not a product", return isl_map_free(map
));
10174 space
= isl_map_get_space(map
);
10175 total
= isl_space_dim(space
, isl_dim_out
);
10176 space
= isl_space_range_factor_range(space
);
10177 keep
= isl_space_dim(space
, isl_dim_out
);
10178 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
10179 map
= isl_map_reset_space(map
, space
);
10184 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10186 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
10187 __isl_take isl_map
*map2
)
10191 prod
= isl_map_domain_product(map1
, map2
);
10192 prod
= isl_map_flatten_domain(prod
);
10196 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10198 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
10199 __isl_take isl_map
*map2
)
10203 prod
= isl_map_range_product(map1
, map2
);
10204 prod
= isl_map_flatten_range(prod
);
10208 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
10211 uint32_t hash
= isl_hash_init();
10216 bmap
= isl_basic_map_copy(bmap
);
10217 bmap
= isl_basic_map_normalize(bmap
);
10220 total
= isl_basic_map_total_dim(bmap
);
10221 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
10222 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
10224 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
10225 isl_hash_hash(hash
, c_hash
);
10227 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
10228 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10230 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
10231 isl_hash_hash(hash
, c_hash
);
10233 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
10234 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10236 if (isl_int_is_zero(bmap
->div
[i
][0]))
10238 isl_hash_byte(hash
, i
& 0xFF);
10239 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
10240 isl_hash_hash(hash
, c_hash
);
10242 isl_basic_map_free(bmap
);
10246 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
10248 return isl_basic_map_get_hash(bset_to_bmap(bset
));
10251 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
10258 map
= isl_map_copy(map
);
10259 map
= isl_map_normalize(map
);
10263 hash
= isl_hash_init();
10264 for (i
= 0; i
< map
->n
; ++i
) {
10265 uint32_t bmap_hash
;
10266 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
10267 isl_hash_hash(hash
, bmap_hash
);
10275 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
10277 return isl_map_get_hash(set_to_map(set
));
10280 /* Return the number of basic maps in the (current) representation of "map".
10282 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
10284 return map
? map
->n
: 0;
10287 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
10289 return set
? set
->n
: 0;
10292 isl_stat
isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
10293 isl_stat (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
10298 return isl_stat_error
;
10300 for (i
= 0; i
< map
->n
; ++i
)
10301 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
10302 return isl_stat_error
;
10304 return isl_stat_ok
;
10307 isl_stat
isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
10308 isl_stat (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
10313 return isl_stat_error
;
10315 for (i
= 0; i
< set
->n
; ++i
)
10316 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
10317 return isl_stat_error
;
10319 return isl_stat_ok
;
10322 /* Return a list of basic sets, the union of which is equal to "set".
10324 __isl_give isl_basic_set_list
*isl_set_get_basic_set_list(
10325 __isl_keep isl_set
*set
)
10328 isl_basic_set_list
*list
;
10333 list
= isl_basic_set_list_alloc(isl_set_get_ctx(set
), set
->n
);
10334 for (i
= 0; i
< set
->n
; ++i
) {
10335 isl_basic_set
*bset
;
10337 bset
= isl_basic_set_copy(set
->p
[i
]);
10338 list
= isl_basic_set_list_add(list
, bset
);
10344 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
10351 bset
= isl_basic_set_cow(bset
);
10355 dim
= isl_basic_set_get_space(bset
);
10356 dim
= isl_space_lift(dim
, bset
->n_div
);
10359 isl_space_free(bset
->dim
);
10361 bset
->extra
-= bset
->n_div
;
10364 bset
= isl_basic_set_finalize(bset
);
10368 isl_basic_set_free(bset
);
10372 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
10378 set
= set_from_map(isl_map_align_divs_internal(set_to_map(set
)));
10383 set
= isl_set_cow(set
);
10387 n_div
= set
->p
[0]->n_div
;
10388 dim
= isl_set_get_space(set
);
10389 dim
= isl_space_lift(dim
, n_div
);
10392 isl_space_free(set
->dim
);
10395 for (i
= 0; i
< set
->n
; ++i
) {
10396 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
10407 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10415 dim
= isl_basic_set_total_dim(bset
);
10416 size
+= bset
->n_eq
* (1 + dim
);
10417 size
+= bset
->n_ineq
* (1 + dim
);
10418 size
+= bset
->n_div
* (2 + dim
);
10423 int isl_set_size(__isl_keep isl_set
*set
)
10431 for (i
= 0; i
< set
->n
; ++i
)
10432 size
+= isl_basic_set_size(set
->p
[i
]);
10437 /* Check if there is any lower bound (if lower == 0) and/or upper
10438 * bound (if upper == 0) on the specified dim.
10440 static isl_bool
basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10441 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10445 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
10446 return isl_bool_error
;
10448 pos
+= isl_basic_map_offset(bmap
, type
);
10450 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10451 if (isl_int_is_zero(bmap
->div
[i
][0]))
10453 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10454 return isl_bool_true
;
10457 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10458 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10459 return isl_bool_true
;
10461 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10462 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10469 return lower
&& upper
;
10472 isl_bool
isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10473 enum isl_dim_type type
, unsigned pos
)
10475 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10478 isl_bool
isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10479 enum isl_dim_type type
, unsigned pos
)
10481 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10484 isl_bool
isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10485 enum isl_dim_type type
, unsigned pos
)
10487 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10490 isl_bool
isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10491 enum isl_dim_type type
, unsigned pos
)
10496 return isl_bool_error
;
10498 for (i
= 0; i
< map
->n
; ++i
) {
10500 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10501 if (bounded
< 0 || !bounded
)
10505 return isl_bool_true
;
10508 /* Return true if the specified dim is involved in both an upper bound
10509 * and a lower bound.
10511 isl_bool
isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10512 enum isl_dim_type type
, unsigned pos
)
10514 return isl_map_dim_is_bounded(set_to_map(set
), type
, pos
);
10517 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10519 static isl_bool
has_any_bound(__isl_keep isl_map
*map
,
10520 enum isl_dim_type type
, unsigned pos
,
10521 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10522 enum isl_dim_type type
, unsigned pos
))
10527 return isl_bool_error
;
10529 for (i
= 0; i
< map
->n
; ++i
) {
10531 bounded
= fn(map
->p
[i
], type
, pos
);
10532 if (bounded
< 0 || bounded
)
10536 return isl_bool_false
;
10539 /* Return 1 if the specified dim is involved in any lower bound.
10541 isl_bool
isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10542 enum isl_dim_type type
, unsigned pos
)
10544 return has_any_bound(set
, type
, pos
,
10545 &isl_basic_map_dim_has_lower_bound
);
10548 /* Return 1 if the specified dim is involved in any upper bound.
10550 isl_bool
isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10551 enum isl_dim_type type
, unsigned pos
)
10553 return has_any_bound(set
, type
, pos
,
10554 &isl_basic_map_dim_has_upper_bound
);
10557 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10559 static isl_bool
has_bound(__isl_keep isl_map
*map
,
10560 enum isl_dim_type type
, unsigned pos
,
10561 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10562 enum isl_dim_type type
, unsigned pos
))
10567 return isl_bool_error
;
10569 for (i
= 0; i
< map
->n
; ++i
) {
10571 bounded
= fn(map
->p
[i
], type
, pos
);
10572 if (bounded
< 0 || !bounded
)
10576 return isl_bool_true
;
10579 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10581 isl_bool
isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10582 enum isl_dim_type type
, unsigned pos
)
10584 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10587 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10589 isl_bool
isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10590 enum isl_dim_type type
, unsigned pos
)
10592 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10595 /* For each of the "n" variables starting at "first", determine
10596 * the sign of the variable and put the results in the first "n"
10597 * elements of the array "signs".
10599 * 1 means that the variable is non-negative
10600 * -1 means that the variable is non-positive
10601 * 0 means the variable attains both positive and negative values.
10603 isl_stat
isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10604 unsigned first
, unsigned n
, int *signs
)
10606 isl_vec
*bound
= NULL
;
10607 struct isl_tab
*tab
= NULL
;
10608 struct isl_tab_undo
*snap
;
10611 if (!bset
|| !signs
)
10612 return isl_stat_error
;
10614 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10615 tab
= isl_tab_from_basic_set(bset
, 0);
10616 if (!bound
|| !tab
)
10619 isl_seq_clr(bound
->el
, bound
->size
);
10620 isl_int_set_si(bound
->el
[0], -1);
10622 snap
= isl_tab_snap(tab
);
10623 for (i
= 0; i
< n
; ++i
) {
10626 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10627 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10629 empty
= tab
->empty
;
10630 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10631 if (isl_tab_rollback(tab
, snap
) < 0)
10639 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10640 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10642 empty
= tab
->empty
;
10643 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10644 if (isl_tab_rollback(tab
, snap
) < 0)
10647 signs
[i
] = empty
? -1 : 0;
10651 isl_vec_free(bound
);
10652 return isl_stat_ok
;
10655 isl_vec_free(bound
);
10656 return isl_stat_error
;
10659 isl_stat
isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10660 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10662 if (!bset
|| !signs
)
10663 return isl_stat_error
;
10664 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10665 return isl_stat_error
);
10667 first
+= pos(bset
->dim
, type
) - 1;
10668 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10671 /* Is it possible for the integer division "div" to depend (possibly
10672 * indirectly) on any output dimensions?
10674 * If the div is undefined, then we conservatively assume that it
10675 * may depend on them.
10676 * Otherwise, we check if it actually depends on them or on any integer
10677 * divisions that may depend on them.
10679 static isl_bool
div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10682 unsigned n_out
, o_out
;
10683 unsigned n_div
, o_div
;
10685 if (isl_int_is_zero(bmap
->div
[div
][0]))
10686 return isl_bool_true
;
10688 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10689 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10691 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10692 return isl_bool_true
;
10694 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10695 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10697 for (i
= 0; i
< n_div
; ++i
) {
10698 isl_bool may_involve
;
10700 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10702 may_involve
= div_may_involve_output(bmap
, i
);
10703 if (may_involve
< 0 || may_involve
)
10704 return may_involve
;
10707 return isl_bool_false
;
10710 /* Return the first integer division of "bmap" in the range
10711 * [first, first + n[ that may depend on any output dimensions and
10712 * that has a non-zero coefficient in "c" (where the first coefficient
10713 * in "c" corresponds to integer division "first").
10715 static int first_div_may_involve_output(__isl_keep isl_basic_map
*bmap
,
10716 isl_int
*c
, int first
, int n
)
10723 for (k
= first
; k
< first
+ n
; ++k
) {
10724 isl_bool may_involve
;
10726 if (isl_int_is_zero(c
[k
]))
10728 may_involve
= div_may_involve_output(bmap
, k
);
10729 if (may_involve
< 0)
10738 /* Look for a pair of inequality constraints in "bmap" of the form
10740 * -l + i >= 0 or i >= l
10742 * n + l - i >= 0 or i <= l + n
10744 * with n < "m" and i the output dimension at position "pos".
10745 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10746 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10747 * and earlier output dimensions, as well as integer divisions that do
10748 * not involve any of the output dimensions.
10750 * Return the index of the first inequality constraint or bmap->n_ineq
10751 * if no such pair can be found.
10753 static int find_modulo_constraint_pair(__isl_keep isl_basic_map
*bmap
,
10754 int pos
, isl_int m
)
10759 unsigned n_div
, o_div
;
10760 unsigned n_out
, o_out
;
10766 ctx
= isl_basic_map_get_ctx(bmap
);
10767 total
= isl_basic_map_total_dim(bmap
);
10768 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10769 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10770 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10771 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10772 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10773 if (!isl_int_abs_eq(bmap
->ineq
[i
][o_out
+ pos
], ctx
->one
))
10775 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + o_out
+ pos
+ 1,
10776 n_out
- (pos
+ 1)) != -1)
10778 if (first_div_may_involve_output(bmap
, bmap
->ineq
[i
] + o_div
,
10781 for (j
= i
+ 1; j
< bmap
->n_ineq
; ++j
) {
10782 if (!isl_int_abs_eq(bmap
->ineq
[j
][o_out
+ pos
],
10785 if (!isl_seq_is_neg(bmap
->ineq
[i
] + 1,
10786 bmap
->ineq
[j
] + 1, total
))
10790 if (j
>= bmap
->n_ineq
)
10792 isl_int_add(bmap
->ineq
[i
][0],
10793 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10794 less
= isl_int_abs_lt(bmap
->ineq
[i
][0], m
);
10795 isl_int_sub(bmap
->ineq
[i
][0],
10796 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
10799 if (isl_int_is_one(bmap
->ineq
[i
][o_out
+ pos
]))
10805 return bmap
->n_ineq
;
10808 /* Return the index of the equality of "bmap" that defines
10809 * the output dimension "pos" in terms of earlier dimensions.
10810 * The equality may also involve integer divisions, as long
10811 * as those integer divisions are defined in terms of
10812 * parameters or input dimensions.
10813 * In this case, *div is set to the number of integer divisions and
10814 * *ineq is set to the number of inequality constraints (provided
10815 * div and ineq are not NULL).
10817 * The equality may also involve a single integer division involving
10818 * the output dimensions (typically only output dimension "pos") as
10819 * long as the coefficient of output dimension "pos" is 1 or -1 and
10820 * there is a pair of constraints i >= l and i <= l + n, with i referring
10821 * to output dimension "pos", l an expression involving only earlier
10822 * dimensions and n smaller than the coefficient of the integer division
10823 * in the equality. In this case, the output dimension can be defined
10824 * in terms of a modulo expression that does not involve the integer division.
10825 * *div is then set to this single integer division and
10826 * *ineq is set to the index of constraint i >= l.
10828 * Return bmap->n_eq if there is no such equality.
10829 * Return -1 on error.
10831 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
10832 int pos
, int *div
, int *ineq
)
10835 unsigned n_out
, o_out
;
10836 unsigned n_div
, o_div
;
10841 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10842 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10843 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10844 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10847 *ineq
= bmap
->n_ineq
;
10850 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
10851 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
10853 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
10854 n_out
- (pos
+ 1)) != -1)
10856 k
= first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
10860 if (!isl_int_is_one(bmap
->eq
[j
][o_out
+ pos
]) &&
10861 !isl_int_is_negone(bmap
->eq
[j
][o_out
+ pos
]))
10863 if (first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
10864 k
+ 1, n_div
- (k
+1)) < n_div
)
10866 l
= find_modulo_constraint_pair(bmap
, pos
,
10867 bmap
->eq
[j
][o_div
+ k
]);
10870 if (l
>= bmap
->n_ineq
)
10882 /* Check if the given basic map is obviously single-valued.
10883 * In particular, for each output dimension, check that there is
10884 * an equality that defines the output dimension in terms of
10885 * earlier dimensions.
10887 isl_bool
isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10893 return isl_bool_error
;
10895 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10897 for (i
= 0; i
< n_out
; ++i
) {
10900 eq
= isl_basic_map_output_defining_equality(bmap
, i
,
10903 return isl_bool_error
;
10904 if (eq
>= bmap
->n_eq
)
10905 return isl_bool_false
;
10908 return isl_bool_true
;
10911 /* Check if the given basic map is single-valued.
10912 * We simply compute
10916 * and check if the result is a subset of the identity mapping.
10918 isl_bool
isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
10921 isl_basic_map
*test
;
10925 sv
= isl_basic_map_plain_is_single_valued(bmap
);
10929 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
10930 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
10932 space
= isl_basic_map_get_space(bmap
);
10933 space
= isl_space_map_from_set(isl_space_range(space
));
10934 id
= isl_basic_map_identity(space
);
10936 sv
= isl_basic_map_is_subset(test
, id
);
10938 isl_basic_map_free(test
);
10939 isl_basic_map_free(id
);
10944 /* Check if the given map is obviously single-valued.
10946 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
10949 return isl_bool_error
;
10951 return isl_bool_true
;
10953 return isl_bool_false
;
10955 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
10958 /* Check if the given map is single-valued.
10959 * We simply compute
10963 * and check if the result is a subset of the identity mapping.
10965 isl_bool
isl_map_is_single_valued(__isl_keep isl_map
*map
)
10972 sv
= isl_map_plain_is_single_valued(map
);
10976 test
= isl_map_reverse(isl_map_copy(map
));
10977 test
= isl_map_apply_range(test
, isl_map_copy(map
));
10979 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
10980 id
= isl_map_identity(dim
);
10982 sv
= isl_map_is_subset(test
, id
);
10984 isl_map_free(test
);
10990 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
10994 map
= isl_map_copy(map
);
10995 map
= isl_map_reverse(map
);
10996 in
= isl_map_is_single_valued(map
);
11002 /* Check if the given map is obviously injective.
11004 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
11008 map
= isl_map_copy(map
);
11009 map
= isl_map_reverse(map
);
11010 in
= isl_map_plain_is_single_valued(map
);
11016 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
11020 sv
= isl_map_is_single_valued(map
);
11024 return isl_map_is_injective(map
);
11027 isl_bool
isl_set_is_singleton(__isl_keep isl_set
*set
)
11029 return isl_map_is_single_valued(set_to_map(set
));
11032 /* Does "map" only map elements to themselves?
11034 * If the domain and range spaces are different, then "map"
11035 * is considered not to be an identity relation, even if it is empty.
11036 * Otherwise, construct the maximal identity relation and
11037 * check whether "map" is a subset of this relation.
11039 isl_bool
isl_map_is_identity(__isl_keep isl_map
*map
)
11043 isl_bool equal
, is_identity
;
11045 space
= isl_map_get_space(map
);
11046 equal
= isl_space_tuple_is_equal(space
, isl_dim_in
, space
, isl_dim_out
);
11047 isl_space_free(space
);
11048 if (equal
< 0 || !equal
)
11051 id
= isl_map_identity(isl_map_get_space(map
));
11052 is_identity
= isl_map_is_subset(map
, id
);
11055 return is_identity
;
11058 int isl_map_is_translation(__isl_keep isl_map
*map
)
11063 delta
= isl_map_deltas(isl_map_copy(map
));
11064 ok
= isl_set_is_singleton(delta
);
11065 isl_set_free(delta
);
11070 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
11072 if (isl_seq_first_non_zero(p
, pos
) != -1)
11074 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
11079 isl_bool
isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
11086 return isl_bool_error
;
11088 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
11089 return isl_bool_false
;
11091 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
11092 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
11093 for (j
= 0; j
< nvar
; ++j
) {
11094 int lower
= 0, upper
= 0;
11095 for (i
= 0; i
< bset
->n_eq
; ++i
) {
11096 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
11098 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
11099 return isl_bool_false
;
11102 if (i
< bset
->n_eq
)
11104 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
11105 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
11107 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
11108 return isl_bool_false
;
11109 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
11114 if (!lower
|| !upper
)
11115 return isl_bool_false
;
11118 return isl_bool_true
;
11121 isl_bool
isl_set_is_box(__isl_keep isl_set
*set
)
11124 return isl_bool_error
;
11126 return isl_bool_false
;
11128 return isl_basic_set_is_box(set
->p
[0]);
11131 isl_bool
isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
11134 return isl_bool_error
;
11136 return isl_space_is_wrapping(bset
->dim
);
11139 isl_bool
isl_set_is_wrapping(__isl_keep isl_set
*set
)
11142 return isl_bool_error
;
11144 return isl_space_is_wrapping(set
->dim
);
11147 /* Modify the space of "map" through a call to "change".
11148 * If "can_change" is set (not NULL), then first call it to check
11149 * if the modification is allowed, printing the error message "cannot_change"
11152 static __isl_give isl_map
*isl_map_change_space(__isl_take isl_map
*map
,
11153 isl_bool (*can_change
)(__isl_keep isl_map
*map
),
11154 const char *cannot_change
,
11155 __isl_give isl_space
*(*change
)(__isl_take isl_space
*space
))
11163 ok
= can_change
? can_change(map
) : isl_bool_true
;
11165 return isl_map_free(map
);
11167 isl_die(isl_map_get_ctx(map
), isl_error_invalid
, cannot_change
,
11168 return isl_map_free(map
));
11170 space
= change(isl_map_get_space(map
));
11171 map
= isl_map_reset_space(map
, space
);
11176 /* Is the domain of "map" a wrapped relation?
11178 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
11181 return isl_bool_error
;
11183 return isl_space_domain_is_wrapping(map
->dim
);
11186 /* Is the range of "map" a wrapped relation?
11188 isl_bool
isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
11191 return isl_bool_error
;
11193 return isl_space_range_is_wrapping(map
->dim
);
11196 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
11198 bmap
= isl_basic_map_cow(bmap
);
11202 bmap
->dim
= isl_space_wrap(bmap
->dim
);
11206 bmap
= isl_basic_map_finalize(bmap
);
11208 return bset_from_bmap(bmap
);
11210 isl_basic_map_free(bmap
);
11214 /* Given a map A -> B, return the set (A -> B).
11216 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
11218 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_wrap
);
11221 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
11223 bset
= isl_basic_set_cow(bset
);
11227 bset
->dim
= isl_space_unwrap(bset
->dim
);
11231 bset
= isl_basic_set_finalize(bset
);
11233 return bset_to_bmap(bset
);
11235 isl_basic_set_free(bset
);
11239 /* Given a set (A -> B), return the map A -> B.
11240 * Error out if "set" is not of the form (A -> B).
11242 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
11244 return isl_map_change_space(set
, &isl_set_is_wrapping
,
11245 "not a wrapping set", &isl_space_unwrap
);
11248 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
11249 enum isl_dim_type type
)
11254 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
11257 bmap
= isl_basic_map_cow(bmap
);
11261 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
11265 bmap
= isl_basic_map_finalize(bmap
);
11269 isl_basic_map_free(bmap
);
11273 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
11274 enum isl_dim_type type
)
11281 if (!isl_space_is_named_or_nested(map
->dim
, type
))
11284 map
= isl_map_cow(map
);
11288 for (i
= 0; i
< map
->n
; ++i
) {
11289 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
11293 map
->dim
= isl_space_reset(map
->dim
, type
);
11303 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
11308 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
11311 bmap
= isl_basic_map_cow(bmap
);
11315 bmap
->dim
= isl_space_flatten(bmap
->dim
);
11319 bmap
= isl_basic_map_finalize(bmap
);
11323 isl_basic_map_free(bmap
);
11327 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
11329 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset
)));
11332 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
11333 __isl_take isl_basic_map
*bmap
)
11338 if (!bmap
->dim
->nested
[0])
11341 bmap
= isl_basic_map_cow(bmap
);
11345 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
11349 bmap
= isl_basic_map_finalize(bmap
);
11353 isl_basic_map_free(bmap
);
11357 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
11358 __isl_take isl_basic_map
*bmap
)
11363 if (!bmap
->dim
->nested
[1])
11366 bmap
= isl_basic_map_cow(bmap
);
11370 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
11374 bmap
= isl_basic_map_finalize(bmap
);
11378 isl_basic_map_free(bmap
);
11382 /* Remove any internal structure from the spaces of domain and range of "map".
11384 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
11389 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
11392 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten
);
11395 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
11397 return set_from_map(isl_map_flatten(set_to_map(set
)));
11400 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
11402 isl_space
*dim
, *flat_dim
;
11405 dim
= isl_set_get_space(set
);
11406 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
11407 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
11408 map
= isl_map_intersect_domain(map
, set
);
11413 /* Remove any internal structure from the space of the domain of "map".
11415 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
11420 if (!map
->dim
->nested
[0])
11423 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_domain
);
11426 /* Remove any internal structure from the space of the range of "map".
11428 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
11433 if (!map
->dim
->nested
[1])
11436 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_range
);
11439 /* Reorder the dimensions of "bmap" according to the given dim_map
11440 * and set the dimension specification to "dim" and
11441 * perform Gaussian elimination on the result.
11443 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
11444 __isl_take isl_space
*dim
, __isl_take
struct isl_dim_map
*dim_map
)
11446 isl_basic_map
*res
;
11449 bmap
= isl_basic_map_cow(bmap
);
11450 if (!bmap
|| !dim
|| !dim_map
)
11453 flags
= bmap
->flags
;
11454 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
11455 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED
);
11456 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
11457 res
= isl_basic_map_alloc_space(dim
,
11458 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
11459 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
11461 res
->flags
= flags
;
11462 res
= isl_basic_map_gauss(res
, NULL
);
11463 res
= isl_basic_map_finalize(res
);
11467 isl_basic_map_free(bmap
);
11468 isl_space_free(dim
);
11472 /* Reorder the dimensions of "map" according to given reordering.
11474 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
11475 __isl_take isl_reordering
*r
)
11478 struct isl_dim_map
*dim_map
;
11480 map
= isl_map_cow(map
);
11481 dim_map
= isl_dim_map_from_reordering(r
);
11482 if (!map
|| !r
|| !dim_map
)
11485 for (i
= 0; i
< map
->n
; ++i
) {
11486 struct isl_dim_map
*dim_map_i
;
11488 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
11490 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
],
11491 isl_space_copy(r
->dim
), dim_map_i
);
11497 map
= isl_map_reset_space(map
, isl_space_copy(r
->dim
));
11499 isl_reordering_free(r
);
11505 isl_reordering_free(r
);
11509 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
11510 __isl_take isl_reordering
*r
)
11512 return set_from_map(isl_map_realign(set_to_map(set
), r
));
11515 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
11516 __isl_take isl_space
*model
)
11521 if (!map
|| !model
)
11524 ctx
= isl_space_get_ctx(model
);
11525 if (!isl_space_has_named_params(model
))
11526 isl_die(ctx
, isl_error_invalid
,
11527 "model has unnamed parameters", goto error
);
11528 if (isl_map_check_named_params(map
) < 0)
11530 aligned
= isl_map_space_has_equal_params(map
, model
);
11534 isl_reordering
*exp
;
11536 model
= isl_space_drop_dims(model
, isl_dim_in
,
11537 0, isl_space_dim(model
, isl_dim_in
));
11538 model
= isl_space_drop_dims(model
, isl_dim_out
,
11539 0, isl_space_dim(model
, isl_dim_out
));
11540 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11541 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11542 map
= isl_map_realign(map
, exp
);
11545 isl_space_free(model
);
11548 isl_space_free(model
);
11553 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11554 __isl_take isl_space
*model
)
11556 return isl_map_align_params(set
, model
);
11559 /* Align the parameters of "bmap" to those of "model", introducing
11560 * additional parameters if needed.
11562 __isl_give isl_basic_map
*isl_basic_map_align_params(
11563 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11566 isl_bool equal_params
;
11568 if (!bmap
|| !model
)
11571 ctx
= isl_space_get_ctx(model
);
11572 if (!isl_space_has_named_params(model
))
11573 isl_die(ctx
, isl_error_invalid
,
11574 "model has unnamed parameters", goto error
);
11575 if (!isl_space_has_named_params(bmap
->dim
))
11576 isl_die(ctx
, isl_error_invalid
,
11577 "relation has unnamed parameters", goto error
);
11578 equal_params
= isl_space_has_equal_params(bmap
->dim
, model
);
11579 if (equal_params
< 0)
11581 if (!equal_params
) {
11582 isl_reordering
*exp
;
11583 struct isl_dim_map
*dim_map
;
11585 model
= isl_space_drop_dims(model
, isl_dim_in
,
11586 0, isl_space_dim(model
, isl_dim_in
));
11587 model
= isl_space_drop_dims(model
, isl_dim_out
,
11588 0, isl_space_dim(model
, isl_dim_out
));
11589 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11590 exp
= isl_reordering_extend_space(exp
,
11591 isl_basic_map_get_space(bmap
));
11592 dim_map
= isl_dim_map_from_reordering(exp
);
11593 bmap
= isl_basic_map_realign(bmap
,
11594 exp
? isl_space_copy(exp
->dim
) : NULL
,
11595 isl_dim_map_extend(dim_map
, bmap
));
11596 isl_reordering_free(exp
);
11600 isl_space_free(model
);
11603 isl_space_free(model
);
11604 isl_basic_map_free(bmap
);
11608 /* Do "bset" and "space" have the same parameters?
11610 isl_bool
isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set
*bset
,
11611 __isl_keep isl_space
*space
)
11613 isl_space
*bset_space
;
11615 bset_space
= isl_basic_set_peek_space(bset
);
11616 return isl_space_has_equal_params(bset_space
, space
);
11619 /* Do "map" and "space" have the same parameters?
11621 isl_bool
isl_map_space_has_equal_params(__isl_keep isl_map
*map
,
11622 __isl_keep isl_space
*space
)
11624 isl_space
*map_space
;
11626 map_space
= isl_map_peek_space(map
);
11627 return isl_space_has_equal_params(map_space
, space
);
11630 /* Do "set" and "space" have the same parameters?
11632 isl_bool
isl_set_space_has_equal_params(__isl_keep isl_set
*set
,
11633 __isl_keep isl_space
*space
)
11635 return isl_map_space_has_equal_params(set_to_map(set
), space
);
11638 /* Align the parameters of "bset" to those of "model", introducing
11639 * additional parameters if needed.
11641 __isl_give isl_basic_set
*isl_basic_set_align_params(
11642 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11644 return isl_basic_map_align_params(bset
, model
);
11647 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11648 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11649 enum isl_dim_type c2
, enum isl_dim_type c3
,
11650 enum isl_dim_type c4
, enum isl_dim_type c5
)
11652 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11653 struct isl_mat
*mat
;
11659 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11660 isl_basic_map_total_dim(bmap
) + 1);
11663 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11664 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11665 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11666 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11667 isl_int_set(mat
->row
[i
][pos
],
11668 bmap
->eq
[i
][off
+ k
]);
11676 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11677 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11678 enum isl_dim_type c2
, enum isl_dim_type c3
,
11679 enum isl_dim_type c4
, enum isl_dim_type c5
)
11681 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11682 struct isl_mat
*mat
;
11688 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11689 isl_basic_map_total_dim(bmap
) + 1);
11692 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11693 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11694 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11695 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11696 isl_int_set(mat
->row
[i
][pos
],
11697 bmap
->ineq
[i
][off
+ k
]);
11705 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
11706 __isl_take isl_space
*dim
,
11707 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11708 enum isl_dim_type c2
, enum isl_dim_type c3
,
11709 enum isl_dim_type c4
, enum isl_dim_type c5
)
11711 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11712 isl_basic_map
*bmap
;
11718 if (!dim
|| !eq
|| !ineq
)
11721 if (eq
->n_col
!= ineq
->n_col
)
11722 isl_die(dim
->ctx
, isl_error_invalid
,
11723 "equalities and inequalities matrices should have "
11724 "same number of columns", goto error
);
11726 total
= 1 + isl_space_dim(dim
, isl_dim_all
);
11728 if (eq
->n_col
< total
)
11729 isl_die(dim
->ctx
, isl_error_invalid
,
11730 "number of columns too small", goto error
);
11732 extra
= eq
->n_col
- total
;
11734 bmap
= isl_basic_map_alloc_space(isl_space_copy(dim
), extra
,
11735 eq
->n_row
, ineq
->n_row
);
11738 for (i
= 0; i
< extra
; ++i
) {
11739 k
= isl_basic_map_alloc_div(bmap
);
11742 isl_int_set_si(bmap
->div
[k
][0], 0);
11744 for (i
= 0; i
< eq
->n_row
; ++i
) {
11745 l
= isl_basic_map_alloc_equality(bmap
);
11748 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11749 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11750 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11751 isl_int_set(bmap
->eq
[l
][off
+ k
],
11757 for (i
= 0; i
< ineq
->n_row
; ++i
) {
11758 l
= isl_basic_map_alloc_inequality(bmap
);
11761 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11762 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11763 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11764 isl_int_set(bmap
->ineq
[l
][off
+ k
],
11765 ineq
->row
[i
][pos
]);
11771 isl_space_free(dim
);
11773 isl_mat_free(ineq
);
11775 bmap
= isl_basic_map_simplify(bmap
);
11776 return isl_basic_map_finalize(bmap
);
11778 isl_space_free(dim
);
11780 isl_mat_free(ineq
);
11784 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
11785 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11786 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11788 return isl_basic_map_equalities_matrix(bset_to_bmap(bset
),
11789 c1
, c2
, c3
, c4
, isl_dim_in
);
11792 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
11793 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
11794 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11796 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset
),
11797 c1
, c2
, c3
, c4
, isl_dim_in
);
11800 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
11801 __isl_take isl_space
*dim
,
11802 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
11803 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
11805 isl_basic_map
*bmap
;
11806 bmap
= isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
11807 c1
, c2
, c3
, c4
, isl_dim_in
);
11808 return bset_from_bmap(bmap
);
11811 isl_bool
isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
11814 return isl_bool_error
;
11816 return isl_space_can_zip(bmap
->dim
);
11819 isl_bool
isl_map_can_zip(__isl_keep isl_map
*map
)
11822 return isl_bool_error
;
11824 return isl_space_can_zip(map
->dim
);
11827 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
11828 * (A -> C) -> (B -> D).
11830 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
11839 if (!isl_basic_map_can_zip(bmap
))
11840 isl_die(bmap
->ctx
, isl_error_invalid
,
11841 "basic map cannot be zipped", goto error
);
11842 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
11843 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
11844 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
11845 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
11846 bmap
= isl_basic_map_cow(bmap
);
11847 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
11850 bmap
->dim
= isl_space_zip(bmap
->dim
);
11853 bmap
= isl_basic_map_mark_final(bmap
);
11856 isl_basic_map_free(bmap
);
11860 /* Given a map (A -> B) -> (C -> D), return the corresponding map
11861 * (A -> C) -> (B -> D).
11863 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
11870 if (!isl_map_can_zip(map
))
11871 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
11874 map
= isl_map_cow(map
);
11878 for (i
= 0; i
< map
->n
; ++i
) {
11879 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
11884 map
->dim
= isl_space_zip(map
->dim
);
11894 /* Can we apply isl_basic_map_curry to "bmap"?
11895 * That is, does it have a nested relation in its domain?
11897 isl_bool
isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
11900 return isl_bool_error
;
11902 return isl_space_can_curry(bmap
->dim
);
11905 /* Can we apply isl_map_curry to "map"?
11906 * That is, does it have a nested relation in its domain?
11908 isl_bool
isl_map_can_curry(__isl_keep isl_map
*map
)
11911 return isl_bool_error
;
11913 return isl_space_can_curry(map
->dim
);
11916 /* Given a basic map (A -> B) -> C, return the corresponding basic map
11919 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
11925 if (!isl_basic_map_can_curry(bmap
))
11926 isl_die(bmap
->ctx
, isl_error_invalid
,
11927 "basic map cannot be curried", goto error
);
11928 bmap
= isl_basic_map_cow(bmap
);
11931 bmap
->dim
= isl_space_curry(bmap
->dim
);
11934 bmap
= isl_basic_map_mark_final(bmap
);
11937 isl_basic_map_free(bmap
);
11941 /* Given a map (A -> B) -> C, return the corresponding map
11944 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
11946 return isl_map_change_space(map
, &isl_map_can_curry
,
11947 "map cannot be curried", &isl_space_curry
);
11950 /* Can isl_map_range_curry be applied to "map"?
11951 * That is, does it have a nested relation in its range,
11952 * the domain of which is itself a nested relation?
11954 isl_bool
isl_map_can_range_curry(__isl_keep isl_map
*map
)
11957 return isl_bool_error
;
11959 return isl_space_can_range_curry(map
->dim
);
11962 /* Given a map A -> ((B -> C) -> D), return the corresponding map
11963 * A -> (B -> (C -> D)).
11965 __isl_give isl_map
*isl_map_range_curry(__isl_take isl_map
*map
)
11967 return isl_map_change_space(map
, &isl_map_can_range_curry
,
11968 "map range cannot be curried",
11969 &isl_space_range_curry
);
11972 /* Can we apply isl_basic_map_uncurry to "bmap"?
11973 * That is, does it have a nested relation in its domain?
11975 isl_bool
isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
11978 return isl_bool_error
;
11980 return isl_space_can_uncurry(bmap
->dim
);
11983 /* Can we apply isl_map_uncurry to "map"?
11984 * That is, does it have a nested relation in its domain?
11986 isl_bool
isl_map_can_uncurry(__isl_keep isl_map
*map
)
11989 return isl_bool_error
;
11991 return isl_space_can_uncurry(map
->dim
);
11994 /* Given a basic map A -> (B -> C), return the corresponding basic map
11997 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
12003 if (!isl_basic_map_can_uncurry(bmap
))
12004 isl_die(bmap
->ctx
, isl_error_invalid
,
12005 "basic map cannot be uncurried",
12006 return isl_basic_map_free(bmap
));
12007 bmap
= isl_basic_map_cow(bmap
);
12010 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
12012 return isl_basic_map_free(bmap
);
12013 bmap
= isl_basic_map_mark_final(bmap
);
12017 /* Given a map A -> (B -> C), return the corresponding map
12020 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
12022 return isl_map_change_space(map
, &isl_map_can_uncurry
,
12023 "map cannot be uncurried", &isl_space_uncurry
);
12026 /* Construct a basic map mapping the domain of the affine expression
12027 * to a one-dimensional range prescribed by the affine expression.
12028 * If "rational" is set, then construct a rational basic map.
12030 * A NaN affine expression cannot be converted to a basic map.
12032 static __isl_give isl_basic_map
*isl_basic_map_from_aff2(
12033 __isl_take isl_aff
*aff
, int rational
)
12038 isl_local_space
*ls
;
12039 isl_basic_map
*bmap
= NULL
;
12043 is_nan
= isl_aff_is_nan(aff
);
12047 isl_die(isl_aff_get_ctx(aff
), isl_error_invalid
,
12048 "cannot convert NaN", goto error
);
12050 ls
= isl_aff_get_local_space(aff
);
12051 bmap
= isl_basic_map_from_local_space(ls
);
12052 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
12053 k
= isl_basic_map_alloc_equality(bmap
);
12057 pos
= isl_basic_map_offset(bmap
, isl_dim_out
);
12058 isl_seq_cpy(bmap
->eq
[k
], aff
->v
->el
+ 1, pos
);
12059 isl_int_neg(bmap
->eq
[k
][pos
], aff
->v
->el
[0]);
12060 isl_seq_cpy(bmap
->eq
[k
] + pos
+ 1, aff
->v
->el
+ 1 + pos
,
12061 aff
->v
->size
- (pos
+ 1));
12065 bmap
= isl_basic_map_set_rational(bmap
);
12066 bmap
= isl_basic_map_gauss(bmap
, NULL
);
12067 bmap
= isl_basic_map_finalize(bmap
);
12071 isl_basic_map_free(bmap
);
12075 /* Construct a basic map mapping the domain of the affine expression
12076 * to a one-dimensional range prescribed by the affine expression.
12078 __isl_give isl_basic_map
*isl_basic_map_from_aff(__isl_take isl_aff
*aff
)
12080 return isl_basic_map_from_aff2(aff
, 0);
12083 /* Construct a map mapping the domain of the affine expression
12084 * to a one-dimensional range prescribed by the affine expression.
12086 __isl_give isl_map
*isl_map_from_aff(__isl_take isl_aff
*aff
)
12088 isl_basic_map
*bmap
;
12090 bmap
= isl_basic_map_from_aff(aff
);
12091 return isl_map_from_basic_map(bmap
);
12094 /* Construct a basic map mapping the domain the multi-affine expression
12095 * to its range, with each dimension in the range equated to the
12096 * corresponding affine expression.
12097 * If "rational" is set, then construct a rational basic map.
12099 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff2(
12100 __isl_take isl_multi_aff
*maff
, int rational
)
12104 isl_basic_map
*bmap
;
12109 if (isl_space_dim(maff
->space
, isl_dim_out
) != maff
->n
)
12110 isl_die(isl_multi_aff_get_ctx(maff
), isl_error_internal
,
12111 "invalid space", goto error
);
12113 space
= isl_space_domain(isl_multi_aff_get_space(maff
));
12114 bmap
= isl_basic_map_universe(isl_space_from_domain(space
));
12116 bmap
= isl_basic_map_set_rational(bmap
);
12118 for (i
= 0; i
< maff
->n
; ++i
) {
12120 isl_basic_map
*bmap_i
;
12122 aff
= isl_aff_copy(maff
->p
[i
]);
12123 bmap_i
= isl_basic_map_from_aff2(aff
, rational
);
12125 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12128 bmap
= isl_basic_map_reset_space(bmap
, isl_multi_aff_get_space(maff
));
12130 isl_multi_aff_free(maff
);
12133 isl_multi_aff_free(maff
);
12137 /* Construct a basic map mapping the domain the multi-affine expression
12138 * to its range, with each dimension in the range equated to the
12139 * corresponding affine expression.
12141 __isl_give isl_basic_map
*isl_basic_map_from_multi_aff(
12142 __isl_take isl_multi_aff
*ma
)
12144 return isl_basic_map_from_multi_aff2(ma
, 0);
12147 /* Construct a map mapping the domain the multi-affine expression
12148 * to its range, with each dimension in the range equated to the
12149 * corresponding affine expression.
12151 __isl_give isl_map
*isl_map_from_multi_aff(__isl_take isl_multi_aff
*maff
)
12153 isl_basic_map
*bmap
;
12155 bmap
= isl_basic_map_from_multi_aff(maff
);
12156 return isl_map_from_basic_map(bmap
);
12159 /* Construct a basic map mapping a domain in the given space to
12160 * to an n-dimensional range, with n the number of elements in the list,
12161 * where each coordinate in the range is prescribed by the
12162 * corresponding affine expression.
12163 * The domains of all affine expressions in the list are assumed to match
12166 __isl_give isl_basic_map
*isl_basic_map_from_aff_list(
12167 __isl_take isl_space
*domain_dim
, __isl_take isl_aff_list
*list
)
12171 isl_basic_map
*bmap
;
12176 dim
= isl_space_from_domain(domain_dim
);
12177 bmap
= isl_basic_map_universe(dim
);
12179 for (i
= 0; i
< list
->n
; ++i
) {
12181 isl_basic_map
*bmap_i
;
12183 aff
= isl_aff_copy(list
->p
[i
]);
12184 bmap_i
= isl_basic_map_from_aff(aff
);
12186 bmap
= isl_basic_map_flat_range_product(bmap
, bmap_i
);
12189 isl_aff_list_free(list
);
12193 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
12194 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12196 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
12199 /* Construct a basic map where the given dimensions are equal to each other.
12201 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
12202 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12204 isl_basic_map
*bmap
= NULL
;
12210 if (pos1
>= isl_space_dim(space
, type1
))
12211 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12212 "index out of bounds", goto error
);
12213 if (pos2
>= isl_space_dim(space
, type2
))
12214 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12215 "index out of bounds", goto error
);
12217 if (type1
== type2
&& pos1
== pos2
)
12218 return isl_basic_map_universe(space
);
12220 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
12221 i
= isl_basic_map_alloc_equality(bmap
);
12224 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12225 pos1
+= isl_basic_map_offset(bmap
, type1
);
12226 pos2
+= isl_basic_map_offset(bmap
, type2
);
12227 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
12228 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12229 bmap
= isl_basic_map_finalize(bmap
);
12230 isl_space_free(space
);
12233 isl_space_free(space
);
12234 isl_basic_map_free(bmap
);
12238 /* Add a constraint imposing that the given two dimensions are equal.
12240 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
12241 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12245 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12247 bmap
= isl_basic_map_intersect(bmap
, eq
);
12252 /* Add a constraint imposing that the given two dimensions are equal.
12254 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
12255 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12257 isl_basic_map
*bmap
;
12259 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12261 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12266 /* Add a constraint imposing that the given two dimensions have opposite values.
12268 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
12269 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12271 isl_basic_map
*bmap
= NULL
;
12277 if (pos1
>= isl_map_dim(map
, type1
))
12278 isl_die(map
->ctx
, isl_error_invalid
,
12279 "index out of bounds", goto error
);
12280 if (pos2
>= isl_map_dim(map
, type2
))
12281 isl_die(map
->ctx
, isl_error_invalid
,
12282 "index out of bounds", goto error
);
12284 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
12285 i
= isl_basic_map_alloc_equality(bmap
);
12288 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12289 pos1
+= isl_basic_map_offset(bmap
, type1
);
12290 pos2
+= isl_basic_map_offset(bmap
, type2
);
12291 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
12292 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12293 bmap
= isl_basic_map_finalize(bmap
);
12295 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12299 isl_basic_map_free(bmap
);
12304 /* Construct a constraint imposing that the value of the first dimension is
12305 * greater than or equal to that of the second.
12307 static __isl_give isl_constraint
*constraint_order_ge(
12308 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
12309 enum isl_dim_type type2
, int pos2
)
12316 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
12318 if (pos1
>= isl_constraint_dim(c
, type1
))
12319 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12320 "index out of bounds", return isl_constraint_free(c
));
12321 if (pos2
>= isl_constraint_dim(c
, type2
))
12322 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12323 "index out of bounds", return isl_constraint_free(c
));
12325 if (type1
== type2
&& pos1
== pos2
)
12328 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
12329 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
12334 /* Add a constraint imposing that the value of the first dimension is
12335 * greater than or equal to that of the second.
12337 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
12338 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12343 if (type1
== type2
&& pos1
== pos2
)
12345 space
= isl_basic_map_get_space(bmap
);
12346 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12347 bmap
= isl_basic_map_add_constraint(bmap
, c
);
12352 /* Add a constraint imposing that the value of the first dimension is
12353 * greater than or equal to that of the second.
12355 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
12356 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12361 if (type1
== type2
&& pos1
== pos2
)
12363 space
= isl_map_get_space(map
);
12364 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12365 map
= isl_map_add_constraint(map
, c
);
12370 /* Add a constraint imposing that the value of the first dimension is
12371 * less than or equal to that of the second.
12373 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
12374 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12376 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
12379 /* Construct a basic map where the value of the first dimension is
12380 * greater than that of the second.
12382 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
12383 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12385 isl_basic_map
*bmap
= NULL
;
12391 if (pos1
>= isl_space_dim(space
, type1
))
12392 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12393 "index out of bounds", goto error
);
12394 if (pos2
>= isl_space_dim(space
, type2
))
12395 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12396 "index out of bounds", goto error
);
12398 if (type1
== type2
&& pos1
== pos2
)
12399 return isl_basic_map_empty(space
);
12401 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
12402 i
= isl_basic_map_alloc_inequality(bmap
);
12404 return isl_basic_map_free(bmap
);
12405 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12406 pos1
+= isl_basic_map_offset(bmap
, type1
);
12407 pos2
+= isl_basic_map_offset(bmap
, type2
);
12408 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
12409 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
12410 isl_int_set_si(bmap
->ineq
[i
][0], -1);
12411 bmap
= isl_basic_map_finalize(bmap
);
12415 isl_space_free(space
);
12416 isl_basic_map_free(bmap
);
12420 /* Add a constraint imposing that the value of the first dimension is
12421 * greater than that of the second.
12423 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
12424 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12428 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12430 bmap
= isl_basic_map_intersect(bmap
, gt
);
12435 /* Add a constraint imposing that the value of the first dimension is
12436 * greater than that of the second.
12438 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
12439 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12441 isl_basic_map
*bmap
;
12443 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12445 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12450 /* Add a constraint imposing that the value of the first dimension is
12451 * smaller than that of the second.
12453 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
12454 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12456 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
12459 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
12463 isl_local_space
*ls
;
12468 if (!isl_basic_map_divs_known(bmap
))
12469 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12470 "some divs are unknown", return NULL
);
12472 ls
= isl_basic_map_get_local_space(bmap
);
12473 div
= isl_local_space_get_div(ls
, pos
);
12474 isl_local_space_free(ls
);
12479 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
12482 return isl_basic_map_get_div(bset
, pos
);
12485 /* Plug in "subs" for dimension "type", "pos" of "bset".
12487 * Let i be the dimension to replace and let "subs" be of the form
12491 * Any integer division with a non-zero coefficient for i,
12493 * floor((a i + g)/m)
12497 * floor((a f + d g)/(m d))
12499 * Constraints of the form
12507 * We currently require that "subs" is an integral expression.
12508 * Handling rational expressions may require us to add stride constraints
12509 * as we do in isl_basic_set_preimage_multi_aff.
12511 __isl_give isl_basic_set
*isl_basic_set_substitute(
12512 __isl_take isl_basic_set
*bset
,
12513 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12519 if (bset
&& isl_basic_set_plain_is_empty(bset
))
12522 bset
= isl_basic_set_cow(bset
);
12523 if (!bset
|| !subs
)
12526 ctx
= isl_basic_set_get_ctx(bset
);
12527 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
12528 isl_die(ctx
, isl_error_invalid
,
12529 "spaces don't match", goto error
);
12530 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
12531 isl_die(ctx
, isl_error_unsupported
,
12532 "cannot handle divs yet", goto error
);
12533 if (!isl_int_is_one(subs
->v
->el
[0]))
12534 isl_die(ctx
, isl_error_invalid
,
12535 "can only substitute integer expressions", goto error
);
12537 pos
+= isl_basic_set_offset(bset
, type
);
12541 for (i
= 0; i
< bset
->n_eq
; ++i
) {
12542 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
12544 isl_int_set(v
, bset
->eq
[i
][pos
]);
12545 isl_int_set_si(bset
->eq
[i
][pos
], 0);
12546 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
12547 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12550 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12551 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
12553 isl_int_set(v
, bset
->ineq
[i
][pos
]);
12554 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
12555 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
12556 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12559 for (i
= 0; i
< bset
->n_div
; ++i
) {
12560 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
12562 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
12563 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
12564 isl_seq_combine(bset
->div
[i
] + 1,
12565 subs
->v
->el
[0], bset
->div
[i
] + 1,
12566 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12567 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12572 bset
= isl_basic_set_simplify(bset
);
12573 return isl_basic_set_finalize(bset
);
12575 isl_basic_set_free(bset
);
12579 /* Plug in "subs" for dimension "type", "pos" of "set".
12581 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12582 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12586 if (set
&& isl_set_plain_is_empty(set
))
12589 set
= isl_set_cow(set
);
12593 for (i
= set
->n
- 1; i
>= 0; --i
) {
12594 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12595 if (remove_if_empty(set
, i
) < 0)
12605 /* Check if the range of "ma" is compatible with the domain or range
12606 * (depending on "type") of "bmap".
12608 static isl_stat
check_basic_map_compatible_range_multi_aff(
12609 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12610 __isl_keep isl_multi_aff
*ma
)
12613 isl_space
*ma_space
;
12615 ma_space
= isl_multi_aff_get_space(ma
);
12617 m
= isl_space_has_equal_params(bmap
->dim
, ma_space
);
12621 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12622 "parameters don't match", goto error
);
12623 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12627 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12628 "spaces don't match", goto error
);
12630 isl_space_free(ma_space
);
12631 return isl_stat_ok
;
12633 isl_space_free(ma_space
);
12634 return isl_stat_error
;
12637 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12638 * coefficients before the transformed range of dimensions,
12639 * the "n_after" coefficients after the transformed range of dimensions
12640 * and the coefficients of the other divs in "bmap".
12642 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12643 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12648 isl_local_space
*ls
;
12653 ls
= isl_aff_get_domain_local_space(ma
->p
[0]);
12657 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12658 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12659 for (i
= 0; i
< n_div
; ++i
) {
12660 int o_bmap
= 0, o_ls
= 0;
12662 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12663 o_bmap
+= 1 + 1 + n_param
;
12664 o_ls
+= 1 + 1 + n_param
;
12665 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12666 o_bmap
+= n_before
;
12667 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12668 ls
->div
->row
[i
] + o_ls
, n_set
);
12671 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12673 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12674 ls
->div
->row
[i
] + o_ls
, n_div
);
12677 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12678 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
12682 isl_local_space_free(ls
);
12685 isl_local_space_free(ls
);
12689 /* How many stride constraints does "ma" enforce?
12690 * That is, how many of the affine expressions have a denominator
12691 * different from one?
12693 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12698 for (i
= 0; i
< ma
->n
; ++i
)
12699 if (!isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12705 /* For each affine expression in ma of the form
12707 * x_i = (f_i y + h_i)/m_i
12709 * with m_i different from one, add a constraint to "bmap"
12712 * f_i y + h_i = m_i alpha_i
12714 * with alpha_i an additional existentially quantified variable.
12716 * The input variables of "ma" correspond to a subset of the variables
12717 * of "bmap". There are "n_before" variables in "bmap" before this
12718 * subset and "n_after" variables after this subset.
12719 * The integer divisions of the affine expressions in "ma" are assumed
12720 * to have been aligned. There are "n_div_ma" of them and
12721 * they appear first in "bmap", straight after the "n_after" variables.
12723 static __isl_give isl_basic_map
*add_ma_strides(
12724 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12725 int n_before
, int n_after
, int n_div_ma
)
12733 total
= isl_basic_map_total_dim(bmap
);
12734 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12735 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12736 for (i
= 0; i
< ma
->n
; ++i
) {
12737 int o_bmap
= 0, o_ma
= 1;
12739 if (isl_int_is_one(ma
->p
[i
]->v
->el
[0]))
12741 div
= isl_basic_map_alloc_div(bmap
);
12742 k
= isl_basic_map_alloc_equality(bmap
);
12743 if (div
< 0 || k
< 0)
12745 isl_int_set_si(bmap
->div
[div
][0], 0);
12746 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12747 ma
->p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12748 o_bmap
+= 1 + n_param
;
12749 o_ma
+= 1 + n_param
;
12750 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12751 o_bmap
+= n_before
;
12752 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12753 ma
->p
[i
]->v
->el
+ o_ma
, n_in
);
12756 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12758 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12759 ma
->p
[i
]->v
->el
+ o_ma
, n_div_ma
);
12760 o_bmap
+= n_div_ma
;
12762 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12763 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->p
[i
]->v
->el
[0]);
12769 isl_basic_map_free(bmap
);
12773 /* Replace the domain or range space (depending on "type) of "space" by "set".
12775 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12776 enum isl_dim_type type
, __isl_take isl_space
*set
)
12778 if (type
== isl_dim_in
) {
12779 space
= isl_space_range(space
);
12780 space
= isl_space_map_from_domain_and_range(set
, space
);
12782 space
= isl_space_domain(space
);
12783 space
= isl_space_map_from_domain_and_range(space
, set
);
12789 /* Compute the preimage of the domain or range (depending on "type")
12790 * of "bmap" under the function represented by "ma".
12791 * In other words, plug in "ma" in the domain or range of "bmap".
12792 * The result is a basic map that lives in the same space as "bmap"
12793 * except that the domain or range has been replaced by
12794 * the domain space of "ma".
12796 * If bmap is represented by
12798 * A(p) + S u + B x + T v + C(divs) >= 0,
12800 * where u and x are input and output dimensions if type == isl_dim_out
12801 * while x and v are input and output dimensions if type == isl_dim_in,
12802 * and ma is represented by
12804 * x = D(p) + F(y) + G(divs')
12806 * then the result is
12808 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12810 * The divs in the input set are similarly adjusted.
12813 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12817 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12818 * B_i G(divs') + c_i(divs))/n_i)
12820 * If bmap is not a rational map and if F(y) involves any denominators
12822 * x_i = (f_i y + h_i)/m_i
12824 * then additional constraints are added to ensure that we only
12825 * map back integer points. That is we enforce
12827 * f_i y + h_i = m_i alpha_i
12829 * with alpha_i an additional existentially quantified variable.
12831 * We first copy over the divs from "ma".
12832 * Then we add the modified constraints and divs from "bmap".
12833 * Finally, we add the stride constraints, if needed.
12835 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12836 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12837 __isl_take isl_multi_aff
*ma
)
12841 isl_basic_map
*res
= NULL
;
12842 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12843 isl_int f
, c1
, c2
, g
;
12852 ma
= isl_multi_aff_align_divs(ma
);
12855 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12858 if (type
== isl_dim_in
) {
12860 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12862 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
12865 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
12866 n_div_ma
= ma
->n
? isl_aff_dim(ma
->p
[0], isl_dim_div
) : 0;
12868 space
= isl_multi_aff_get_domain_space(ma
);
12869 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
12870 rational
= isl_basic_map_is_rational(bmap
);
12871 strides
= rational
? 0 : multi_aff_strides(ma
);
12872 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
12873 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
12875 res
= isl_basic_map_set_rational(res
);
12877 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
12878 if (isl_basic_map_alloc_div(res
) < 0)
12881 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
12884 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
12885 k
= isl_basic_map_alloc_equality(res
);
12888 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
12889 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12892 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
12893 k
= isl_basic_map_alloc_inequality(res
);
12896 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
12897 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
12900 for (i
= 0; i
< bmap
->n_div
; ++i
) {
12901 if (isl_int_is_zero(bmap
->div
[i
][0])) {
12902 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
12905 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
12906 n_before
, n_after
, n_div_ma
, n_div_bmap
,
12911 res
= add_ma_strides(res
, ma
, n_before
, n_after
, n_div_ma
);
12917 isl_basic_map_free(bmap
);
12918 isl_multi_aff_free(ma
);
12919 res
= isl_basic_map_simplify(res
);
12920 return isl_basic_map_finalize(res
);
12926 isl_basic_map_free(bmap
);
12927 isl_multi_aff_free(ma
);
12928 isl_basic_map_free(res
);
12932 /* Compute the preimage of "bset" under the function represented by "ma".
12933 * In other words, plug in "ma" in "bset". The result is a basic set
12934 * that lives in the domain space of "ma".
12936 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
12937 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
12939 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
12942 /* Compute the preimage of the domain of "bmap" under the function
12943 * represented by "ma".
12944 * In other words, plug in "ma" in the domain of "bmap".
12945 * The result is a basic map that lives in the same space as "bmap"
12946 * except that the domain has been replaced by the domain space of "ma".
12948 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
12949 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12951 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
12954 /* Compute the preimage of the range of "bmap" under the function
12955 * represented by "ma".
12956 * In other words, plug in "ma" in the range of "bmap".
12957 * The result is a basic map that lives in the same space as "bmap"
12958 * except that the range has been replaced by the domain space of "ma".
12960 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
12961 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
12963 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
12966 /* Check if the range of "ma" is compatible with the domain or range
12967 * (depending on "type") of "map".
12968 * Return isl_stat_error if anything is wrong.
12970 static isl_stat
check_map_compatible_range_multi_aff(
12971 __isl_keep isl_map
*map
, enum isl_dim_type type
,
12972 __isl_keep isl_multi_aff
*ma
)
12975 isl_space
*ma_space
;
12977 ma_space
= isl_multi_aff_get_space(ma
);
12978 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
12979 isl_space_free(ma_space
);
12981 return isl_stat_error
;
12983 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
12984 "spaces don't match", return isl_stat_error
);
12985 return isl_stat_ok
;
12988 /* Compute the preimage of the domain or range (depending on "type")
12989 * of "map" under the function represented by "ma".
12990 * In other words, plug in "ma" in the domain or range of "map".
12991 * The result is a map that lives in the same space as "map"
12992 * except that the domain or range has been replaced by
12993 * the domain space of "ma".
12995 * The parameters are assumed to have been aligned.
12997 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
12998 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13003 map
= isl_map_cow(map
);
13004 ma
= isl_multi_aff_align_divs(ma
);
13007 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
13010 for (i
= 0; i
< map
->n
; ++i
) {
13011 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
13012 isl_multi_aff_copy(ma
));
13017 space
= isl_multi_aff_get_domain_space(ma
);
13018 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
13020 isl_space_free(map
->dim
);
13025 isl_multi_aff_free(ma
);
13027 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
13028 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
13031 isl_multi_aff_free(ma
);
13036 /* Compute the preimage of the domain or range (depending on "type")
13037 * of "map" under the function represented by "ma".
13038 * In other words, plug in "ma" in the domain or range of "map".
13039 * The result is a map that lives in the same space as "map"
13040 * except that the domain or range has been replaced by
13041 * the domain space of "ma".
13043 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
13044 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13051 aligned
= isl_map_space_has_equal_params(map
, ma
->space
);
13055 return map_preimage_multi_aff(map
, type
, ma
);
13057 if (isl_map_check_named_params(map
) < 0)
13059 if (!isl_space_has_named_params(ma
->space
))
13060 isl_die(map
->ctx
, isl_error_invalid
,
13061 "unaligned unnamed parameters", goto error
);
13062 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
13063 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
13065 return map_preimage_multi_aff(map
, type
, ma
);
13067 isl_multi_aff_free(ma
);
13068 return isl_map_free(map
);
13071 /* Compute the preimage of "set" under the function represented by "ma".
13072 * In other words, plug in "ma" in "set". The result is a set
13073 * that lives in the domain space of "ma".
13075 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
13076 __isl_take isl_multi_aff
*ma
)
13078 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
13081 /* Compute the preimage of the domain of "map" under the function
13082 * represented by "ma".
13083 * In other words, plug in "ma" in the domain of "map".
13084 * The result is a map that lives in the same space as "map"
13085 * except that the domain has been replaced by the domain space of "ma".
13087 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
13088 __isl_take isl_multi_aff
*ma
)
13090 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
13093 /* Compute the preimage of the range of "map" under the function
13094 * represented by "ma".
13095 * In other words, plug in "ma" in the range of "map".
13096 * The result is a map that lives in the same space as "map"
13097 * except that the range has been replaced by the domain space of "ma".
13099 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
13100 __isl_take isl_multi_aff
*ma
)
13102 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
13105 /* Compute the preimage of "map" under the function represented by "pma".
13106 * In other words, plug in "pma" in the domain or range of "map".
13107 * The result is a map that lives in the same space as "map",
13108 * except that the space of type "type" has been replaced by
13109 * the domain space of "pma".
13111 * The parameters of "map" and "pma" are assumed to have been aligned.
13113 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
13114 __isl_take isl_map
*map
, enum isl_dim_type type
,
13115 __isl_take isl_pw_multi_aff
*pma
)
13124 isl_pw_multi_aff_free(pma
);
13125 res
= isl_map_empty(isl_map_get_space(map
));
13130 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13131 isl_multi_aff_copy(pma
->p
[0].maff
));
13132 if (type
== isl_dim_in
)
13133 res
= isl_map_intersect_domain(res
,
13134 isl_map_copy(pma
->p
[0].set
));
13136 res
= isl_map_intersect_range(res
,
13137 isl_map_copy(pma
->p
[0].set
));
13139 for (i
= 1; i
< pma
->n
; ++i
) {
13142 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13143 isl_multi_aff_copy(pma
->p
[i
].maff
));
13144 if (type
== isl_dim_in
)
13145 res_i
= isl_map_intersect_domain(res_i
,
13146 isl_map_copy(pma
->p
[i
].set
));
13148 res_i
= isl_map_intersect_range(res_i
,
13149 isl_map_copy(pma
->p
[i
].set
));
13150 res
= isl_map_union(res
, res_i
);
13153 isl_pw_multi_aff_free(pma
);
13157 isl_pw_multi_aff_free(pma
);
13162 /* Compute the preimage of "map" under the function represented by "pma".
13163 * In other words, plug in "pma" in the domain or range of "map".
13164 * The result is a map that lives in the same space as "map",
13165 * except that the space of type "type" has been replaced by
13166 * the domain space of "pma".
13168 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
13169 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
13176 aligned
= isl_map_space_has_equal_params(map
, pma
->dim
);
13180 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13182 if (isl_map_check_named_params(map
) < 0)
13184 if (!isl_space_has_named_params(pma
->dim
))
13185 isl_die(map
->ctx
, isl_error_invalid
,
13186 "unaligned unnamed parameters", goto error
);
13187 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
13188 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
13190 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13192 isl_pw_multi_aff_free(pma
);
13193 return isl_map_free(map
);
13196 /* Compute the preimage of "set" under the function represented by "pma".
13197 * In other words, plug in "pma" in "set". The result is a set
13198 * that lives in the domain space of "pma".
13200 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
13201 __isl_take isl_pw_multi_aff
*pma
)
13203 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
13206 /* Compute the preimage of the domain of "map" under the function
13207 * represented by "pma".
13208 * In other words, plug in "pma" in the domain of "map".
13209 * The result is a map that lives in the same space as "map",
13210 * except that domain space has been replaced by the domain space of "pma".
13212 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
13213 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13215 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
13218 /* Compute the preimage of the range of "map" under the function
13219 * represented by "pma".
13220 * In other words, plug in "pma" in the range of "map".
13221 * The result is a map that lives in the same space as "map",
13222 * except that range space has been replaced by the domain space of "pma".
13224 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
13225 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13227 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
13230 /* Compute the preimage of "map" under the function represented by "mpa".
13231 * In other words, plug in "mpa" in the domain or range of "map".
13232 * The result is a map that lives in the same space as "map",
13233 * except that the space of type "type" has been replaced by
13234 * the domain space of "mpa".
13236 * If the map does not involve any constraints that refer to the
13237 * dimensions of the substituted space, then the only possible
13238 * effect of "mpa" on the map is to map the space to a different space.
13239 * We create a separate isl_multi_aff to effectuate this change
13240 * in order to avoid spurious splitting of the map along the pieces
13243 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
13244 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
13247 isl_pw_multi_aff
*pma
;
13252 n
= isl_map_dim(map
, type
);
13253 if (!isl_map_involves_dims(map
, type
, 0, n
)) {
13257 space
= isl_multi_pw_aff_get_space(mpa
);
13258 isl_multi_pw_aff_free(mpa
);
13259 ma
= isl_multi_aff_zero(space
);
13260 return isl_map_preimage_multi_aff(map
, type
, ma
);
13263 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
13264 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
13267 isl_multi_pw_aff_free(mpa
);
13271 /* Compute the preimage of "map" under the function represented by "mpa".
13272 * In other words, plug in "mpa" in the domain "map".
13273 * The result is a map that lives in the same space as "map",
13274 * except that domain space has been replaced by the domain space of "mpa".
13276 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
13277 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
13279 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
13282 /* Compute the preimage of "set" by the function represented by "mpa".
13283 * In other words, plug in "mpa" in "set".
13285 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
13286 __isl_take isl_multi_pw_aff
*mpa
)
13288 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);
13291 /* Are the "n" "coefficients" starting at "first" of the integer division
13292 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13294 * The "coefficient" at position 0 is the denominator.
13295 * The "coefficient" at position 1 is the constant term.
13297 isl_bool
isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map
*bmap1
,
13298 int pos1
, __isl_keep isl_basic_map
*bmap2
, int pos2
,
13299 unsigned first
, unsigned n
)
13301 if (isl_basic_map_check_range(bmap1
, isl_dim_div
, pos1
, 1) < 0)
13302 return isl_bool_error
;
13303 if (isl_basic_map_check_range(bmap2
, isl_dim_div
, pos2
, 1) < 0)
13304 return isl_bool_error
;
13305 return isl_seq_eq(bmap1
->div
[pos1
] + first
,
13306 bmap2
->div
[pos2
] + first
, n
);
13309 /* Are the integer division expressions at position "pos1" in "bmap1" and
13310 * "pos2" in "bmap2" equal to each other, except that the constant terms
13313 isl_bool
isl_basic_map_equal_div_expr_except_constant(
13314 __isl_keep isl_basic_map
*bmap1
, int pos1
,
13315 __isl_keep isl_basic_map
*bmap2
, int pos2
)
13320 if (!bmap1
|| !bmap2
)
13321 return isl_bool_error
;
13322 total
= isl_basic_map_total_dim(bmap1
);
13323 if (total
!= isl_basic_map_total_dim(bmap2
))
13324 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
13325 "incomparable div expressions", return isl_bool_error
);
13326 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13328 if (equal
< 0 || !equal
)
13330 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13332 if (equal
< 0 || equal
)
13333 return isl_bool_not(equal
);
13334 return isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13338 /* Replace the numerator of the constant term of the integer division
13339 * expression at position "div" in "bmap" by "value".
13340 * The caller guarantees that this does not change the meaning
13343 __isl_give isl_basic_map
*isl_basic_map_set_div_expr_constant_num_si_inplace(
13344 __isl_take isl_basic_map
*bmap
, int div
, int value
)
13346 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
13347 return isl_basic_map_free(bmap
);
13349 isl_int_set_si(bmap
->div
[div
][1], value
);
13354 /* Is the point "inner" internal to inequality constraint "ineq"
13356 * The point is considered to be internal to the inequality constraint,
13357 * if it strictly lies on the positive side of the inequality constraint,
13358 * or if it lies on the constraint and the constraint is lexico-positive.
13360 static isl_bool
is_internal(__isl_keep isl_vec
*inner
,
13361 __isl_keep isl_basic_set
*bset
, int ineq
)
13367 if (!inner
|| !bset
)
13368 return isl_bool_error
;
13370 ctx
= isl_basic_set_get_ctx(bset
);
13371 isl_seq_inner_product(inner
->el
, bset
->ineq
[ineq
], inner
->size
,
13372 &ctx
->normalize_gcd
);
13373 if (!isl_int_is_zero(ctx
->normalize_gcd
))
13374 return isl_int_is_nonneg(ctx
->normalize_gcd
);
13376 total
= isl_basic_set_dim(bset
, isl_dim_all
);
13377 pos
= isl_seq_first_non_zero(bset
->ineq
[ineq
] + 1, total
);
13378 return isl_int_is_pos(bset
->ineq
[ineq
][1 + pos
]);
13381 /* Tighten the inequality constraints of "bset" that are outward with respect
13382 * to the point "vec".
13383 * That is, tighten the constraints that are not satisfied by "vec".
13385 * "vec" is a point internal to some superset S of "bset" that is used
13386 * to make the subsets of S disjoint, by tightening one half of the constraints
13387 * that separate two subsets. In particular, the constraints of S
13388 * are all satisfied by "vec" and should not be tightened.
13389 * Of the internal constraints, those that have "vec" on the outside
13390 * are tightened. The shared facet is included in the adjacent subset
13391 * with the opposite constraint.
13392 * For constraints that saturate "vec", this criterion cannot be used
13393 * to determine which of the two sides should be tightened.
13394 * Instead, the sign of the first non-zero coefficient is used
13395 * to make this choice. Note that this second criterion is never used
13396 * on the constraints of S since "vec" is interior to "S".
13398 __isl_give isl_basic_set
*isl_basic_set_tighten_outward(
13399 __isl_take isl_basic_set
*bset
, __isl_keep isl_vec
*vec
)
13403 bset
= isl_basic_set_cow(bset
);
13406 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
13409 internal
= is_internal(vec
, bset
, j
);
13411 return isl_basic_set_free(bset
);
13414 isl_int_sub_ui(bset
->ineq
[j
][0], bset
->ineq
[j
][0], 1);
13420 /* Replace the variables x of type "type" starting at "first" in "bmap"
13421 * by x' with x = M x' with M the matrix trans.
13422 * That is, replace the corresponding coefficients c by c M.
13424 * The transformation matrix should be a square matrix.
13426 __isl_give isl_basic_map
*isl_basic_map_transform_dims(
13427 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, unsigned first
,
13428 __isl_take isl_mat
*trans
)
13432 bmap
= isl_basic_map_cow(bmap
);
13433 if (!bmap
|| !trans
)
13436 if (trans
->n_row
!= trans
->n_col
)
13437 isl_die(trans
->ctx
, isl_error_invalid
,
13438 "expecting square transformation matrix", goto error
);
13439 if (first
+ trans
->n_row
> isl_basic_map_dim(bmap
, type
))
13440 isl_die(trans
->ctx
, isl_error_invalid
,
13441 "oversized transformation matrix", goto error
);
13443 pos
= isl_basic_map_offset(bmap
, type
) + first
;
13445 if (isl_mat_sub_transform(bmap
->eq
, bmap
->n_eq
, pos
,
13446 isl_mat_copy(trans
)) < 0)
13448 if (isl_mat_sub_transform(bmap
->ineq
, bmap
->n_ineq
, pos
,
13449 isl_mat_copy(trans
)) < 0)
13451 if (isl_mat_sub_transform(bmap
->div
, bmap
->n_div
, 1 + pos
,
13452 isl_mat_copy(trans
)) < 0)
13455 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED
);
13456 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
13458 isl_mat_free(trans
);
13461 isl_mat_free(trans
);
13462 isl_basic_map_free(bmap
);
13466 /* Replace the variables x of type "type" starting at "first" in "bset"
13467 * by x' with x = M x' with M the matrix trans.
13468 * That is, replace the corresponding coefficients c by c M.
13470 * The transformation matrix should be a square matrix.
13472 __isl_give isl_basic_set
*isl_basic_set_transform_dims(
13473 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned first
,
13474 __isl_take isl_mat
*trans
)
13476 return isl_basic_map_transform_dims(bset
, type
, first
, trans
);