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>
27 #include <isl/constraint.h>
28 #include "isl_space_private.h"
29 #include "isl_equalities.h"
30 #include <isl_lp_private.h>
34 #include <isl_reordering.h>
35 #include "isl_sample.h"
39 #include <isl_mat_private.h>
40 #include <isl_vec_private.h>
41 #include <isl_dim_map.h>
42 #include <isl_local_space_private.h>
43 #include <isl_aff_private.h>
44 #include <isl_options_private.h>
45 #include <isl_morph.h>
46 #include <isl_val_private.h>
48 #include <bset_to_bmap.c>
49 #include <bset_from_bmap.c>
50 #include <set_to_map.c>
51 #include <set_from_map.c>
53 static unsigned n(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
56 case isl_dim_param
: return dim
->nparam
;
57 case isl_dim_in
: return dim
->n_in
;
58 case isl_dim_out
: return dim
->n_out
;
59 case isl_dim_all
: return dim
->nparam
+ dim
->n_in
+ dim
->n_out
;
64 static unsigned pos(__isl_keep isl_space
*dim
, enum isl_dim_type type
)
67 case isl_dim_param
: return 1;
68 case isl_dim_in
: return 1 + dim
->nparam
;
69 case isl_dim_out
: return 1 + dim
->nparam
+ dim
->n_in
;
74 unsigned isl_basic_map_dim(__isl_keep isl_basic_map
*bmap
,
75 enum isl_dim_type type
)
80 case isl_dim_cst
: return 1;
83 case isl_dim_out
: return isl_space_dim(bmap
->dim
, type
);
84 case isl_dim_div
: return bmap
->n_div
;
85 case isl_dim_all
: return isl_basic_map_total_dim(bmap
);
90 /* Return the space of "map".
92 __isl_keep isl_space
*isl_map_peek_space(__isl_keep
const isl_map
*map
)
94 return map
? map
->dim
: NULL
;
97 unsigned isl_map_dim(__isl_keep isl_map
*map
, enum isl_dim_type type
)
99 return map
? n(map
->dim
, type
) : 0;
102 unsigned isl_set_dim(__isl_keep isl_set
*set
, enum isl_dim_type type
)
104 return set
? n(set
->dim
, type
) : 0;
107 unsigned isl_basic_map_offset(__isl_keep isl_basic_map
*bmap
,
108 enum isl_dim_type type
)
117 case isl_dim_cst
: return 0;
118 case isl_dim_param
: return 1;
119 case isl_dim_in
: return 1 + space
->nparam
;
120 case isl_dim_out
: return 1 + space
->nparam
+ space
->n_in
;
121 case isl_dim_div
: return 1 + space
->nparam
+ space
->n_in
+
127 unsigned isl_basic_set_offset(__isl_keep isl_basic_set
*bset
,
128 enum isl_dim_type type
)
130 return isl_basic_map_offset(bset
, type
);
133 static unsigned map_offset(__isl_keep isl_map
*map
, enum isl_dim_type type
)
135 return pos(map
->dim
, type
);
138 unsigned isl_basic_set_dim(__isl_keep isl_basic_set
*bset
,
139 enum isl_dim_type type
)
141 return isl_basic_map_dim(bset
, type
);
144 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set
*bset
)
146 return isl_basic_set_dim(bset
, isl_dim_set
);
149 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set
*bset
)
151 return isl_basic_set_dim(bset
, isl_dim_param
);
154 unsigned isl_basic_set_total_dim(__isl_keep
const isl_basic_set
*bset
)
158 return isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->n_div
;
161 unsigned isl_set_n_dim(__isl_keep isl_set
*set
)
163 return isl_set_dim(set
, isl_dim_set
);
166 unsigned isl_set_n_param(__isl_keep isl_set
*set
)
168 return isl_set_dim(set
, isl_dim_param
);
171 unsigned isl_basic_map_n_in(__isl_keep
const isl_basic_map
*bmap
)
173 return bmap
? bmap
->dim
->n_in
: 0;
176 unsigned isl_basic_map_n_out(__isl_keep
const isl_basic_map
*bmap
)
178 return bmap
? bmap
->dim
->n_out
: 0;
181 unsigned isl_basic_map_n_param(__isl_keep
const isl_basic_map
*bmap
)
183 return bmap
? bmap
->dim
->nparam
: 0;
186 unsigned isl_basic_map_n_div(__isl_keep
const isl_basic_map
*bmap
)
188 return bmap
? bmap
->n_div
: 0;
191 unsigned isl_basic_map_total_dim(__isl_keep
const isl_basic_map
*bmap
)
193 return bmap
? isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->n_div
: 0;
196 unsigned isl_map_n_in(__isl_keep
const isl_map
*map
)
198 return map
? map
->dim
->n_in
: 0;
201 unsigned isl_map_n_out(__isl_keep
const isl_map
*map
)
203 return map
? map
->dim
->n_out
: 0;
206 unsigned isl_map_n_param(__isl_keep
const isl_map
*map
)
208 return map
? map
->dim
->nparam
: 0;
211 /* Return the number of equality constraints in the description of "bmap".
212 * Return -1 on error.
214 int isl_basic_map_n_equality(__isl_keep isl_basic_map
*bmap
)
221 /* Return the number of equality constraints in the description of "bset".
222 * Return -1 on error.
224 int isl_basic_set_n_equality(__isl_keep isl_basic_set
*bset
)
226 return isl_basic_map_n_equality(bset_to_bmap(bset
));
229 /* Return the number of inequality constraints in the description of "bmap".
230 * Return -1 on error.
232 int isl_basic_map_n_inequality(__isl_keep isl_basic_map
*bmap
)
239 /* Return the number of inequality constraints in the description of "bset".
240 * Return -1 on error.
242 int isl_basic_set_n_inequality(__isl_keep isl_basic_set
*bset
)
244 return isl_basic_map_n_inequality(bset_to_bmap(bset
));
247 /* Do "bmap1" and "bmap2" have the same parameters?
249 static isl_bool
isl_basic_map_has_equal_params(__isl_keep isl_basic_map
*bmap1
,
250 __isl_keep isl_basic_map
*bmap2
)
252 isl_space
*space1
, *space2
;
254 space1
= isl_basic_map_peek_space(bmap1
);
255 space2
= isl_basic_map_peek_space(bmap2
);
256 return isl_space_has_equal_params(space1
, space2
);
259 /* Do "map1" and "map2" have the same parameters?
261 isl_bool
isl_map_has_equal_params(__isl_keep isl_map
*map1
,
262 __isl_keep isl_map
*map2
)
264 isl_space
*space1
, *space2
;
266 space1
= isl_map_peek_space(map1
);
267 space2
= isl_map_peek_space(map2
);
268 return isl_space_has_equal_params(space1
, space2
);
271 /* Do "map" and "set" have the same parameters?
273 static isl_bool
isl_map_set_has_equal_params(__isl_keep isl_map
*map
,
274 __isl_keep isl_set
*set
)
276 return isl_map_has_equal_params(map
, set_to_map(set
));
279 isl_bool
isl_map_compatible_domain(__isl_keep isl_map
*map
,
280 __isl_keep isl_set
*set
)
284 return isl_bool_error
;
285 m
= isl_map_has_equal_params(map
, set_to_map(set
));
288 return isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
289 set
->dim
, isl_dim_set
);
292 isl_bool
isl_basic_map_compatible_domain(__isl_keep isl_basic_map
*bmap
,
293 __isl_keep isl_basic_set
*bset
)
297 return isl_bool_error
;
298 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
301 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
302 bset
->dim
, isl_dim_set
);
305 isl_bool
isl_map_compatible_range(__isl_keep isl_map
*map
,
306 __isl_keep isl_set
*set
)
310 return isl_bool_error
;
311 m
= isl_map_has_equal_params(map
, set_to_map(set
));
314 return isl_space_tuple_is_equal(map
->dim
, isl_dim_out
,
315 set
->dim
, isl_dim_set
);
318 isl_bool
isl_basic_map_compatible_range(__isl_keep isl_basic_map
*bmap
,
319 __isl_keep isl_basic_set
*bset
)
323 return isl_bool_error
;
324 m
= isl_basic_map_has_equal_params(bmap
, bset_to_bmap(bset
));
327 return isl_space_tuple_is_equal(bmap
->dim
, isl_dim_out
,
328 bset
->dim
, isl_dim_set
);
331 isl_ctx
*isl_basic_map_get_ctx(__isl_keep isl_basic_map
*bmap
)
333 return bmap
? bmap
->ctx
: NULL
;
336 isl_ctx
*isl_basic_set_get_ctx(__isl_keep isl_basic_set
*bset
)
338 return bset
? bset
->ctx
: NULL
;
341 isl_ctx
*isl_map_get_ctx(__isl_keep isl_map
*map
)
343 return map
? map
->ctx
: NULL
;
346 isl_ctx
*isl_set_get_ctx(__isl_keep isl_set
*set
)
348 return set
? set
->ctx
: NULL
;
351 /* Return the space of "bmap".
353 __isl_keep isl_space
*isl_basic_map_peek_space(
354 __isl_keep
const isl_basic_map
*bmap
)
356 return bmap
? bmap
->dim
: NULL
;
359 /* Return the space of "bset".
361 __isl_keep isl_space
*isl_basic_set_peek_space(__isl_keep isl_basic_set
*bset
)
363 return isl_basic_map_peek_space(bset_to_bmap(bset
));
366 __isl_give isl_space
*isl_basic_map_get_space(__isl_keep isl_basic_map
*bmap
)
368 return isl_space_copy(isl_basic_map_peek_space(bmap
));
371 __isl_give isl_space
*isl_basic_set_get_space(__isl_keep isl_basic_set
*bset
)
373 return isl_basic_map_get_space(bset_to_bmap(bset
));
376 /* Extract the divs in "bmap" as a matrix.
378 __isl_give isl_mat
*isl_basic_map_get_divs(__isl_keep isl_basic_map
*bmap
)
389 ctx
= isl_basic_map_get_ctx(bmap
);
390 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
391 cols
= 1 + 1 + total
+ bmap
->n_div
;
392 div
= isl_mat_alloc(ctx
, bmap
->n_div
, cols
);
396 for (i
= 0; i
< bmap
->n_div
; ++i
)
397 isl_seq_cpy(div
->row
[i
], bmap
->div
[i
], cols
);
402 /* Extract the divs in "bset" as a matrix.
404 __isl_give isl_mat
*isl_basic_set_get_divs(__isl_keep isl_basic_set
*bset
)
406 return isl_basic_map_get_divs(bset
);
409 __isl_give isl_local_space
*isl_basic_map_get_local_space(
410 __isl_keep isl_basic_map
*bmap
)
417 div
= isl_basic_map_get_divs(bmap
);
418 return isl_local_space_alloc_div(isl_space_copy(bmap
->dim
), div
);
421 __isl_give isl_local_space
*isl_basic_set_get_local_space(
422 __isl_keep isl_basic_set
*bset
)
424 return isl_basic_map_get_local_space(bset
);
427 /* For each known div d = floor(f/m), add the constraints
430 * -(f-(m-1)) + m d >= 0
432 * Do not finalize the result.
434 static __isl_give isl_basic_map
*add_known_div_constraints(
435 __isl_take isl_basic_map
*bmap
)
442 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
445 bmap
= isl_basic_map_cow(bmap
);
446 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 2 * n_div
);
449 for (i
= 0; i
< n_div
; ++i
) {
450 if (isl_int_is_zero(bmap
->div
[i
][0]))
452 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
453 return isl_basic_map_free(bmap
);
459 __isl_give isl_basic_map
*isl_basic_map_from_local_space(
460 __isl_take isl_local_space
*ls
)
469 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
470 bmap
= isl_basic_map_alloc_space(isl_local_space_get_space(ls
),
471 n_div
, 0, 2 * n_div
);
473 for (i
= 0; i
< n_div
; ++i
)
474 if (isl_basic_map_alloc_div(bmap
) < 0)
477 for (i
= 0; i
< n_div
; ++i
)
478 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
479 bmap
= add_known_div_constraints(bmap
);
481 isl_local_space_free(ls
);
484 isl_local_space_free(ls
);
485 isl_basic_map_free(bmap
);
489 __isl_give isl_basic_set
*isl_basic_set_from_local_space(
490 __isl_take isl_local_space
*ls
)
492 return isl_basic_map_from_local_space(ls
);
495 __isl_give isl_space
*isl_map_get_space(__isl_keep isl_map
*map
)
497 return isl_space_copy(isl_map_peek_space(map
));
500 __isl_give isl_space
*isl_set_get_space(__isl_keep isl_set
*set
)
504 return isl_space_copy(set
->dim
);
507 __isl_give isl_basic_map
*isl_basic_map_set_tuple_name(
508 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, const char *s
)
510 bmap
= isl_basic_map_cow(bmap
);
513 bmap
->dim
= isl_space_set_tuple_name(bmap
->dim
, type
, s
);
516 bmap
= isl_basic_map_finalize(bmap
);
519 isl_basic_map_free(bmap
);
523 __isl_give isl_basic_set
*isl_basic_set_set_tuple_name(
524 __isl_take isl_basic_set
*bset
, const char *s
)
526 return isl_basic_map_set_tuple_name(bset
, isl_dim_set
, s
);
529 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map
*bmap
,
530 enum isl_dim_type type
)
532 return bmap
? isl_space_get_tuple_name(bmap
->dim
, type
) : NULL
;
535 __isl_give isl_map
*isl_map_set_tuple_name(__isl_take isl_map
*map
,
536 enum isl_dim_type type
, const char *s
)
540 map
= isl_map_cow(map
);
544 map
->dim
= isl_space_set_tuple_name(map
->dim
, type
, s
);
548 for (i
= 0; i
< map
->n
; ++i
) {
549 map
->p
[i
] = isl_basic_map_set_tuple_name(map
->p
[i
], type
, s
);
560 /* Replace the identifier of the tuple of type "type" by "id".
562 __isl_give isl_basic_map
*isl_basic_map_set_tuple_id(
563 __isl_take isl_basic_map
*bmap
,
564 enum isl_dim_type type
, __isl_take isl_id
*id
)
566 bmap
= isl_basic_map_cow(bmap
);
569 bmap
->dim
= isl_space_set_tuple_id(bmap
->dim
, type
, id
);
571 return isl_basic_map_free(bmap
);
572 bmap
= isl_basic_map_finalize(bmap
);
579 /* Replace the identifier of the tuple by "id".
581 __isl_give isl_basic_set
*isl_basic_set_set_tuple_id(
582 __isl_take isl_basic_set
*bset
, __isl_take isl_id
*id
)
584 return isl_basic_map_set_tuple_id(bset
, isl_dim_set
, id
);
587 /* Does the input or output tuple have a name?
589 isl_bool
isl_map_has_tuple_name(__isl_keep isl_map
*map
, enum isl_dim_type type
)
591 return map
? isl_space_has_tuple_name(map
->dim
, type
) : isl_bool_error
;
594 const char *isl_map_get_tuple_name(__isl_keep isl_map
*map
,
595 enum isl_dim_type type
)
597 return map
? isl_space_get_tuple_name(map
->dim
, type
) : NULL
;
600 __isl_give isl_set
*isl_set_set_tuple_name(__isl_take isl_set
*set
,
603 return set_from_map(isl_map_set_tuple_name(set_to_map(set
),
607 __isl_give isl_map
*isl_map_set_tuple_id(__isl_take isl_map
*map
,
608 enum isl_dim_type type
, __isl_take isl_id
*id
)
610 map
= isl_map_cow(map
);
614 map
->dim
= isl_space_set_tuple_id(map
->dim
, type
, id
);
616 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
622 __isl_give isl_set
*isl_set_set_tuple_id(__isl_take isl_set
*set
,
623 __isl_take isl_id
*id
)
625 return isl_map_set_tuple_id(set
, isl_dim_set
, id
);
628 __isl_give isl_map
*isl_map_reset_tuple_id(__isl_take isl_map
*map
,
629 enum isl_dim_type type
)
631 map
= isl_map_cow(map
);
635 map
->dim
= isl_space_reset_tuple_id(map
->dim
, type
);
637 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
640 __isl_give isl_set
*isl_set_reset_tuple_id(__isl_take isl_set
*set
)
642 return isl_map_reset_tuple_id(set
, isl_dim_set
);
645 isl_bool
isl_map_has_tuple_id(__isl_keep isl_map
*map
, enum isl_dim_type type
)
647 return map
? isl_space_has_tuple_id(map
->dim
, type
) : isl_bool_error
;
650 __isl_give isl_id
*isl_map_get_tuple_id(__isl_keep isl_map
*map
,
651 enum isl_dim_type type
)
653 return map
? isl_space_get_tuple_id(map
->dim
, type
) : NULL
;
656 isl_bool
isl_set_has_tuple_id(__isl_keep isl_set
*set
)
658 return isl_map_has_tuple_id(set
, isl_dim_set
);
661 __isl_give isl_id
*isl_set_get_tuple_id(__isl_keep isl_set
*set
)
663 return isl_map_get_tuple_id(set
, isl_dim_set
);
666 /* Does the set tuple have a name?
668 isl_bool
isl_set_has_tuple_name(__isl_keep isl_set
*set
)
671 return isl_bool_error
;
672 return isl_space_has_tuple_name(set
->dim
, isl_dim_set
);
676 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set
*bset
)
678 return bset
? isl_space_get_tuple_name(bset
->dim
, isl_dim_set
) : NULL
;
681 const char *isl_set_get_tuple_name(__isl_keep isl_set
*set
)
683 return set
? isl_space_get_tuple_name(set
->dim
, isl_dim_set
) : NULL
;
686 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map
*bmap
,
687 enum isl_dim_type type
, unsigned pos
)
689 return bmap
? isl_space_get_dim_name(bmap
->dim
, type
, pos
) : NULL
;
692 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set
*bset
,
693 enum isl_dim_type type
, unsigned pos
)
695 return bset
? isl_space_get_dim_name(bset
->dim
, type
, pos
) : NULL
;
698 /* Does the given dimension have a name?
700 isl_bool
isl_map_has_dim_name(__isl_keep isl_map
*map
,
701 enum isl_dim_type type
, unsigned pos
)
704 return isl_bool_error
;
705 return isl_space_has_dim_name(map
->dim
, type
, pos
);
708 const char *isl_map_get_dim_name(__isl_keep isl_map
*map
,
709 enum isl_dim_type type
, unsigned pos
)
711 return map
? isl_space_get_dim_name(map
->dim
, type
, pos
) : NULL
;
714 const char *isl_set_get_dim_name(__isl_keep isl_set
*set
,
715 enum isl_dim_type type
, unsigned pos
)
717 return set
? isl_space_get_dim_name(set
->dim
, type
, pos
) : NULL
;
720 /* Does the given dimension have a name?
722 isl_bool
isl_set_has_dim_name(__isl_keep isl_set
*set
,
723 enum isl_dim_type type
, unsigned pos
)
726 return isl_bool_error
;
727 return isl_space_has_dim_name(set
->dim
, type
, pos
);
730 __isl_give isl_basic_map
*isl_basic_map_set_dim_name(
731 __isl_take isl_basic_map
*bmap
,
732 enum isl_dim_type type
, unsigned pos
, const char *s
)
734 bmap
= isl_basic_map_cow(bmap
);
737 bmap
->dim
= isl_space_set_dim_name(bmap
->dim
, type
, pos
, s
);
740 return isl_basic_map_finalize(bmap
);
742 isl_basic_map_free(bmap
);
746 __isl_give isl_map
*isl_map_set_dim_name(__isl_take isl_map
*map
,
747 enum isl_dim_type type
, unsigned pos
, const char *s
)
751 map
= isl_map_cow(map
);
755 map
->dim
= isl_space_set_dim_name(map
->dim
, type
, pos
, s
);
759 for (i
= 0; i
< map
->n
; ++i
) {
760 map
->p
[i
] = isl_basic_map_set_dim_name(map
->p
[i
], type
, pos
, s
);
771 __isl_give isl_basic_set
*isl_basic_set_set_dim_name(
772 __isl_take isl_basic_set
*bset
,
773 enum isl_dim_type type
, unsigned pos
, const char *s
)
775 return bset_from_bmap(isl_basic_map_set_dim_name(bset_to_bmap(bset
),
779 __isl_give isl_set
*isl_set_set_dim_name(__isl_take isl_set
*set
,
780 enum isl_dim_type type
, unsigned pos
, const char *s
)
782 return set_from_map(isl_map_set_dim_name(set_to_map(set
),
786 isl_bool
isl_basic_map_has_dim_id(__isl_keep isl_basic_map
*bmap
,
787 enum isl_dim_type type
, unsigned pos
)
790 return isl_bool_error
;
791 return isl_space_has_dim_id(bmap
->dim
, type
, pos
);
794 __isl_give isl_id
*isl_basic_set_get_dim_id(__isl_keep isl_basic_set
*bset
,
795 enum isl_dim_type type
, unsigned pos
)
797 return bset
? isl_space_get_dim_id(bset
->dim
, type
, pos
) : NULL
;
800 isl_bool
isl_map_has_dim_id(__isl_keep isl_map
*map
,
801 enum isl_dim_type type
, unsigned pos
)
803 return map
? isl_space_has_dim_id(map
->dim
, type
, pos
) : isl_bool_error
;
806 __isl_give isl_id
*isl_map_get_dim_id(__isl_keep isl_map
*map
,
807 enum isl_dim_type type
, unsigned pos
)
809 return map
? isl_space_get_dim_id(map
->dim
, type
, pos
) : NULL
;
812 isl_bool
isl_set_has_dim_id(__isl_keep isl_set
*set
,
813 enum isl_dim_type type
, unsigned pos
)
815 return isl_map_has_dim_id(set
, type
, pos
);
818 __isl_give isl_id
*isl_set_get_dim_id(__isl_keep isl_set
*set
,
819 enum isl_dim_type type
, unsigned pos
)
821 return isl_map_get_dim_id(set
, type
, pos
);
824 __isl_give isl_map
*isl_map_set_dim_id(__isl_take isl_map
*map
,
825 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
827 map
= isl_map_cow(map
);
831 map
->dim
= isl_space_set_dim_id(map
->dim
, type
, pos
, id
);
833 return isl_map_reset_space(map
, isl_space_copy(map
->dim
));
839 __isl_give isl_set
*isl_set_set_dim_id(__isl_take isl_set
*set
,
840 enum isl_dim_type type
, unsigned pos
, __isl_take isl_id
*id
)
842 return isl_map_set_dim_id(set
, type
, pos
, id
);
845 int isl_map_find_dim_by_id(__isl_keep isl_map
*map
, enum isl_dim_type type
,
846 __isl_keep isl_id
*id
)
850 return isl_space_find_dim_by_id(map
->dim
, type
, id
);
853 int isl_set_find_dim_by_id(__isl_keep isl_set
*set
, enum isl_dim_type type
,
854 __isl_keep isl_id
*id
)
856 return isl_map_find_dim_by_id(set
, type
, id
);
859 /* Return the position of the dimension of the given type and name
861 * Return -1 if no such dimension can be found.
863 int isl_basic_map_find_dim_by_name(__isl_keep isl_basic_map
*bmap
,
864 enum isl_dim_type type
, const char *name
)
868 return isl_space_find_dim_by_name(bmap
->dim
, type
, name
);
871 int isl_map_find_dim_by_name(__isl_keep isl_map
*map
, enum isl_dim_type type
,
876 return isl_space_find_dim_by_name(map
->dim
, type
, name
);
879 int isl_set_find_dim_by_name(__isl_keep isl_set
*set
, enum isl_dim_type type
,
882 return isl_map_find_dim_by_name(set
, type
, name
);
885 /* Check whether equality i of bset is a pure stride constraint
886 * on a single dimension, i.e., of the form
890 * with k a constant and e an existentially quantified variable.
892 isl_bool
isl_basic_set_eq_is_stride(__isl_keep isl_basic_set
*bset
, int i
)
901 return isl_bool_error
;
903 if (!isl_int_is_zero(bset
->eq
[i
][0]))
904 return isl_bool_false
;
906 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
907 d
= isl_basic_set_dim(bset
, isl_dim_set
);
908 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
910 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1, nparam
) != -1)
911 return isl_bool_false
;
912 pos1
= isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
, d
);
914 return isl_bool_false
;
915 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ pos1
+ 1,
917 return isl_bool_false
;
919 pos2
= isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ d
, n_div
);
921 return isl_bool_false
;
922 if (isl_seq_first_non_zero(bset
->eq
[i
] + 1 + nparam
+ d
+ pos2
+ 1,
923 n_div
- pos2
- 1) != -1)
924 return isl_bool_false
;
925 if (!isl_int_is_one(bset
->eq
[i
][1 + nparam
+ pos1
]) &&
926 !isl_int_is_negone(bset
->eq
[i
][1 + nparam
+ pos1
]))
927 return isl_bool_false
;
929 return isl_bool_true
;
932 /* Reset the user pointer on all identifiers of parameters and tuples
933 * of the space of "map".
935 __isl_give isl_map
*isl_map_reset_user(__isl_take isl_map
*map
)
939 space
= isl_map_get_space(map
);
940 space
= isl_space_reset_user(space
);
941 map
= isl_map_reset_space(map
, space
);
946 /* Reset the user pointer on all identifiers of parameters and tuples
947 * of the space of "set".
949 __isl_give isl_set
*isl_set_reset_user(__isl_take isl_set
*set
)
951 return isl_map_reset_user(set
);
954 isl_bool
isl_basic_map_is_rational(__isl_keep isl_basic_map
*bmap
)
957 return isl_bool_error
;
958 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
961 /* Has "map" been marked as a rational map?
962 * In particular, have all basic maps in "map" been marked this way?
963 * An empty map is not considered to be rational.
964 * Maps where only some of the basic maps are marked rational
967 isl_bool
isl_map_is_rational(__isl_keep isl_map
*map
)
973 return isl_bool_error
;
975 return isl_bool_false
;
976 rational
= isl_basic_map_is_rational(map
->p
[0]);
979 for (i
= 1; i
< map
->n
; ++i
) {
982 rational_i
= isl_basic_map_is_rational(map
->p
[i
]);
985 if (rational
!= rational_i
)
986 isl_die(isl_map_get_ctx(map
), isl_error_unsupported
,
987 "mixed rational and integer basic maps "
988 "not supported", return isl_bool_error
);
994 /* Has "set" been marked as a rational set?
995 * In particular, have all basic set in "set" been marked this way?
996 * An empty set is not considered to be rational.
997 * Sets where only some of the basic sets are marked rational
1000 isl_bool
isl_set_is_rational(__isl_keep isl_set
*set
)
1002 return isl_map_is_rational(set
);
1005 int isl_basic_set_is_rational(__isl_keep isl_basic_set
*bset
)
1007 return isl_basic_map_is_rational(bset
);
1010 /* Does "bmap" contain any rational points?
1012 * If "bmap" has an equality for each dimension, equating the dimension
1013 * to an integer constant, then it has no rational points, even if it
1014 * is marked as rational.
1016 isl_bool
isl_basic_map_has_rational(__isl_keep isl_basic_map
*bmap
)
1018 isl_bool has_rational
= isl_bool_true
;
1022 return isl_bool_error
;
1023 if (isl_basic_map_plain_is_empty(bmap
))
1024 return isl_bool_false
;
1025 if (!isl_basic_map_is_rational(bmap
))
1026 return isl_bool_false
;
1027 bmap
= isl_basic_map_copy(bmap
);
1028 bmap
= isl_basic_map_implicit_equalities(bmap
);
1030 return isl_bool_error
;
1031 total
= isl_basic_map_total_dim(bmap
);
1032 if (bmap
->n_eq
== total
) {
1034 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
1035 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1, total
);
1038 if (!isl_int_is_one(bmap
->eq
[i
][1 + j
]) &&
1039 !isl_int_is_negone(bmap
->eq
[i
][1 + j
]))
1041 j
= isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + j
+ 1,
1046 if (i
== bmap
->n_eq
)
1047 has_rational
= isl_bool_false
;
1049 isl_basic_map_free(bmap
);
1051 return has_rational
;
1054 /* Does "map" contain any rational points?
1056 isl_bool
isl_map_has_rational(__isl_keep isl_map
*map
)
1059 isl_bool has_rational
;
1062 return isl_bool_error
;
1063 for (i
= 0; i
< map
->n
; ++i
) {
1064 has_rational
= isl_basic_map_has_rational(map
->p
[i
]);
1065 if (has_rational
< 0 || has_rational
)
1066 return has_rational
;
1068 return isl_bool_false
;
1071 /* Does "set" contain any rational points?
1073 isl_bool
isl_set_has_rational(__isl_keep isl_set
*set
)
1075 return isl_map_has_rational(set
);
1078 /* Is this basic set a parameter domain?
1080 isl_bool
isl_basic_set_is_params(__isl_keep isl_basic_set
*bset
)
1083 return isl_bool_error
;
1084 return isl_space_is_params(bset
->dim
);
1087 /* Is this set a parameter domain?
1089 isl_bool
isl_set_is_params(__isl_keep isl_set
*set
)
1092 return isl_bool_error
;
1093 return isl_space_is_params(set
->dim
);
1096 /* Is this map actually a parameter domain?
1097 * Users should never call this function. Outside of isl,
1098 * a map can never be a parameter domain.
1100 isl_bool
isl_map_is_params(__isl_keep isl_map
*map
)
1103 return isl_bool_error
;
1104 return isl_space_is_params(map
->dim
);
1107 static __isl_give isl_basic_map
*basic_map_init(isl_ctx
*ctx
,
1108 __isl_take isl_basic_map
*bmap
, unsigned extra
,
1109 unsigned n_eq
, unsigned n_ineq
)
1112 size_t row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + extra
;
1117 bmap
->block
= isl_blk_alloc(ctx
, (n_ineq
+ n_eq
) * row_size
);
1118 if (isl_blk_is_error(bmap
->block
))
1121 bmap
->ineq
= isl_alloc_array(ctx
, isl_int
*, n_ineq
+ n_eq
);
1122 if ((n_ineq
+ n_eq
) && !bmap
->ineq
)
1126 bmap
->block2
= isl_blk_empty();
1129 bmap
->block2
= isl_blk_alloc(ctx
, extra
* (1 + row_size
));
1130 if (isl_blk_is_error(bmap
->block2
))
1133 bmap
->div
= isl_alloc_array(ctx
, isl_int
*, extra
);
1138 for (i
= 0; i
< n_ineq
+ n_eq
; ++i
)
1139 bmap
->ineq
[i
] = bmap
->block
.data
+ i
* row_size
;
1141 for (i
= 0; i
< extra
; ++i
)
1142 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + row_size
);
1146 bmap
->c_size
= n_eq
+ n_ineq
;
1147 bmap
->eq
= bmap
->ineq
+ n_ineq
;
1148 bmap
->extra
= extra
;
1152 bmap
->sample
= NULL
;
1156 isl_basic_map_free(bmap
);
1160 struct isl_basic_set
*isl_basic_set_alloc(struct isl_ctx
*ctx
,
1161 unsigned nparam
, unsigned dim
, unsigned extra
,
1162 unsigned n_eq
, unsigned n_ineq
)
1164 struct isl_basic_map
*bmap
;
1167 space
= isl_space_set_alloc(ctx
, nparam
, dim
);
1171 bmap
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1172 return bset_from_bmap(bmap
);
1175 __isl_give isl_basic_set
*isl_basic_set_alloc_space(__isl_take isl_space
*dim
,
1176 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1178 struct isl_basic_map
*bmap
;
1181 isl_assert(dim
->ctx
, dim
->n_in
== 0, goto error
);
1182 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1183 return bset_from_bmap(bmap
);
1185 isl_space_free(dim
);
1189 __isl_give isl_basic_map
*isl_basic_map_alloc_space(__isl_take isl_space
*space
,
1190 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1192 struct isl_basic_map
*bmap
;
1196 bmap
= isl_calloc_type(space
->ctx
, struct isl_basic_map
);
1201 return basic_map_init(space
->ctx
, bmap
, extra
, n_eq
, n_ineq
);
1203 isl_space_free(space
);
1207 struct isl_basic_map
*isl_basic_map_alloc(struct isl_ctx
*ctx
,
1208 unsigned nparam
, unsigned in
, unsigned out
, unsigned extra
,
1209 unsigned n_eq
, unsigned n_ineq
)
1211 struct isl_basic_map
*bmap
;
1214 dim
= isl_space_alloc(ctx
, nparam
, in
, out
);
1218 bmap
= isl_basic_map_alloc_space(dim
, extra
, n_eq
, n_ineq
);
1222 static __isl_give isl_basic_map
*dup_constraints(__isl_take isl_basic_map
*dst
,
1223 __isl_keep isl_basic_map
*src
)
1226 unsigned total
= isl_basic_map_total_dim(src
);
1231 for (i
= 0; i
< src
->n_eq
; ++i
) {
1232 int j
= isl_basic_map_alloc_equality(dst
);
1234 return isl_basic_map_free(dst
);
1235 isl_seq_cpy(dst
->eq
[j
], src
->eq
[i
], 1+total
);
1238 for (i
= 0; i
< src
->n_ineq
; ++i
) {
1239 int j
= isl_basic_map_alloc_inequality(dst
);
1241 return isl_basic_map_free(dst
);
1242 isl_seq_cpy(dst
->ineq
[j
], src
->ineq
[i
], 1+total
);
1245 for (i
= 0; i
< src
->n_div
; ++i
) {
1246 int j
= isl_basic_map_alloc_div(dst
);
1248 return isl_basic_map_free(dst
);
1249 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
);
1251 ISL_F_SET(dst
, ISL_BASIC_SET_FINAL
);
1255 __isl_give isl_basic_map
*isl_basic_map_dup(__isl_keep isl_basic_map
*bmap
)
1257 struct isl_basic_map
*dup
;
1261 dup
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
1262 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
1263 dup
= dup_constraints(dup
, bmap
);
1266 dup
->flags
= bmap
->flags
;
1267 dup
->sample
= isl_vec_copy(bmap
->sample
);
1271 struct isl_basic_set
*isl_basic_set_dup(struct isl_basic_set
*bset
)
1273 struct isl_basic_map
*dup
;
1275 dup
= isl_basic_map_dup(bset_to_bmap(bset
));
1276 return bset_from_bmap(dup
);
1279 __isl_give isl_basic_set
*isl_basic_set_copy(__isl_keep isl_basic_set
*bset
)
1284 if (ISL_F_ISSET(bset
, ISL_BASIC_SET_FINAL
)) {
1288 return isl_basic_set_dup(bset
);
1291 __isl_give isl_set
*isl_set_copy(__isl_keep isl_set
*set
)
1300 __isl_give isl_basic_map
*isl_basic_map_copy(__isl_keep isl_basic_map
*bmap
)
1305 if (ISL_F_ISSET(bmap
, ISL_BASIC_SET_FINAL
)) {
1309 bmap
= isl_basic_map_dup(bmap
);
1311 ISL_F_SET(bmap
, ISL_BASIC_SET_FINAL
);
1315 __isl_give isl_map
*isl_map_copy(__isl_keep isl_map
*map
)
1324 __isl_null isl_basic_map
*isl_basic_map_free(__isl_take isl_basic_map
*bmap
)
1329 if (--bmap
->ref
> 0)
1332 isl_ctx_deref(bmap
->ctx
);
1334 isl_blk_free(bmap
->ctx
, bmap
->block2
);
1336 isl_blk_free(bmap
->ctx
, bmap
->block
);
1337 isl_vec_free(bmap
->sample
);
1338 isl_space_free(bmap
->dim
);
1344 __isl_null isl_basic_set
*isl_basic_set_free(__isl_take isl_basic_set
*bset
)
1346 return isl_basic_map_free(bset_to_bmap(bset
));
1349 static int room_for_con(struct isl_basic_map
*bmap
, unsigned n
)
1351 return bmap
->n_eq
+ bmap
->n_ineq
+ n
<= bmap
->c_size
;
1354 /* Check that "map" has only named parameters, reporting an error
1357 isl_stat
isl_map_check_named_params(__isl_keep isl_map
*map
)
1359 return isl_space_check_named_params(isl_map_peek_space(map
));
1362 /* Check that "bmap" has only named parameters, reporting an error
1365 static isl_stat
isl_basic_map_check_named_params(__isl_keep isl_basic_map
*bmap
)
1367 return isl_space_check_named_params(isl_basic_map_peek_space(bmap
));
1370 /* Check that "bmap1" and "bmap2" have the same parameters,
1371 * reporting an error if they do not.
1373 static isl_stat
isl_basic_map_check_equal_params(
1374 __isl_keep isl_basic_map
*bmap1
, __isl_keep isl_basic_map
*bmap2
)
1378 match
= isl_basic_map_has_equal_params(bmap1
, bmap2
);
1380 return isl_stat_error
;
1382 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
1383 "parameters don't match", return isl_stat_error
);
1387 __isl_give isl_map
*isl_map_align_params_map_map_and(
1388 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
,
1389 __isl_give isl_map
*(*fn
)(__isl_take isl_map
*map1
,
1390 __isl_take isl_map
*map2
))
1394 if (isl_map_has_equal_params(map1
, map2
))
1395 return fn(map1
, map2
);
1396 if (isl_map_check_named_params(map1
) < 0)
1398 if (isl_map_check_named_params(map2
) < 0)
1400 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1401 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1402 return fn(map1
, map2
);
1409 isl_bool
isl_map_align_params_map_map_and_test(__isl_keep isl_map
*map1
,
1410 __isl_keep isl_map
*map2
,
1411 isl_bool (*fn
)(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
))
1416 return isl_bool_error
;
1417 if (isl_map_has_equal_params(map1
, map2
))
1418 return fn(map1
, map2
);
1419 if (isl_map_check_named_params(map1
) < 0)
1420 return isl_bool_error
;
1421 if (isl_map_check_named_params(map2
) < 0)
1422 return isl_bool_error
;
1423 map1
= isl_map_copy(map1
);
1424 map2
= isl_map_copy(map2
);
1425 map1
= isl_map_align_params(map1
, isl_map_get_space(map2
));
1426 map2
= isl_map_align_params(map2
, isl_map_get_space(map1
));
1433 int isl_basic_map_alloc_equality(struct isl_basic_map
*bmap
)
1435 struct isl_ctx
*ctx
;
1439 isl_assert(ctx
, room_for_con(bmap
, 1), return -1);
1440 isl_assert(ctx
, (bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
<= bmap
->c_size
,
1442 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1443 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1444 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1445 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1446 if ((bmap
->eq
- bmap
->ineq
) + bmap
->n_eq
== bmap
->c_size
) {
1448 int j
= isl_basic_map_alloc_inequality(bmap
);
1452 bmap
->ineq
[j
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1453 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1460 isl_seq_clr(bmap
->eq
[bmap
->n_eq
] + 1 + isl_basic_map_total_dim(bmap
),
1461 bmap
->extra
- bmap
->n_div
);
1462 return bmap
->n_eq
++;
1465 int isl_basic_set_alloc_equality(struct isl_basic_set
*bset
)
1467 return isl_basic_map_alloc_equality(bset_to_bmap(bset
));
1470 int isl_basic_map_free_equality(struct isl_basic_map
*bmap
, unsigned n
)
1474 isl_assert(bmap
->ctx
, n
<= bmap
->n_eq
, return -1);
1479 int isl_basic_set_free_equality(struct isl_basic_set
*bset
, unsigned n
)
1481 return isl_basic_map_free_equality(bset_to_bmap(bset
), n
);
1484 int isl_basic_map_drop_equality(struct isl_basic_map
*bmap
, unsigned pos
)
1489 isl_assert(bmap
->ctx
, pos
< bmap
->n_eq
, return -1);
1491 if (pos
!= bmap
->n_eq
- 1) {
1493 bmap
->eq
[pos
] = bmap
->eq
[bmap
->n_eq
- 1];
1494 bmap
->eq
[bmap
->n_eq
- 1] = t
;
1500 /* Turn inequality "pos" of "bmap" into an equality.
1502 * In particular, we move the inequality in front of the equalities
1503 * and move the last inequality in the position of the moved inequality.
1504 * Note that isl_tab_make_equalities_explicit depends on this particular
1505 * change in the ordering of the constraints.
1507 void isl_basic_map_inequality_to_equality(
1508 struct isl_basic_map
*bmap
, unsigned pos
)
1512 t
= bmap
->ineq
[pos
];
1513 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1514 bmap
->ineq
[bmap
->n_ineq
- 1] = bmap
->eq
[-1];
1519 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1520 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
1521 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1522 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1525 static int room_for_ineq(struct isl_basic_map
*bmap
, unsigned n
)
1527 return bmap
->n_ineq
+ n
<= bmap
->eq
- bmap
->ineq
;
1530 int isl_basic_map_alloc_inequality(__isl_keep isl_basic_map
*bmap
)
1532 struct isl_ctx
*ctx
;
1536 isl_assert(ctx
, room_for_ineq(bmap
, 1), return -1);
1537 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_IMPLICIT
);
1538 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
1539 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
1540 ISL_F_CLR(bmap
, ISL_BASIC_MAP_ALL_EQUALITIES
);
1541 isl_seq_clr(bmap
->ineq
[bmap
->n_ineq
] +
1542 1 + isl_basic_map_total_dim(bmap
),
1543 bmap
->extra
- bmap
->n_div
);
1544 return bmap
->n_ineq
++;
1547 int isl_basic_set_alloc_inequality(__isl_keep isl_basic_set
*bset
)
1549 return isl_basic_map_alloc_inequality(bset_to_bmap(bset
));
1552 int isl_basic_map_free_inequality(struct isl_basic_map
*bmap
, unsigned n
)
1556 isl_assert(bmap
->ctx
, n
<= bmap
->n_ineq
, return -1);
1561 int isl_basic_set_free_inequality(struct isl_basic_set
*bset
, unsigned n
)
1563 return isl_basic_map_free_inequality(bset_to_bmap(bset
), n
);
1566 int isl_basic_map_drop_inequality(struct isl_basic_map
*bmap
, unsigned pos
)
1571 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
1573 if (pos
!= bmap
->n_ineq
- 1) {
1574 t
= bmap
->ineq
[pos
];
1575 bmap
->ineq
[pos
] = bmap
->ineq
[bmap
->n_ineq
- 1];
1576 bmap
->ineq
[bmap
->n_ineq
- 1] = t
;
1577 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
1583 int isl_basic_set_drop_inequality(struct isl_basic_set
*bset
, unsigned pos
)
1585 return isl_basic_map_drop_inequality(bset_to_bmap(bset
), pos
);
1588 __isl_give isl_basic_map
*isl_basic_map_add_eq(__isl_take isl_basic_map
*bmap
,
1593 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
1596 k
= isl_basic_map_alloc_equality(bmap
);
1599 isl_seq_cpy(bmap
->eq
[k
], eq
, 1 + isl_basic_map_total_dim(bmap
));
1602 isl_basic_map_free(bmap
);
1606 __isl_give isl_basic_set
*isl_basic_set_add_eq(__isl_take isl_basic_set
*bset
,
1609 return bset_from_bmap(isl_basic_map_add_eq(bset_to_bmap(bset
), eq
));
1612 __isl_give isl_basic_map
*isl_basic_map_add_ineq(__isl_take isl_basic_map
*bmap
,
1617 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
1620 k
= isl_basic_map_alloc_inequality(bmap
);
1623 isl_seq_cpy(bmap
->ineq
[k
], ineq
, 1 + isl_basic_map_total_dim(bmap
));
1626 isl_basic_map_free(bmap
);
1630 __isl_give isl_basic_set
*isl_basic_set_add_ineq(__isl_take isl_basic_set
*bset
,
1633 return bset_from_bmap(isl_basic_map_add_ineq(bset_to_bmap(bset
), ineq
));
1636 int isl_basic_map_alloc_div(struct isl_basic_map
*bmap
)
1640 isl_assert(bmap
->ctx
, bmap
->n_div
< bmap
->extra
, return -1);
1641 isl_seq_clr(bmap
->div
[bmap
->n_div
] +
1642 1 + 1 + isl_basic_map_total_dim(bmap
),
1643 bmap
->extra
- bmap
->n_div
);
1644 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
1645 return bmap
->n_div
++;
1648 int isl_basic_set_alloc_div(struct isl_basic_set
*bset
)
1650 return isl_basic_map_alloc_div(bset_to_bmap(bset
));
1653 /* Check that there are "n" dimensions of type "type" starting at "first"
1656 static isl_stat
isl_basic_map_check_range(__isl_keep isl_basic_map
*bmap
,
1657 enum isl_dim_type type
, unsigned first
, unsigned n
)
1662 return isl_stat_error
;
1663 dim
= isl_basic_map_dim(bmap
, type
);
1664 if (first
+ n
> dim
|| first
+ n
< first
)
1665 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1666 "position or range out of bounds",
1667 return isl_stat_error
);
1671 /* Insert an extra integer division, prescribed by "div", to "bmap"
1672 * at (integer division) position "pos".
1674 * The integer division is first added at the end and then moved
1675 * into the right position.
1677 __isl_give isl_basic_map
*isl_basic_map_insert_div(
1678 __isl_take isl_basic_map
*bmap
, int pos
, __isl_keep isl_vec
*div
)
1682 bmap
= isl_basic_map_cow(bmap
);
1684 return isl_basic_map_free(bmap
);
1686 if (div
->size
!= 1 + 1 + isl_basic_map_dim(bmap
, isl_dim_all
))
1687 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
1688 "unexpected size", return isl_basic_map_free(bmap
));
1689 if (isl_basic_map_check_range(bmap
, isl_dim_div
, pos
, 0) < 0)
1690 return isl_basic_map_free(bmap
);
1692 bmap
= isl_basic_map_extend_space(bmap
,
1693 isl_basic_map_get_space(bmap
), 1, 0, 2);
1694 k
= isl_basic_map_alloc_div(bmap
);
1696 return isl_basic_map_free(bmap
);
1697 isl_seq_cpy(bmap
->div
[k
], div
->el
, div
->size
);
1698 isl_int_set_si(bmap
->div
[k
][div
->size
], 0);
1700 for (i
= k
; i
> pos
; --i
)
1701 isl_basic_map_swap_div(bmap
, i
, i
- 1);
1706 isl_stat
isl_basic_map_free_div(struct isl_basic_map
*bmap
, unsigned n
)
1709 return isl_stat_error
;
1710 isl_assert(bmap
->ctx
, n
<= bmap
->n_div
, return isl_stat_error
);
1715 /* Copy constraint from src to dst, putting the vars of src at offset
1716 * dim_off in dst and the divs of src at offset div_off in dst.
1717 * If both sets are actually map, then dim_off applies to the input
1720 static void copy_constraint(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1721 struct isl_basic_map
*src_map
, isl_int
*src
,
1722 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1724 unsigned src_nparam
= isl_basic_map_dim(src_map
, isl_dim_param
);
1725 unsigned dst_nparam
= isl_basic_map_dim(dst_map
, isl_dim_param
);
1726 unsigned src_in
= isl_basic_map_dim(src_map
, isl_dim_in
);
1727 unsigned dst_in
= isl_basic_map_dim(dst_map
, isl_dim_in
);
1728 unsigned src_out
= isl_basic_map_dim(src_map
, isl_dim_out
);
1729 unsigned dst_out
= isl_basic_map_dim(dst_map
, isl_dim_out
);
1730 isl_int_set(dst
[0], src
[0]);
1731 isl_seq_cpy(dst
+1, src
+1, isl_min(dst_nparam
, src_nparam
));
1732 if (dst_nparam
> src_nparam
)
1733 isl_seq_clr(dst
+1+src_nparam
,
1734 dst_nparam
- src_nparam
);
1735 isl_seq_clr(dst
+1+dst_nparam
, in_off
);
1736 isl_seq_cpy(dst
+1+dst_nparam
+in_off
,
1738 isl_min(dst_in
-in_off
, src_in
));
1739 if (dst_in
-in_off
> src_in
)
1740 isl_seq_clr(dst
+1+dst_nparam
+in_off
+src_in
,
1741 dst_in
- in_off
- src_in
);
1742 isl_seq_clr(dst
+1+dst_nparam
+dst_in
, out_off
);
1743 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+out_off
,
1744 src
+1+src_nparam
+src_in
,
1745 isl_min(dst_out
-out_off
, src_out
));
1746 if (dst_out
-out_off
> src_out
)
1747 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+out_off
+src_out
,
1748 dst_out
- out_off
- src_out
);
1749 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
, div_off
);
1750 isl_seq_cpy(dst
+1+dst_nparam
+dst_in
+dst_out
+div_off
,
1751 src
+1+src_nparam
+src_in
+src_out
,
1752 isl_min(dst_map
->extra
-div_off
, src_map
->n_div
));
1753 if (dst_map
->n_div
-div_off
> src_map
->n_div
)
1754 isl_seq_clr(dst
+1+dst_nparam
+dst_in
+dst_out
+
1755 div_off
+src_map
->n_div
,
1756 dst_map
->n_div
- div_off
- src_map
->n_div
);
1759 static void copy_div(struct isl_basic_map
*dst_map
, isl_int
*dst
,
1760 struct isl_basic_map
*src_map
, isl_int
*src
,
1761 unsigned in_off
, unsigned out_off
, unsigned div_off
)
1763 isl_int_set(dst
[0], src
[0]);
1764 copy_constraint(dst_map
, dst
+1, src_map
, src
+1, in_off
, out_off
, div_off
);
1767 static __isl_give isl_basic_map
*add_constraints(
1768 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
,
1769 unsigned i_pos
, unsigned o_pos
)
1774 if (!bmap1
|| !bmap2
)
1777 div_off
= bmap1
->n_div
;
1779 for (i
= 0; i
< bmap2
->n_eq
; ++i
) {
1780 int i1
= isl_basic_map_alloc_equality(bmap1
);
1783 copy_constraint(bmap1
, bmap1
->eq
[i1
], bmap2
, bmap2
->eq
[i
],
1784 i_pos
, o_pos
, div_off
);
1787 for (i
= 0; i
< bmap2
->n_ineq
; ++i
) {
1788 int i1
= isl_basic_map_alloc_inequality(bmap1
);
1791 copy_constraint(bmap1
, bmap1
->ineq
[i1
], bmap2
, bmap2
->ineq
[i
],
1792 i_pos
, o_pos
, div_off
);
1795 for (i
= 0; i
< bmap2
->n_div
; ++i
) {
1796 int i1
= isl_basic_map_alloc_div(bmap1
);
1799 copy_div(bmap1
, bmap1
->div
[i1
], bmap2
, bmap2
->div
[i
],
1800 i_pos
, o_pos
, div_off
);
1803 isl_basic_map_free(bmap2
);
1808 isl_basic_map_free(bmap1
);
1809 isl_basic_map_free(bmap2
);
1813 struct isl_basic_set
*isl_basic_set_add_constraints(struct isl_basic_set
*bset1
,
1814 struct isl_basic_set
*bset2
, unsigned pos
)
1816 return bset_from_bmap(add_constraints(bset_to_bmap(bset1
),
1817 bset_to_bmap(bset2
), 0, pos
));
1820 __isl_give isl_basic_map
*isl_basic_map_extend_space(
1821 __isl_take isl_basic_map
*base
, __isl_take isl_space
*space
,
1822 unsigned extra
, unsigned n_eq
, unsigned n_ineq
)
1824 struct isl_basic_map
*ext
;
1834 dims_ok
= isl_space_is_equal(base
->dim
, space
) &&
1835 base
->extra
>= base
->n_div
+ extra
;
1837 if (dims_ok
&& room_for_con(base
, n_eq
+ n_ineq
) &&
1838 room_for_ineq(base
, n_ineq
)) {
1839 isl_space_free(space
);
1843 isl_assert(base
->ctx
, base
->dim
->nparam
<= space
->nparam
, goto error
);
1844 isl_assert(base
->ctx
, base
->dim
->n_in
<= space
->n_in
, goto error
);
1845 isl_assert(base
->ctx
, base
->dim
->n_out
<= space
->n_out
, goto error
);
1846 extra
+= base
->extra
;
1848 n_ineq
+= base
->n_ineq
;
1850 ext
= isl_basic_map_alloc_space(space
, extra
, n_eq
, n_ineq
);
1856 ext
->sample
= isl_vec_copy(base
->sample
);
1857 flags
= base
->flags
;
1858 ext
= add_constraints(ext
, base
, 0, 0);
1861 ISL_F_CLR(ext
, ISL_BASIC_SET_FINAL
);
1867 isl_space_free(space
);
1868 isl_basic_map_free(base
);
1872 __isl_give isl_basic_set
*isl_basic_set_extend_space(
1873 __isl_take isl_basic_set
*base
,
1874 __isl_take isl_space
*dim
, unsigned extra
,
1875 unsigned n_eq
, unsigned n_ineq
)
1877 return bset_from_bmap(isl_basic_map_extend_space(bset_to_bmap(base
),
1878 dim
, extra
, n_eq
, n_ineq
));
1881 struct isl_basic_map
*isl_basic_map_extend_constraints(
1882 struct isl_basic_map
*base
, unsigned n_eq
, unsigned n_ineq
)
1886 return isl_basic_map_extend_space(base
, isl_space_copy(base
->dim
),
1890 struct isl_basic_map
*isl_basic_map_extend(struct isl_basic_map
*base
,
1891 unsigned nparam
, unsigned n_in
, unsigned n_out
, unsigned extra
,
1892 unsigned n_eq
, unsigned n_ineq
)
1894 struct isl_basic_map
*bmap
;
1899 dim
= isl_space_alloc(base
->ctx
, nparam
, n_in
, n_out
);
1903 bmap
= isl_basic_map_extend_space(base
, dim
, extra
, n_eq
, n_ineq
);
1906 isl_basic_map_free(base
);
1910 struct isl_basic_set
*isl_basic_set_extend(struct isl_basic_set
*base
,
1911 unsigned nparam
, unsigned dim
, unsigned extra
,
1912 unsigned n_eq
, unsigned n_ineq
)
1914 return bset_from_bmap(isl_basic_map_extend(bset_to_bmap(base
),
1915 nparam
, 0, dim
, extra
, n_eq
, n_ineq
));
1918 struct isl_basic_set
*isl_basic_set_extend_constraints(
1919 struct isl_basic_set
*base
, unsigned n_eq
, unsigned n_ineq
)
1921 isl_basic_map
*bmap
= bset_to_bmap(base
);
1922 bmap
= isl_basic_map_extend_constraints(bmap
, n_eq
, n_ineq
);
1923 return bset_from_bmap(bmap
);
1926 __isl_give isl_basic_set
*isl_basic_set_cow(__isl_take isl_basic_set
*bset
)
1928 return bset_from_bmap(isl_basic_map_cow(bset_to_bmap(bset
)));
1931 __isl_give isl_basic_map
*isl_basic_map_cow(__isl_take isl_basic_map
*bmap
)
1936 if (bmap
->ref
> 1) {
1938 bmap
= isl_basic_map_dup(bmap
);
1941 ISL_F_CLR(bmap
, ISL_BASIC_SET_FINAL
);
1942 ISL_F_CLR(bmap
, ISL_BASIC_MAP_REDUCED_COEFFICIENTS
);
1947 /* Clear all cached information in "map", either because it is about
1948 * to be modified or because it is being freed.
1949 * Always return the same pointer that is passed in.
1950 * This is needed for the use in isl_map_free.
1952 static __isl_give isl_map
*clear_caches(__isl_take isl_map
*map
)
1954 isl_basic_map_free(map
->cached_simple_hull
[0]);
1955 isl_basic_map_free(map
->cached_simple_hull
[1]);
1956 map
->cached_simple_hull
[0] = NULL
;
1957 map
->cached_simple_hull
[1] = NULL
;
1961 __isl_give isl_set
*isl_set_cow(__isl_take isl_set
*set
)
1963 return isl_map_cow(set
);
1966 /* Return an isl_map that is equal to "map" and that has only
1967 * a single reference.
1969 * If the original input already has only one reference, then
1970 * simply return it, but clear all cached information, since
1971 * it may be rendered invalid by the operations that will be
1972 * performed on the result.
1974 * Otherwise, create a duplicate (without any cached information).
1976 __isl_give isl_map
*isl_map_cow(__isl_take isl_map
*map
)
1982 return clear_caches(map
);
1984 return isl_map_dup(map
);
1987 static void swap_vars(struct isl_blk blk
, isl_int
*a
,
1988 unsigned a_len
, unsigned b_len
)
1990 isl_seq_cpy(blk
.data
, a
+a_len
, b_len
);
1991 isl_seq_cpy(blk
.data
+b_len
, a
, a_len
);
1992 isl_seq_cpy(a
, blk
.data
, b_len
+a_len
);
1995 static __isl_give isl_basic_map
*isl_basic_map_swap_vars(
1996 __isl_take isl_basic_map
*bmap
, unsigned pos
, unsigned n1
, unsigned n2
)
2004 isl_assert(bmap
->ctx
,
2005 pos
+ n1
+ n2
<= 1 + isl_basic_map_total_dim(bmap
), goto error
);
2007 if (n1
== 0 || n2
== 0)
2010 bmap
= isl_basic_map_cow(bmap
);
2014 blk
= isl_blk_alloc(bmap
->ctx
, n1
+ n2
);
2015 if (isl_blk_is_error(blk
))
2018 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2020 bmap
->eq
[i
] + pos
, n1
, n2
);
2022 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2024 bmap
->ineq
[i
] + pos
, n1
, n2
);
2026 for (i
= 0; i
< bmap
->n_div
; ++i
)
2028 bmap
->div
[i
]+1 + pos
, n1
, n2
);
2030 isl_blk_free(bmap
->ctx
, blk
);
2032 ISL_F_CLR(bmap
, ISL_BASIC_SET_SORTED
);
2033 bmap
= isl_basic_map_gauss(bmap
, NULL
);
2034 return isl_basic_map_finalize(bmap
);
2036 isl_basic_map_free(bmap
);
2040 __isl_give isl_basic_map
*isl_basic_map_set_to_empty(
2041 __isl_take isl_basic_map
*bmap
)
2047 total
= isl_basic_map_total_dim(bmap
);
2048 if (isl_basic_map_free_div(bmap
, bmap
->n_div
) < 0)
2049 return isl_basic_map_free(bmap
);
2050 isl_basic_map_free_inequality(bmap
, bmap
->n_ineq
);
2052 isl_basic_map_free_equality(bmap
, bmap
->n_eq
-1);
2054 i
= isl_basic_map_alloc_equality(bmap
);
2058 isl_int_set_si(bmap
->eq
[i
][0], 1);
2059 isl_seq_clr(bmap
->eq
[i
]+1, total
);
2060 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
2061 isl_vec_free(bmap
->sample
);
2062 bmap
->sample
= NULL
;
2063 return isl_basic_map_finalize(bmap
);
2065 isl_basic_map_free(bmap
);
2069 __isl_give isl_basic_set
*isl_basic_set_set_to_empty(
2070 __isl_take isl_basic_set
*bset
)
2072 return bset_from_bmap(isl_basic_map_set_to_empty(bset_to_bmap(bset
)));
2075 __isl_give isl_basic_map
*isl_basic_map_set_rational(
2076 __isl_take isl_basic_map
*bmap
)
2081 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
2084 bmap
= isl_basic_map_cow(bmap
);
2088 ISL_F_SET(bmap
, ISL_BASIC_MAP_RATIONAL
);
2090 return isl_basic_map_finalize(bmap
);
2093 __isl_give isl_basic_set
*isl_basic_set_set_rational(
2094 __isl_take isl_basic_set
*bset
)
2096 return isl_basic_map_set_rational(bset
);
2099 __isl_give isl_basic_set
*isl_basic_set_set_integral(
2100 __isl_take isl_basic_set
*bset
)
2105 if (!ISL_F_ISSET(bset
, ISL_BASIC_MAP_RATIONAL
))
2108 bset
= isl_basic_set_cow(bset
);
2112 ISL_F_CLR(bset
, ISL_BASIC_MAP_RATIONAL
);
2114 return isl_basic_set_finalize(bset
);
2117 __isl_give isl_map
*isl_map_set_rational(__isl_take isl_map
*map
)
2121 map
= isl_map_cow(map
);
2124 for (i
= 0; i
< map
->n
; ++i
) {
2125 map
->p
[i
] = isl_basic_map_set_rational(map
->p
[i
]);
2135 __isl_give isl_set
*isl_set_set_rational(__isl_take isl_set
*set
)
2137 return isl_map_set_rational(set
);
2140 /* Swap divs "a" and "b" in "bmap" (without modifying any of the constraints
2143 static void swap_div(__isl_keep isl_basic_map
*bmap
, int a
, int b
)
2145 isl_int
*t
= bmap
->div
[a
];
2146 bmap
->div
[a
] = bmap
->div
[b
];
2150 /* Swap divs "a" and "b" in "bmap" and adjust the constraints and
2151 * div definitions accordingly.
2153 void isl_basic_map_swap_div(struct isl_basic_map
*bmap
, int a
, int b
)
2156 unsigned off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2158 swap_div(bmap
, a
, b
);
2160 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2161 isl_int_swap(bmap
->eq
[i
][1+off
+a
], bmap
->eq
[i
][1+off
+b
]);
2163 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2164 isl_int_swap(bmap
->ineq
[i
][1+off
+a
], bmap
->ineq
[i
][1+off
+b
]);
2166 for (i
= 0; i
< bmap
->n_div
; ++i
)
2167 isl_int_swap(bmap
->div
[i
][1+1+off
+a
], bmap
->div
[i
][1+1+off
+b
]);
2168 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
2171 /* Swap divs "a" and "b" in "bset" and adjust the constraints and
2172 * div definitions accordingly.
2174 void isl_basic_set_swap_div(__isl_keep isl_basic_set
*bset
, int a
, int b
)
2176 isl_basic_map_swap_div(bset
, a
, b
);
2179 static void constraint_drop_vars(isl_int
*c
, unsigned n
, unsigned rem
)
2181 isl_seq_cpy(c
, c
+ n
, rem
);
2182 isl_seq_clr(c
+ rem
, n
);
2185 /* Drop n dimensions starting at first.
2187 * In principle, this frees up some extra variables as the number
2188 * of columns remains constant, but we would have to extend
2189 * the div array too as the number of rows in this array is assumed
2190 * to be equal to extra.
2192 __isl_give isl_basic_set
*isl_basic_set_drop_dims(
2193 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
2195 return isl_basic_map_drop(bset_to_bmap(bset
), isl_dim_set
, first
, n
);
2198 /* Move "n" divs starting at "first" to the end of the list of divs.
2200 static struct isl_basic_map
*move_divs_last(struct isl_basic_map
*bmap
,
2201 unsigned first
, unsigned n
)
2206 if (first
+ n
== bmap
->n_div
)
2209 div
= isl_alloc_array(bmap
->ctx
, isl_int
*, n
);
2212 for (i
= 0; i
< n
; ++i
)
2213 div
[i
] = bmap
->div
[first
+ i
];
2214 for (i
= 0; i
< bmap
->n_div
- first
- n
; ++i
)
2215 bmap
->div
[first
+ i
] = bmap
->div
[first
+ n
+ i
];
2216 for (i
= 0; i
< n
; ++i
)
2217 bmap
->div
[bmap
->n_div
- n
+ i
] = div
[i
];
2221 isl_basic_map_free(bmap
);
2225 /* Check that there are "n" dimensions of type "type" starting at "first"
2228 static isl_stat
isl_map_check_range(__isl_keep isl_map
*map
,
2229 enum isl_dim_type type
, unsigned first
, unsigned n
)
2232 return isl_stat_error
;
2233 if (first
+ n
> isl_map_dim(map
, type
) || first
+ n
< first
)
2234 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
2235 "position or range out of bounds",
2236 return isl_stat_error
);
2240 /* Drop "n" dimensions of type "type" starting at "first".
2242 * In principle, this frees up some extra variables as the number
2243 * of columns remains constant, but we would have to extend
2244 * the div array too as the number of rows in this array is assumed
2245 * to be equal to extra.
2247 __isl_give isl_basic_map
*isl_basic_map_drop(__isl_take isl_basic_map
*bmap
,
2248 enum isl_dim_type type
, unsigned first
, unsigned n
)
2258 dim
= isl_basic_map_dim(bmap
, type
);
2259 isl_assert(bmap
->ctx
, first
+ n
<= dim
, goto error
);
2261 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2264 bmap
= isl_basic_map_cow(bmap
);
2268 offset
= isl_basic_map_offset(bmap
, type
) + first
;
2269 left
= isl_basic_map_total_dim(bmap
) - (offset
- 1) - n
;
2270 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2271 constraint_drop_vars(bmap
->eq
[i
]+offset
, n
, left
);
2273 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2274 constraint_drop_vars(bmap
->ineq
[i
]+offset
, n
, left
);
2276 for (i
= 0; i
< bmap
->n_div
; ++i
)
2277 constraint_drop_vars(bmap
->div
[i
]+1+offset
, n
, left
);
2279 if (type
== isl_dim_div
) {
2280 bmap
= move_divs_last(bmap
, first
, n
);
2283 if (isl_basic_map_free_div(bmap
, n
) < 0)
2284 return isl_basic_map_free(bmap
);
2286 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
2290 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
2291 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
2292 bmap
= isl_basic_map_simplify(bmap
);
2293 return isl_basic_map_finalize(bmap
);
2295 isl_basic_map_free(bmap
);
2299 __isl_give isl_basic_set
*isl_basic_set_drop(__isl_take isl_basic_set
*bset
,
2300 enum isl_dim_type type
, unsigned first
, unsigned n
)
2302 return bset_from_bmap(isl_basic_map_drop(bset_to_bmap(bset
),
2306 /* No longer consider "map" to be normalized.
2308 static __isl_give isl_map
*isl_map_unmark_normalized(__isl_take isl_map
*map
)
2312 ISL_F_CLR(map
, ISL_MAP_NORMALIZED
);
2316 __isl_give isl_map
*isl_map_drop(__isl_take isl_map
*map
,
2317 enum isl_dim_type type
, unsigned first
, unsigned n
)
2321 if (isl_map_check_range(map
, type
, first
, n
) < 0)
2322 return isl_map_free(map
);
2324 if (n
== 0 && !isl_space_is_named_or_nested(map
->dim
, type
))
2326 map
= isl_map_cow(map
);
2329 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
2333 for (i
= 0; i
< map
->n
; ++i
) {
2334 map
->p
[i
] = isl_basic_map_drop(map
->p
[i
], type
, first
, n
);
2338 map
= isl_map_unmark_normalized(map
);
2346 __isl_give isl_set
*isl_set_drop(__isl_take isl_set
*set
,
2347 enum isl_dim_type type
, unsigned first
, unsigned n
)
2349 return set_from_map(isl_map_drop(set_to_map(set
), type
, first
, n
));
2353 * We don't cow, as the div is assumed to be redundant.
2355 __isl_give isl_basic_map
*isl_basic_map_drop_div(
2356 __isl_take isl_basic_map
*bmap
, unsigned div
)
2364 pos
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + div
;
2366 isl_assert(bmap
->ctx
, div
< bmap
->n_div
, goto error
);
2368 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2369 constraint_drop_vars(bmap
->eq
[i
]+pos
, 1, bmap
->extra
-div
-1);
2371 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2372 if (!isl_int_is_zero(bmap
->ineq
[i
][pos
])) {
2373 isl_basic_map_drop_inequality(bmap
, i
);
2377 constraint_drop_vars(bmap
->ineq
[i
]+pos
, 1, bmap
->extra
-div
-1);
2380 for (i
= 0; i
< bmap
->n_div
; ++i
)
2381 constraint_drop_vars(bmap
->div
[i
]+1+pos
, 1, bmap
->extra
-div
-1);
2383 if (div
!= bmap
->n_div
- 1) {
2385 isl_int
*t
= bmap
->div
[div
];
2387 for (j
= div
; j
< bmap
->n_div
- 1; ++j
)
2388 bmap
->div
[j
] = bmap
->div
[j
+1];
2390 bmap
->div
[bmap
->n_div
- 1] = t
;
2392 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
2393 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
2394 if (isl_basic_map_free_div(bmap
, 1) < 0)
2395 return isl_basic_map_free(bmap
);
2399 isl_basic_map_free(bmap
);
2403 /* Eliminate the specified n dimensions starting at first from the
2404 * constraints, without removing the dimensions from the space.
2405 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2407 __isl_give isl_map
*isl_map_eliminate(__isl_take isl_map
*map
,
2408 enum isl_dim_type type
, unsigned first
, unsigned n
)
2415 if (isl_map_check_range(map
, type
, first
, n
) < 0)
2416 return isl_map_free(map
);
2418 map
= isl_map_cow(map
);
2422 for (i
= 0; i
< map
->n
; ++i
) {
2423 map
->p
[i
] = isl_basic_map_eliminate(map
->p
[i
], type
, first
, n
);
2433 /* Eliminate the specified n dimensions starting at first from the
2434 * constraints, without removing the dimensions from the space.
2435 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2437 __isl_give isl_set
*isl_set_eliminate(__isl_take isl_set
*set
,
2438 enum isl_dim_type type
, unsigned first
, unsigned n
)
2440 return set_from_map(isl_map_eliminate(set_to_map(set
), type
, first
, n
));
2443 /* Eliminate the specified n dimensions starting at first from the
2444 * constraints, without removing the dimensions from the space.
2445 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
2447 __isl_give isl_set
*isl_set_eliminate_dims(__isl_take isl_set
*set
,
2448 unsigned first
, unsigned n
)
2450 return isl_set_eliminate(set
, isl_dim_set
, first
, n
);
2453 __isl_give isl_basic_map
*isl_basic_map_remove_divs(
2454 __isl_take isl_basic_map
*bmap
)
2458 bmap
= isl_basic_map_eliminate_vars(bmap
,
2459 isl_space_dim(bmap
->dim
, isl_dim_all
), bmap
->n_div
);
2463 return isl_basic_map_finalize(bmap
);
2466 __isl_give isl_basic_set
*isl_basic_set_remove_divs(
2467 __isl_take isl_basic_set
*bset
)
2469 return bset_from_bmap(isl_basic_map_remove_divs(bset_to_bmap(bset
)));
2472 __isl_give isl_map
*isl_map_remove_divs(__isl_take isl_map
*map
)
2481 map
= isl_map_cow(map
);
2485 for (i
= 0; i
< map
->n
; ++i
) {
2486 map
->p
[i
] = isl_basic_map_remove_divs(map
->p
[i
]);
2496 __isl_give isl_set
*isl_set_remove_divs(__isl_take isl_set
*set
)
2498 return isl_map_remove_divs(set
);
2501 __isl_give isl_basic_map
*isl_basic_map_remove_dims(
2502 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
2503 unsigned first
, unsigned n
)
2505 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2506 return isl_basic_map_free(bmap
);
2507 if (n
== 0 && !isl_space_is_named_or_nested(bmap
->dim
, type
))
2509 bmap
= isl_basic_map_eliminate_vars(bmap
,
2510 isl_basic_map_offset(bmap
, type
) - 1 + first
, n
);
2513 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
) && type
== isl_dim_div
)
2515 bmap
= isl_basic_map_drop(bmap
, type
, first
, n
);
2519 /* Return true if the definition of the given div (recursively) involves
2520 * any of the given variables.
2522 static isl_bool
div_involves_vars(__isl_keep isl_basic_map
*bmap
, int div
,
2523 unsigned first
, unsigned n
)
2526 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
2528 if (isl_int_is_zero(bmap
->div
[div
][0]))
2529 return isl_bool_false
;
2530 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + first
, n
) >= 0)
2531 return isl_bool_true
;
2533 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2536 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
2538 involves
= div_involves_vars(bmap
, i
, first
, n
);
2539 if (involves
< 0 || involves
)
2543 return isl_bool_false
;
2546 /* Try and add a lower and/or upper bound on "div" to "bmap"
2547 * based on inequality "i".
2548 * "total" is the total number of variables (excluding the divs).
2549 * "v" is a temporary object that can be used during the calculations.
2550 * If "lb" is set, then a lower bound should be constructed.
2551 * If "ub" is set, then an upper bound should be constructed.
2553 * The calling function has already checked that the inequality does not
2554 * reference "div", but we still need to check that the inequality is
2555 * of the right form. We'll consider the case where we want to construct
2556 * a lower bound. The construction of upper bounds is similar.
2558 * Let "div" be of the form
2560 * q = floor((a + f(x))/d)
2562 * We essentially check if constraint "i" is of the form
2566 * so that we can use it to derive a lower bound on "div".
2567 * However, we allow a slightly more general form
2571 * with the condition that the coefficients of g(x) - f(x) are all
2573 * Rewriting this constraint as
2577 * adding a + f(x) to both sides and dividing by d, we obtain
2579 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
2581 * Taking the floor on both sides, we obtain
2583 * q >= floor((a-b)/d) + (f(x)-g(x))/d
2587 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
2589 * In the case of an upper bound, we construct the constraint
2591 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
2594 static __isl_give isl_basic_map
*insert_bounds_on_div_from_ineq(
2595 __isl_take isl_basic_map
*bmap
, int div
, int i
,
2596 unsigned total
, isl_int v
, int lb
, int ub
)
2600 for (j
= 0; (lb
|| ub
) && j
< total
+ bmap
->n_div
; ++j
) {
2602 isl_int_sub(v
, bmap
->ineq
[i
][1 + j
],
2603 bmap
->div
[div
][1 + 1 + j
]);
2604 lb
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2607 isl_int_add(v
, bmap
->ineq
[i
][1 + j
],
2608 bmap
->div
[div
][1 + 1 + j
]);
2609 ub
= isl_int_is_divisible_by(v
, bmap
->div
[div
][0]);
2615 bmap
= isl_basic_map_cow(bmap
);
2616 bmap
= isl_basic_map_extend_constraints(bmap
, 0, lb
+ ub
);
2618 int k
= isl_basic_map_alloc_inequality(bmap
);
2621 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2622 isl_int_sub(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2623 bmap
->div
[div
][1 + j
]);
2624 isl_int_cdiv_q(bmap
->ineq
[k
][j
],
2625 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2627 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], 1);
2630 int k
= isl_basic_map_alloc_inequality(bmap
);
2633 for (j
= 0; j
< 1 + total
+ bmap
->n_div
; ++j
) {
2634 isl_int_add(bmap
->ineq
[k
][j
], bmap
->ineq
[i
][j
],
2635 bmap
->div
[div
][1 + j
]);
2636 isl_int_fdiv_q(bmap
->ineq
[k
][j
],
2637 bmap
->ineq
[k
][j
], bmap
->div
[div
][0]);
2639 isl_int_set_si(bmap
->ineq
[k
][1 + total
+ div
], -1);
2644 isl_basic_map_free(bmap
);
2648 /* This function is called right before "div" is eliminated from "bmap"
2649 * using Fourier-Motzkin.
2650 * Look through the constraints of "bmap" for constraints on the argument
2651 * of the integer division and use them to construct constraints on the
2652 * integer division itself. These constraints can then be combined
2653 * during the Fourier-Motzkin elimination.
2654 * Note that it is only useful to introduce lower bounds on "div"
2655 * if "bmap" already contains upper bounds on "div" as the newly
2656 * introduce lower bounds can then be combined with the pre-existing
2657 * upper bounds. Similarly for upper bounds.
2658 * We therefore first check if "bmap" contains any lower and/or upper bounds
2661 * It is interesting to note that the introduction of these constraints
2662 * can indeed lead to more accurate results, even when compared to
2663 * deriving constraints on the argument of "div" from constraints on "div".
2664 * Consider, for example, the set
2666 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
2668 * The second constraint can be rewritten as
2670 * 2 * [(-i-2j+3)/4] + k >= 0
2672 * from which we can derive
2674 * -i - 2j + 3 >= -2k
2680 * Combined with the first constraint, we obtain
2682 * -3 <= 3 + 2k or k >= -3
2684 * If, on the other hand we derive a constraint on [(i+2j)/4] from
2685 * the first constraint, we obtain
2687 * [(i + 2j)/4] >= [-3/4] = -1
2689 * Combining this constraint with the second constraint, we obtain
2693 static __isl_give isl_basic_map
*insert_bounds_on_div(
2694 __isl_take isl_basic_map
*bmap
, int div
)
2697 int check_lb
, check_ub
;
2704 if (isl_int_is_zero(bmap
->div
[div
][0]))
2707 total
= isl_space_dim(bmap
->dim
, isl_dim_all
);
2711 for (i
= 0; (!check_lb
|| !check_ub
) && i
< bmap
->n_ineq
; ++i
) {
2712 int s
= isl_int_sgn(bmap
->ineq
[i
][1 + total
+ div
]);
2719 if (!check_lb
&& !check_ub
)
2724 for (i
= 0; bmap
&& i
< bmap
->n_ineq
; ++i
) {
2725 if (!isl_int_is_zero(bmap
->ineq
[i
][1 + total
+ div
]))
2728 bmap
= insert_bounds_on_div_from_ineq(bmap
, div
, i
, total
, v
,
2729 check_lb
, check_ub
);
2737 /* Remove all divs (recursively) involving any of the given dimensions
2738 * in their definitions.
2740 __isl_give isl_basic_map
*isl_basic_map_remove_divs_involving_dims(
2741 __isl_take isl_basic_map
*bmap
,
2742 enum isl_dim_type type
, unsigned first
, unsigned n
)
2746 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2747 return isl_basic_map_free(bmap
);
2748 first
+= isl_basic_map_offset(bmap
, type
);
2750 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
2753 involves
= div_involves_vars(bmap
, i
, first
, n
);
2755 return isl_basic_map_free(bmap
);
2758 bmap
= insert_bounds_on_div(bmap
, i
);
2759 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
2768 __isl_give isl_basic_set
*isl_basic_set_remove_divs_involving_dims(
2769 __isl_take isl_basic_set
*bset
,
2770 enum isl_dim_type type
, unsigned first
, unsigned n
)
2772 return isl_basic_map_remove_divs_involving_dims(bset
, type
, first
, n
);
2775 __isl_give isl_map
*isl_map_remove_divs_involving_dims(__isl_take isl_map
*map
,
2776 enum isl_dim_type type
, unsigned first
, unsigned n
)
2785 map
= isl_map_cow(map
);
2789 for (i
= 0; i
< map
->n
; ++i
) {
2790 map
->p
[i
] = isl_basic_map_remove_divs_involving_dims(map
->p
[i
],
2801 __isl_give isl_set
*isl_set_remove_divs_involving_dims(__isl_take isl_set
*set
,
2802 enum isl_dim_type type
, unsigned first
, unsigned n
)
2804 return set_from_map(isl_map_remove_divs_involving_dims(set_to_map(set
),
2808 /* Does the description of "bmap" depend on the specified dimensions?
2809 * We also check whether the dimensions appear in any of the div definitions.
2810 * In principle there is no need for this check. If the dimensions appear
2811 * in a div definition, they also appear in the defining constraints of that
2814 isl_bool
isl_basic_map_involves_dims(__isl_keep isl_basic_map
*bmap
,
2815 enum isl_dim_type type
, unsigned first
, unsigned n
)
2819 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2820 return isl_bool_error
;
2822 first
+= isl_basic_map_offset(bmap
, type
);
2823 for (i
= 0; i
< bmap
->n_eq
; ++i
)
2824 if (isl_seq_first_non_zero(bmap
->eq
[i
] + first
, n
) >= 0)
2825 return isl_bool_true
;
2826 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
2827 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + first
, n
) >= 0)
2828 return isl_bool_true
;
2829 for (i
= 0; i
< bmap
->n_div
; ++i
) {
2830 if (isl_int_is_zero(bmap
->div
[i
][0]))
2832 if (isl_seq_first_non_zero(bmap
->div
[i
] + 1 + first
, n
) >= 0)
2833 return isl_bool_true
;
2836 return isl_bool_false
;
2839 isl_bool
isl_map_involves_dims(__isl_keep isl_map
*map
,
2840 enum isl_dim_type type
, unsigned first
, unsigned n
)
2844 if (isl_map_check_range(map
, type
, first
, n
) < 0)
2845 return isl_bool_error
;
2847 for (i
= 0; i
< map
->n
; ++i
) {
2848 isl_bool involves
= isl_basic_map_involves_dims(map
->p
[i
],
2850 if (involves
< 0 || involves
)
2854 return isl_bool_false
;
2857 isl_bool
isl_basic_set_involves_dims(__isl_keep isl_basic_set
*bset
,
2858 enum isl_dim_type type
, unsigned first
, unsigned n
)
2860 return isl_basic_map_involves_dims(bset
, type
, first
, n
);
2863 isl_bool
isl_set_involves_dims(__isl_keep isl_set
*set
,
2864 enum isl_dim_type type
, unsigned first
, unsigned n
)
2866 return isl_map_involves_dims(set
, type
, first
, n
);
2869 /* Drop all constraints in bmap that involve any of the dimensions
2870 * first to first+n-1.
2872 static __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving(
2873 __isl_take isl_basic_map
*bmap
, unsigned first
, unsigned n
)
2880 bmap
= isl_basic_map_cow(bmap
);
2885 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2886 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) == -1)
2888 isl_basic_map_drop_equality(bmap
, i
);
2891 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2892 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) == -1)
2894 isl_basic_map_drop_inequality(bmap
, i
);
2897 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2901 /* Drop all constraints in bset that involve any of the dimensions
2902 * first to first+n-1.
2904 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving(
2905 __isl_take isl_basic_set
*bset
, unsigned first
, unsigned n
)
2907 return isl_basic_map_drop_constraints_involving(bset
, first
, n
);
2910 /* Drop all constraints in bmap that do not involve any of the dimensions
2911 * first to first + n - 1 of the given type.
2913 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_not_involving_dims(
2914 __isl_take isl_basic_map
*bmap
,
2915 enum isl_dim_type type
, unsigned first
, unsigned n
)
2920 isl_space
*space
= isl_basic_map_get_space(bmap
);
2921 isl_basic_map_free(bmap
);
2922 return isl_basic_map_universe(space
);
2924 bmap
= isl_basic_map_cow(bmap
);
2928 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2929 return isl_basic_map_free(bmap
);
2931 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2933 for (i
= bmap
->n_eq
- 1; i
>= 0; --i
) {
2934 if (isl_seq_first_non_zero(bmap
->eq
[i
] + 1 + first
, n
) != -1)
2936 isl_basic_map_drop_equality(bmap
, i
);
2939 for (i
= bmap
->n_ineq
- 1; i
>= 0; --i
) {
2940 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + first
, n
) != -1)
2942 isl_basic_map_drop_inequality(bmap
, i
);
2945 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
2949 /* Drop all constraints in bset that do not involve any of the dimensions
2950 * first to first + n - 1 of the given type.
2952 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_not_involving_dims(
2953 __isl_take isl_basic_set
*bset
,
2954 enum isl_dim_type type
, unsigned first
, unsigned n
)
2956 return isl_basic_map_drop_constraints_not_involving_dims(bset
,
2960 /* Drop all constraints in bmap that involve any of the dimensions
2961 * first to first + n - 1 of the given type.
2963 __isl_give isl_basic_map
*isl_basic_map_drop_constraints_involving_dims(
2964 __isl_take isl_basic_map
*bmap
,
2965 enum isl_dim_type type
, unsigned first
, unsigned n
)
2972 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
2973 return isl_basic_map_free(bmap
);
2975 bmap
= isl_basic_map_remove_divs_involving_dims(bmap
, type
, first
, n
);
2976 first
+= isl_basic_map_offset(bmap
, type
) - 1;
2977 return isl_basic_map_drop_constraints_involving(bmap
, first
, n
);
2980 /* Drop all constraints in bset that involve any of the dimensions
2981 * first to first + n - 1 of the given type.
2983 __isl_give isl_basic_set
*isl_basic_set_drop_constraints_involving_dims(
2984 __isl_take isl_basic_set
*bset
,
2985 enum isl_dim_type type
, unsigned first
, unsigned n
)
2987 return isl_basic_map_drop_constraints_involving_dims(bset
,
2991 /* Drop constraints from "map" by applying "drop" to each basic map.
2993 static __isl_give isl_map
*drop_constraints(__isl_take isl_map
*map
,
2994 enum isl_dim_type type
, unsigned first
, unsigned n
,
2995 __isl_give isl_basic_map
*(*drop
)(__isl_take isl_basic_map
*bmap
,
2996 enum isl_dim_type type
, unsigned first
, unsigned n
))
3000 if (isl_map_check_range(map
, type
, first
, n
) < 0)
3001 return isl_map_free(map
);
3003 map
= isl_map_cow(map
);
3007 for (i
= 0; i
< map
->n
; ++i
) {
3008 map
->p
[i
] = drop(map
->p
[i
], type
, first
, n
);
3010 return isl_map_free(map
);
3014 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
3019 /* Drop all constraints in map that involve any of the dimensions
3020 * first to first + n - 1 of the given type.
3022 __isl_give isl_map
*isl_map_drop_constraints_involving_dims(
3023 __isl_take isl_map
*map
,
3024 enum isl_dim_type type
, unsigned first
, unsigned n
)
3028 return drop_constraints(map
, type
, first
, n
,
3029 &isl_basic_map_drop_constraints_involving_dims
);
3032 /* Drop all constraints in "map" that do not involve any of the dimensions
3033 * first to first + n - 1 of the given type.
3035 __isl_give isl_map
*isl_map_drop_constraints_not_involving_dims(
3036 __isl_take isl_map
*map
,
3037 enum isl_dim_type type
, unsigned first
, unsigned n
)
3040 isl_space
*space
= isl_map_get_space(map
);
3042 return isl_map_universe(space
);
3044 return drop_constraints(map
, type
, first
, n
,
3045 &isl_basic_map_drop_constraints_not_involving_dims
);
3048 /* Drop all constraints in set that involve any of the dimensions
3049 * first to first + n - 1 of the given type.
3051 __isl_give isl_set
*isl_set_drop_constraints_involving_dims(
3052 __isl_take isl_set
*set
,
3053 enum isl_dim_type type
, unsigned first
, unsigned n
)
3055 return isl_map_drop_constraints_involving_dims(set
, type
, first
, n
);
3058 /* Drop all constraints in "set" that do not involve any of the dimensions
3059 * first to first + n - 1 of the given type.
3061 __isl_give isl_set
*isl_set_drop_constraints_not_involving_dims(
3062 __isl_take isl_set
*set
,
3063 enum isl_dim_type type
, unsigned first
, unsigned n
)
3065 return isl_map_drop_constraints_not_involving_dims(set
, type
, first
, n
);
3068 /* Does local variable "div" of "bmap" have a complete explicit representation?
3069 * Having a complete explicit representation requires not only
3070 * an explicit representation, but also that all local variables
3071 * that appear in this explicit representation in turn have
3072 * a complete explicit representation.
3074 isl_bool
isl_basic_map_div_is_known(__isl_keep isl_basic_map
*bmap
, int div
)
3077 unsigned div_offset
= isl_basic_map_offset(bmap
, isl_dim_div
);
3080 marked
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
3081 if (marked
< 0 || marked
)
3082 return isl_bool_not(marked
);
3084 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
3087 if (isl_int_is_zero(bmap
->div
[div
][1 + div_offset
+ i
]))
3089 known
= isl_basic_map_div_is_known(bmap
, i
);
3090 if (known
< 0 || !known
)
3094 return isl_bool_true
;
3097 /* Remove all divs that are unknown or defined in terms of unknown divs.
3099 __isl_give isl_basic_map
*isl_basic_map_remove_unknown_divs(
3100 __isl_take isl_basic_map
*bmap
)
3107 for (i
= bmap
->n_div
- 1; i
>= 0; --i
) {
3108 if (isl_basic_map_div_is_known(bmap
, i
))
3110 bmap
= isl_basic_map_remove_dims(bmap
, isl_dim_div
, i
, 1);
3119 /* Remove all divs that are unknown or defined in terms of unknown divs.
3121 __isl_give isl_basic_set
*isl_basic_set_remove_unknown_divs(
3122 __isl_take isl_basic_set
*bset
)
3124 return isl_basic_map_remove_unknown_divs(bset
);
3127 __isl_give isl_map
*isl_map_remove_unknown_divs(__isl_take isl_map
*map
)
3136 map
= isl_map_cow(map
);
3140 for (i
= 0; i
< map
->n
; ++i
) {
3141 map
->p
[i
] = isl_basic_map_remove_unknown_divs(map
->p
[i
]);
3151 __isl_give isl_set
*isl_set_remove_unknown_divs(__isl_take isl_set
*set
)
3153 return set_from_map(isl_map_remove_unknown_divs(set_to_map(set
)));
3156 __isl_give isl_basic_set
*isl_basic_set_remove_dims(
3157 __isl_take isl_basic_set
*bset
,
3158 enum isl_dim_type type
, unsigned first
, unsigned n
)
3160 isl_basic_map
*bmap
= bset_to_bmap(bset
);
3161 bmap
= isl_basic_map_remove_dims(bmap
, type
, first
, n
);
3162 return bset_from_bmap(bmap
);
3165 __isl_give isl_map
*isl_map_remove_dims(__isl_take isl_map
*map
,
3166 enum isl_dim_type type
, unsigned first
, unsigned n
)
3173 map
= isl_map_cow(map
);
3174 if (isl_map_check_range(map
, type
, first
, n
) < 0)
3175 return isl_map_free(map
);
3177 for (i
= 0; i
< map
->n
; ++i
) {
3178 map
->p
[i
] = isl_basic_map_eliminate_vars(map
->p
[i
],
3179 isl_basic_map_offset(map
->p
[i
], type
) - 1 + first
, n
);
3183 map
= isl_map_drop(map
, type
, first
, n
);
3190 __isl_give isl_set
*isl_set_remove_dims(__isl_take isl_set
*bset
,
3191 enum isl_dim_type type
, unsigned first
, unsigned n
)
3193 return set_from_map(isl_map_remove_dims(set_to_map(bset
),
3197 /* Project out n inputs starting at first using Fourier-Motzkin */
3198 struct isl_map
*isl_map_remove_inputs(struct isl_map
*map
,
3199 unsigned first
, unsigned n
)
3201 return isl_map_remove_dims(map
, isl_dim_in
, first
, n
);
3204 static void dump_term(struct isl_basic_map
*bmap
,
3205 isl_int c
, int pos
, FILE *out
)
3208 unsigned in
= isl_basic_map_dim(bmap
, isl_dim_in
);
3209 unsigned dim
= in
+ isl_basic_map_dim(bmap
, isl_dim_out
);
3210 unsigned nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
3212 isl_int_print(out
, c
, 0);
3214 if (!isl_int_is_one(c
))
3215 isl_int_print(out
, c
, 0);
3216 if (pos
< 1 + nparam
) {
3217 name
= isl_space_get_dim_name(bmap
->dim
,
3218 isl_dim_param
, pos
- 1);
3220 fprintf(out
, "%s", name
);
3222 fprintf(out
, "p%d", pos
- 1);
3223 } else if (pos
< 1 + nparam
+ in
)
3224 fprintf(out
, "i%d", pos
- 1 - nparam
);
3225 else if (pos
< 1 + nparam
+ dim
)
3226 fprintf(out
, "o%d", pos
- 1 - nparam
- in
);
3228 fprintf(out
, "e%d", pos
- 1 - nparam
- dim
);
3232 static void dump_constraint_sign(struct isl_basic_map
*bmap
, isl_int
*c
,
3233 int sign
, FILE *out
)
3237 unsigned len
= 1 + isl_basic_map_total_dim(bmap
);
3241 for (i
= 0, first
= 1; i
< len
; ++i
) {
3242 if (isl_int_sgn(c
[i
]) * sign
<= 0)
3245 fprintf(out
, " + ");
3247 isl_int_abs(v
, c
[i
]);
3248 dump_term(bmap
, v
, i
, out
);
3255 static void dump_constraint(struct isl_basic_map
*bmap
, isl_int
*c
,
3256 const char *op
, FILE *out
, int indent
)
3260 fprintf(out
, "%*s", indent
, "");
3262 dump_constraint_sign(bmap
, c
, 1, out
);
3263 fprintf(out
, " %s ", op
);
3264 dump_constraint_sign(bmap
, c
, -1, out
);
3268 for (i
= bmap
->n_div
; i
< bmap
->extra
; ++i
) {
3269 if (isl_int_is_zero(c
[1+isl_space_dim(bmap
->dim
, isl_dim_all
)+i
]))
3271 fprintf(out
, "%*s", indent
, "");
3272 fprintf(out
, "ERROR: unused div coefficient not zero\n");
3277 static void dump_constraints(struct isl_basic_map
*bmap
,
3278 isl_int
**c
, unsigned n
,
3279 const char *op
, FILE *out
, int indent
)
3283 for (i
= 0; i
< n
; ++i
)
3284 dump_constraint(bmap
, c
[i
], op
, out
, indent
);
3287 static void dump_affine(struct isl_basic_map
*bmap
, isl_int
*exp
, FILE *out
)
3291 unsigned total
= isl_basic_map_total_dim(bmap
);
3293 for (j
= 0; j
< 1 + total
; ++j
) {
3294 if (isl_int_is_zero(exp
[j
]))
3296 if (!first
&& isl_int_is_pos(exp
[j
]))
3298 dump_term(bmap
, exp
[j
], j
, out
);
3303 static void dump(struct isl_basic_map
*bmap
, FILE *out
, int indent
)
3307 dump_constraints(bmap
, bmap
->eq
, bmap
->n_eq
, "=", out
, indent
);
3308 dump_constraints(bmap
, bmap
->ineq
, bmap
->n_ineq
, ">=", out
, indent
);
3310 for (i
= 0; i
< bmap
->n_div
; ++i
) {
3311 fprintf(out
, "%*s", indent
, "");
3312 fprintf(out
, "e%d = [(", i
);
3313 dump_affine(bmap
, bmap
->div
[i
]+1, out
);
3315 isl_int_print(out
, bmap
->div
[i
][0], 0);
3316 fprintf(out
, "]\n");
3320 void isl_basic_set_print_internal(struct isl_basic_set
*bset
,
3321 FILE *out
, int indent
)
3324 fprintf(out
, "null basic set\n");
3328 fprintf(out
, "%*s", indent
, "");
3329 fprintf(out
, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
3330 bset
->ref
, bset
->dim
->nparam
, bset
->dim
->n_out
,
3331 bset
->extra
, bset
->flags
);
3332 dump(bset_to_bmap(bset
), out
, indent
);
3335 void isl_basic_map_print_internal(struct isl_basic_map
*bmap
,
3336 FILE *out
, int indent
)
3339 fprintf(out
, "null basic map\n");
3343 fprintf(out
, "%*s", indent
, "");
3344 fprintf(out
, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
3345 "flags: %x, n_name: %d\n",
3347 bmap
->dim
->nparam
, bmap
->dim
->n_in
, bmap
->dim
->n_out
,
3348 bmap
->extra
, bmap
->flags
, bmap
->dim
->n_id
);
3349 dump(bmap
, out
, indent
);
3352 int isl_inequality_negate(struct isl_basic_map
*bmap
, unsigned pos
)
3357 total
= isl_basic_map_total_dim(bmap
);
3358 isl_assert(bmap
->ctx
, pos
< bmap
->n_ineq
, return -1);
3359 isl_seq_neg(bmap
->ineq
[pos
], bmap
->ineq
[pos
], 1 + total
);
3360 isl_int_sub_ui(bmap
->ineq
[pos
][0], bmap
->ineq
[pos
][0], 1);
3361 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NO_REDUNDANT
);
3362 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
3366 __isl_give isl_set
*isl_set_alloc_space(__isl_take isl_space
*space
, int n
,
3371 if (isl_space_dim(space
, isl_dim_in
) != 0)
3372 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
3373 "set cannot have input dimensions", goto error
);
3374 return isl_map_alloc_space(space
, n
, flags
);
3376 isl_space_free(space
);
3380 /* Make sure "map" has room for at least "n" more basic maps.
3382 __isl_give isl_map
*isl_map_grow(__isl_take isl_map
*map
, int n
)
3385 struct isl_map
*grown
= NULL
;
3389 isl_assert(map
->ctx
, n
>= 0, goto error
);
3390 if (map
->n
+ n
<= map
->size
)
3392 grown
= isl_map_alloc_space(isl_map_get_space(map
), map
->n
+ n
, map
->flags
);
3395 for (i
= 0; i
< map
->n
; ++i
) {
3396 grown
->p
[i
] = isl_basic_map_copy(map
->p
[i
]);
3404 isl_map_free(grown
);
3409 /* Make sure "set" has room for at least "n" more basic sets.
3411 struct isl_set
*isl_set_grow(struct isl_set
*set
, int n
)
3413 return set_from_map(isl_map_grow(set_to_map(set
), n
));
3416 __isl_give isl_set
*isl_set_from_basic_set(__isl_take isl_basic_set
*bset
)
3418 return isl_map_from_basic_map(bset
);
3421 __isl_give isl_map
*isl_map_from_basic_map(__isl_take isl_basic_map
*bmap
)
3423 struct isl_map
*map
;
3428 map
= isl_map_alloc_space(isl_space_copy(bmap
->dim
), 1, ISL_MAP_DISJOINT
);
3429 return isl_map_add_basic_map(map
, bmap
);
3432 __isl_give isl_set
*isl_set_add_basic_set(__isl_take isl_set
*set
,
3433 __isl_take isl_basic_set
*bset
)
3435 return set_from_map(isl_map_add_basic_map(set_to_map(set
),
3436 bset_to_bmap(bset
)));
3439 __isl_null isl_set
*isl_set_free(__isl_take isl_set
*set
)
3441 return isl_map_free(set
);
3444 void isl_set_print_internal(struct isl_set
*set
, FILE *out
, int indent
)
3449 fprintf(out
, "null set\n");
3453 fprintf(out
, "%*s", indent
, "");
3454 fprintf(out
, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
3455 set
->ref
, set
->n
, set
->dim
->nparam
, set
->dim
->n_out
,
3457 for (i
= 0; i
< set
->n
; ++i
) {
3458 fprintf(out
, "%*s", indent
, "");
3459 fprintf(out
, "basic set %d:\n", i
);
3460 isl_basic_set_print_internal(set
->p
[i
], out
, indent
+4);
3464 void isl_map_print_internal(struct isl_map
*map
, FILE *out
, int indent
)
3469 fprintf(out
, "null map\n");
3473 fprintf(out
, "%*s", indent
, "");
3474 fprintf(out
, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
3475 "flags: %x, n_name: %d\n",
3476 map
->ref
, map
->n
, map
->dim
->nparam
, map
->dim
->n_in
,
3477 map
->dim
->n_out
, map
->flags
, map
->dim
->n_id
);
3478 for (i
= 0; i
< map
->n
; ++i
) {
3479 fprintf(out
, "%*s", indent
, "");
3480 fprintf(out
, "basic map %d:\n", i
);
3481 isl_basic_map_print_internal(map
->p
[i
], out
, indent
+4);
3485 __isl_give isl_basic_map
*isl_basic_map_intersect_domain(
3486 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*bset
)
3488 struct isl_basic_map
*bmap_domain
;
3490 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3493 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0)
3494 isl_assert(bset
->ctx
,
3495 isl_basic_map_compatible_domain(bmap
, bset
), goto error
);
3497 bmap
= isl_basic_map_cow(bmap
);
3500 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3501 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3502 bmap_domain
= isl_basic_map_from_domain(bset
);
3503 bmap
= add_constraints(bmap
, bmap_domain
, 0, 0);
3505 bmap
= isl_basic_map_simplify(bmap
);
3506 return isl_basic_map_finalize(bmap
);
3508 isl_basic_map_free(bmap
);
3509 isl_basic_set_free(bset
);
3513 /* Check that the space of "bset" is the same as that of the range of "bmap".
3515 static isl_stat
isl_basic_map_check_compatible_range(
3516 __isl_keep isl_basic_map
*bmap
, __isl_keep isl_basic_set
*bset
)
3520 ok
= isl_basic_map_compatible_range(bmap
, bset
);
3522 return isl_stat_error
;
3524 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
3525 "incompatible spaces", return isl_stat_error
);
3530 __isl_give isl_basic_map
*isl_basic_map_intersect_range(
3531 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*bset
)
3533 struct isl_basic_map
*bmap_range
;
3535 if (isl_basic_map_check_equal_params(bmap
, bset_to_bmap(bset
)) < 0)
3538 if (isl_space_dim(bset
->dim
, isl_dim_set
) != 0 &&
3539 isl_basic_map_check_compatible_range(bmap
, bset
) < 0)
3542 if (isl_basic_set_plain_is_universe(bset
)) {
3543 isl_basic_set_free(bset
);
3547 bmap
= isl_basic_map_cow(bmap
);
3550 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
3551 bset
->n_div
, bset
->n_eq
, bset
->n_ineq
);
3552 bmap_range
= bset_to_bmap(bset
);
3553 bmap
= add_constraints(bmap
, bmap_range
, 0, 0);
3555 bmap
= isl_basic_map_simplify(bmap
);
3556 return isl_basic_map_finalize(bmap
);
3558 isl_basic_map_free(bmap
);
3559 isl_basic_set_free(bset
);
3563 isl_bool
isl_basic_map_contains(__isl_keep isl_basic_map
*bmap
,
3564 __isl_keep isl_vec
*vec
)
3571 return isl_bool_error
;
3573 total
= 1 + isl_basic_map_total_dim(bmap
);
3574 if (total
!= vec
->size
)
3575 return isl_bool_false
;
3579 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
3580 isl_seq_inner_product(vec
->el
, bmap
->eq
[i
], total
, &s
);
3581 if (!isl_int_is_zero(s
)) {
3583 return isl_bool_false
;
3587 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
3588 isl_seq_inner_product(vec
->el
, bmap
->ineq
[i
], total
, &s
);
3589 if (isl_int_is_neg(s
)) {
3591 return isl_bool_false
;
3597 return isl_bool_true
;
3600 isl_bool
isl_basic_set_contains(__isl_keep isl_basic_set
*bset
,
3601 __isl_keep isl_vec
*vec
)
3603 return isl_basic_map_contains(bset_to_bmap(bset
), vec
);
3606 __isl_give isl_basic_map
*isl_basic_map_intersect(
3607 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
3609 struct isl_vec
*sample
= NULL
;
3611 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
3613 if (isl_space_dim(bmap1
->dim
, isl_dim_all
) ==
3614 isl_space_dim(bmap1
->dim
, isl_dim_param
) &&
3615 isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3616 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3617 return isl_basic_map_intersect(bmap2
, bmap1
);
3619 if (isl_space_dim(bmap2
->dim
, isl_dim_all
) !=
3620 isl_space_dim(bmap2
->dim
, isl_dim_param
))
3621 isl_assert(bmap1
->ctx
,
3622 isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
3624 if (isl_basic_map_plain_is_empty(bmap1
)) {
3625 isl_basic_map_free(bmap2
);
3628 if (isl_basic_map_plain_is_empty(bmap2
)) {
3629 isl_basic_map_free(bmap1
);
3633 if (bmap1
->sample
&&
3634 isl_basic_map_contains(bmap1
, bmap1
->sample
) > 0 &&
3635 isl_basic_map_contains(bmap2
, bmap1
->sample
) > 0)
3636 sample
= isl_vec_copy(bmap1
->sample
);
3637 else if (bmap2
->sample
&&
3638 isl_basic_map_contains(bmap1
, bmap2
->sample
) > 0 &&
3639 isl_basic_map_contains(bmap2
, bmap2
->sample
) > 0)
3640 sample
= isl_vec_copy(bmap2
->sample
);
3642 bmap1
= isl_basic_map_cow(bmap1
);
3645 bmap1
= isl_basic_map_extend_space(bmap1
, isl_space_copy(bmap1
->dim
),
3646 bmap2
->n_div
, bmap2
->n_eq
, bmap2
->n_ineq
);
3647 bmap1
= add_constraints(bmap1
, bmap2
, 0, 0);
3650 isl_vec_free(sample
);
3652 isl_vec_free(bmap1
->sample
);
3653 bmap1
->sample
= sample
;
3656 bmap1
= isl_basic_map_simplify(bmap1
);
3657 return isl_basic_map_finalize(bmap1
);
3660 isl_vec_free(sample
);
3661 isl_basic_map_free(bmap1
);
3662 isl_basic_map_free(bmap2
);
3666 struct isl_basic_set
*isl_basic_set_intersect(
3667 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
3669 return bset_from_bmap(isl_basic_map_intersect(bset_to_bmap(bset1
),
3670 bset_to_bmap(bset2
)));
3673 __isl_give isl_basic_set
*isl_basic_set_intersect_params(
3674 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
3676 return isl_basic_set_intersect(bset1
, bset2
);
3679 /* Special case of isl_map_intersect, where both map1 and map2
3680 * are convex, without any divs and such that either map1 or map2
3681 * contains a single constraint. This constraint is then simply
3682 * added to the other map.
3684 static __isl_give isl_map
*map_intersect_add_constraint(
3685 __isl_take isl_map
*map1
, __isl_take isl_map
*map2
)
3687 isl_assert(map1
->ctx
, map1
->n
== 1, goto error
);
3688 isl_assert(map2
->ctx
, map1
->n
== 1, goto error
);
3689 isl_assert(map1
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3690 isl_assert(map2
->ctx
, map1
->p
[0]->n_div
== 0, goto error
);
3692 if (map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
!= 1)
3693 return isl_map_intersect(map2
, map1
);
3695 map1
= isl_map_cow(map1
);
3698 if (isl_map_plain_is_empty(map1
)) {
3702 map1
->p
[0] = isl_basic_map_cow(map1
->p
[0]);
3703 if (map2
->p
[0]->n_eq
== 1)
3704 map1
->p
[0] = isl_basic_map_add_eq(map1
->p
[0], map2
->p
[0]->eq
[0]);
3706 map1
->p
[0] = isl_basic_map_add_ineq(map1
->p
[0],
3707 map2
->p
[0]->ineq
[0]);
3709 map1
->p
[0] = isl_basic_map_simplify(map1
->p
[0]);
3710 map1
->p
[0] = isl_basic_map_finalize(map1
->p
[0]);
3714 if (isl_basic_map_plain_is_empty(map1
->p
[0])) {
3715 isl_basic_map_free(map1
->p
[0]);
3721 map1
= isl_map_unmark_normalized(map1
);
3729 /* map2 may be either a parameter domain or a map living in the same
3732 static __isl_give isl_map
*map_intersect_internal(__isl_take isl_map
*map1
,
3733 __isl_take isl_map
*map2
)
3743 if ((isl_map_plain_is_empty(map1
) ||
3744 isl_map_plain_is_universe(map2
)) &&
3745 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3749 if ((isl_map_plain_is_empty(map2
) ||
3750 isl_map_plain_is_universe(map1
)) &&
3751 isl_space_is_equal(map1
->dim
, map2
->dim
)) {
3756 if (map1
->n
== 1 && map2
->n
== 1 &&
3757 map1
->p
[0]->n_div
== 0 && map2
->p
[0]->n_div
== 0 &&
3758 isl_space_is_equal(map1
->dim
, map2
->dim
) &&
3759 (map1
->p
[0]->n_eq
+ map1
->p
[0]->n_ineq
== 1 ||
3760 map2
->p
[0]->n_eq
+ map2
->p
[0]->n_ineq
== 1))
3761 return map_intersect_add_constraint(map1
, map2
);
3763 equal
= isl_map_plain_is_equal(map1
, map2
);
3771 if (isl_space_dim(map2
->dim
, isl_dim_all
) !=
3772 isl_space_dim(map2
->dim
, isl_dim_param
))
3773 isl_assert(map1
->ctx
,
3774 isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
3776 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
3777 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
3778 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
3780 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
3781 map1
->n
* map2
->n
, flags
);
3784 for (i
= 0; i
< map1
->n
; ++i
)
3785 for (j
= 0; j
< map2
->n
; ++j
) {
3786 struct isl_basic_map
*part
;
3787 part
= isl_basic_map_intersect(
3788 isl_basic_map_copy(map1
->p
[i
]),
3789 isl_basic_map_copy(map2
->p
[j
]));
3790 if (isl_basic_map_is_empty(part
) < 0)
3791 part
= isl_basic_map_free(part
);
3792 result
= isl_map_add_basic_map(result
, part
);
3805 static __isl_give isl_map
*map_intersect(__isl_take isl_map
*map1
,
3806 __isl_take isl_map
*map2
)
3810 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
3811 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
3812 "spaces don't match", goto error
);
3813 return map_intersect_internal(map1
, map2
);
3820 __isl_give isl_map
*isl_map_intersect(__isl_take isl_map
*map1
,
3821 __isl_take isl_map
*map2
)
3823 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect
);
3826 struct isl_set
*isl_set_intersect(struct isl_set
*set1
, struct isl_set
*set2
)
3828 return set_from_map(isl_map_intersect(set_to_map(set1
),
3832 /* map_intersect_internal accepts intersections
3833 * with parameter domains, so we can just call that function.
3835 static __isl_give isl_map
*map_intersect_params(__isl_take isl_map
*map
,
3836 __isl_take isl_set
*params
)
3838 return map_intersect_internal(map
, params
);
3841 __isl_give isl_map
*isl_map_intersect_params(__isl_take isl_map
*map1
,
3842 __isl_take isl_map
*map2
)
3844 return isl_map_align_params_map_map_and(map1
, map2
, &map_intersect_params
);
3847 __isl_give isl_set
*isl_set_intersect_params(__isl_take isl_set
*set
,
3848 __isl_take isl_set
*params
)
3850 return isl_map_intersect_params(set
, params
);
3853 __isl_give isl_basic_map
*isl_basic_map_reverse(__isl_take isl_basic_map
*bmap
)
3856 unsigned pos
, n1
, n2
;
3860 bmap
= isl_basic_map_cow(bmap
);
3863 space
= isl_space_reverse(isl_space_copy(bmap
->dim
));
3864 pos
= isl_basic_map_offset(bmap
, isl_dim_in
);
3865 n1
= isl_basic_map_dim(bmap
, isl_dim_in
);
3866 n2
= isl_basic_map_dim(bmap
, isl_dim_out
);
3867 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
3868 return isl_basic_map_reset_space(bmap
, space
);
3871 static __isl_give isl_basic_map
*basic_map_space_reset(
3872 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
)
3878 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
3881 space
= isl_basic_map_get_space(bmap
);
3882 space
= isl_space_reset(space
, type
);
3883 bmap
= isl_basic_map_reset_space(bmap
, space
);
3887 __isl_give isl_basic_map
*isl_basic_map_insert_dims(
3888 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
3889 unsigned pos
, unsigned n
)
3892 isl_space
*res_space
;
3893 struct isl_basic_map
*res
;
3894 struct isl_dim_map
*dim_map
;
3895 unsigned total
, off
;
3896 enum isl_dim_type t
;
3899 return basic_map_space_reset(bmap
, type
);
3901 res_space
= isl_space_insert_dims(isl_basic_map_get_space(bmap
),
3904 return isl_basic_map_free(bmap
);
3906 total
= isl_basic_map_total_dim(bmap
) + n
;
3907 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
3909 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
3911 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
3913 unsigned size
= isl_basic_map_dim(bmap
, t
);
3914 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3916 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
3917 pos
, size
- pos
, off
+ pos
+ n
);
3919 off
+= isl_space_dim(res_space
, t
);
3921 isl_dim_map_div(dim_map
, bmap
, off
);
3923 res
= isl_basic_map_alloc_space(res_space
,
3924 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
3925 rational
= isl_basic_map_is_rational(bmap
);
3927 res
= isl_basic_map_free(res
);
3929 res
= isl_basic_map_set_rational(res
);
3930 if (isl_basic_map_plain_is_empty(bmap
)) {
3931 isl_basic_map_free(bmap
);
3933 return isl_basic_map_set_to_empty(res
);
3935 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
3936 return isl_basic_map_finalize(res
);
3939 __isl_give isl_basic_set
*isl_basic_set_insert_dims(
3940 __isl_take isl_basic_set
*bset
,
3941 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3943 return isl_basic_map_insert_dims(bset
, type
, pos
, n
);
3946 __isl_give isl_basic_map
*isl_basic_map_add_dims(__isl_take isl_basic_map
*bmap
,
3947 enum isl_dim_type type
, unsigned n
)
3951 return isl_basic_map_insert_dims(bmap
, type
,
3952 isl_basic_map_dim(bmap
, type
), n
);
3955 __isl_give isl_basic_set
*isl_basic_set_add_dims(__isl_take isl_basic_set
*bset
,
3956 enum isl_dim_type type
, unsigned n
)
3960 isl_assert(bset
->ctx
, type
!= isl_dim_in
, goto error
);
3961 return isl_basic_map_add_dims(bset
, type
, n
);
3963 isl_basic_set_free(bset
);
3967 static __isl_give isl_map
*map_space_reset(__isl_take isl_map
*map
,
3968 enum isl_dim_type type
)
3972 if (!map
|| !isl_space_is_named_or_nested(map
->dim
, type
))
3975 space
= isl_map_get_space(map
);
3976 space
= isl_space_reset(space
, type
);
3977 map
= isl_map_reset_space(map
, space
);
3981 __isl_give isl_map
*isl_map_insert_dims(__isl_take isl_map
*map
,
3982 enum isl_dim_type type
, unsigned pos
, unsigned n
)
3987 return map_space_reset(map
, type
);
3989 map
= isl_map_cow(map
);
3993 map
->dim
= isl_space_insert_dims(map
->dim
, type
, pos
, n
);
3997 for (i
= 0; i
< map
->n
; ++i
) {
3998 map
->p
[i
] = isl_basic_map_insert_dims(map
->p
[i
], type
, pos
, n
);
4009 __isl_give isl_set
*isl_set_insert_dims(__isl_take isl_set
*set
,
4010 enum isl_dim_type type
, unsigned pos
, unsigned n
)
4012 return isl_map_insert_dims(set
, type
, pos
, n
);
4015 __isl_give isl_map
*isl_map_add_dims(__isl_take isl_map
*map
,
4016 enum isl_dim_type type
, unsigned n
)
4020 return isl_map_insert_dims(map
, type
, isl_map_dim(map
, type
), n
);
4023 __isl_give isl_set
*isl_set_add_dims(__isl_take isl_set
*set
,
4024 enum isl_dim_type type
, unsigned n
)
4028 isl_assert(set
->ctx
, type
!= isl_dim_in
, goto error
);
4029 return set_from_map(isl_map_add_dims(set_to_map(set
), type
, n
));
4035 __isl_give isl_basic_map
*isl_basic_map_move_dims(
4036 __isl_take isl_basic_map
*bmap
,
4037 enum isl_dim_type dst_type
, unsigned dst_pos
,
4038 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4040 struct isl_dim_map
*dim_map
;
4041 struct isl_basic_map
*res
;
4042 enum isl_dim_type t
;
4043 unsigned total
, off
;
4048 bmap
= isl_basic_map_reset(bmap
, src_type
);
4049 bmap
= isl_basic_map_reset(bmap
, dst_type
);
4053 if (isl_basic_map_check_range(bmap
, src_type
, src_pos
, n
) < 0)
4054 return isl_basic_map_free(bmap
);
4056 if (dst_type
== src_type
&& dst_pos
== src_pos
)
4059 isl_assert(bmap
->ctx
, dst_type
!= src_type
, goto error
);
4061 if (pos(bmap
->dim
, dst_type
) + dst_pos
==
4062 pos(bmap
->dim
, src_type
) + src_pos
+
4063 ((src_type
< dst_type
) ? n
: 0)) {
4064 bmap
= isl_basic_map_cow(bmap
);
4068 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
4069 src_type
, src_pos
, n
);
4073 bmap
= isl_basic_map_finalize(bmap
);
4078 total
= isl_basic_map_total_dim(bmap
);
4079 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4082 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
4083 unsigned size
= isl_space_dim(bmap
->dim
, t
);
4084 if (t
== dst_type
) {
4085 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4088 isl_dim_map_dim_range(dim_map
, bmap
->dim
, src_type
,
4091 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4092 dst_pos
, size
- dst_pos
, off
);
4093 off
+= size
- dst_pos
;
4094 } else if (t
== src_type
) {
4095 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4098 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4099 src_pos
+ n
, size
- src_pos
- n
, off
);
4100 off
+= size
- src_pos
- n
;
4102 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
4106 isl_dim_map_div(dim_map
, bmap
, off
);
4108 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
4109 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
4110 bmap
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
4114 bmap
->dim
= isl_space_move_dims(bmap
->dim
, dst_type
, dst_pos
,
4115 src_type
, src_pos
, n
);
4119 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
4120 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4121 bmap
= isl_basic_map_finalize(bmap
);
4125 isl_basic_map_free(bmap
);
4129 __isl_give isl_basic_set
*isl_basic_set_move_dims(__isl_take isl_basic_set
*bset
,
4130 enum isl_dim_type dst_type
, unsigned dst_pos
,
4131 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4133 isl_basic_map
*bmap
= bset_to_bmap(bset
);
4134 bmap
= isl_basic_map_move_dims(bmap
, dst_type
, dst_pos
,
4135 src_type
, src_pos
, n
);
4136 return bset_from_bmap(bmap
);
4139 __isl_give isl_set
*isl_set_move_dims(__isl_take isl_set
*set
,
4140 enum isl_dim_type dst_type
, unsigned dst_pos
,
4141 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4145 isl_assert(set
->ctx
, dst_type
!= isl_dim_in
, goto error
);
4146 return set_from_map(isl_map_move_dims(set_to_map(set
),
4147 dst_type
, dst_pos
, src_type
, src_pos
, n
));
4153 __isl_give isl_map
*isl_map_move_dims(__isl_take isl_map
*map
,
4154 enum isl_dim_type dst_type
, unsigned dst_pos
,
4155 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
4160 map
= isl_map_reset(map
, src_type
);
4161 map
= isl_map_reset(map
, dst_type
);
4165 if (isl_map_check_range(map
, src_type
, src_pos
, n
))
4166 return isl_map_free(map
);
4168 if (dst_type
== src_type
&& dst_pos
== src_pos
)
4171 isl_assert(map
->ctx
, dst_type
!= src_type
, goto error
);
4173 map
= isl_map_cow(map
);
4177 map
->dim
= isl_space_move_dims(map
->dim
, dst_type
, dst_pos
, src_type
, src_pos
, n
);
4181 for (i
= 0; i
< map
->n
; ++i
) {
4182 map
->p
[i
] = isl_basic_map_move_dims(map
->p
[i
],
4184 src_type
, src_pos
, n
);
4195 /* Move the specified dimensions to the last columns right before
4196 * the divs. Don't change the dimension specification of bmap.
4197 * That's the responsibility of the caller.
4199 static __isl_give isl_basic_map
*move_last(__isl_take isl_basic_map
*bmap
,
4200 enum isl_dim_type type
, unsigned first
, unsigned n
)
4202 struct isl_dim_map
*dim_map
;
4203 struct isl_basic_map
*res
;
4204 enum isl_dim_type t
;
4205 unsigned total
, off
;
4209 if (pos(bmap
->dim
, type
) + first
+ n
==
4210 1 + isl_space_dim(bmap
->dim
, isl_dim_all
))
4213 total
= isl_basic_map_total_dim(bmap
);
4214 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4217 for (t
= isl_dim_param
; t
<= isl_dim_out
; ++t
) {
4218 unsigned size
= isl_space_dim(bmap
->dim
, t
);
4220 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4223 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4224 first
, n
, total
- bmap
->n_div
- n
);
4225 isl_dim_map_dim_range(dim_map
, bmap
->dim
, t
,
4226 first
+ n
, size
- (first
+ n
), off
);
4227 off
+= size
- (first
+ n
);
4229 isl_dim_map_dim(dim_map
, bmap
->dim
, t
, off
);
4233 isl_dim_map_div(dim_map
, bmap
, off
+ n
);
4235 res
= isl_basic_map_alloc_space(isl_basic_map_get_space(bmap
),
4236 bmap
->n_div
, bmap
->n_eq
, bmap
->n_ineq
);
4237 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
4241 /* Insert "n" rows in the divs of "bmap".
4243 * The number of columns is not changed, which means that the last
4244 * dimensions of "bmap" are being reintepreted as the new divs.
4245 * The space of "bmap" is not adjusted, however, which means
4246 * that "bmap" is left in an inconsistent state. Removing "n" dimensions
4247 * from the space of "bmap" is the responsibility of the caller.
4249 static __isl_give isl_basic_map
*insert_div_rows(__isl_take isl_basic_map
*bmap
,
4257 bmap
= isl_basic_map_cow(bmap
);
4261 row_size
= 1 + isl_space_dim(bmap
->dim
, isl_dim_all
) + bmap
->extra
;
4262 old
= bmap
->block2
.data
;
4263 bmap
->block2
= isl_blk_extend(bmap
->ctx
, bmap
->block2
,
4264 (bmap
->extra
+ n
) * (1 + row_size
));
4265 if (!bmap
->block2
.data
)
4266 return isl_basic_map_free(bmap
);
4267 new_div
= isl_alloc_array(bmap
->ctx
, isl_int
*, bmap
->extra
+ n
);
4269 return isl_basic_map_free(bmap
);
4270 for (i
= 0; i
< n
; ++i
) {
4271 new_div
[i
] = bmap
->block2
.data
+
4272 (bmap
->extra
+ i
) * (1 + row_size
);
4273 isl_seq_clr(new_div
[i
], 1 + row_size
);
4275 for (i
= 0; i
< bmap
->extra
; ++i
)
4276 new_div
[n
+ i
] = bmap
->block2
.data
+ (bmap
->div
[i
] - old
);
4278 bmap
->div
= new_div
;
4285 /* Drop constraints from "bmap" that only involve the variables
4286 * of "type" in the range [first, first + n] that are not related
4287 * to any of the variables outside that interval.
4288 * These constraints cannot influence the values for the variables
4289 * outside the interval, except in case they cause "bmap" to be empty.
4290 * Only drop the constraints if "bmap" is known to be non-empty.
4292 static __isl_give isl_basic_map
*drop_irrelevant_constraints(
4293 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
4294 unsigned first
, unsigned n
)
4298 unsigned dim
, n_div
;
4301 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
4303 return isl_basic_map_free(bmap
);
4307 dim
= isl_basic_map_dim(bmap
, isl_dim_all
);
4308 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4309 groups
= isl_calloc_array(isl_basic_map_get_ctx(bmap
), int, dim
);
4311 return isl_basic_map_free(bmap
);
4312 first
+= isl_basic_map_offset(bmap
, type
) - 1;
4313 for (i
= 0; i
< first
; ++i
)
4315 for (i
= first
+ n
; i
< dim
- n_div
; ++i
)
4318 bmap
= isl_basic_map_drop_unrelated_constraints(bmap
, groups
);
4323 /* Turn the n dimensions of type type, starting at first
4324 * into existentially quantified variables.
4326 * If a subset of the projected out variables are unrelated
4327 * to any of the variables that remain, then the constraints
4328 * involving this subset are simply dropped first.
4330 __isl_give isl_basic_map
*isl_basic_map_project_out(
4331 __isl_take isl_basic_map
*bmap
,
4332 enum isl_dim_type type
, unsigned first
, unsigned n
)
4337 return basic_map_space_reset(bmap
, type
);
4338 if (type
== isl_dim_div
)
4339 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
4340 "cannot project out existentially quantified variables",
4341 return isl_basic_map_free(bmap
));
4343 empty
= isl_basic_map_plain_is_empty(bmap
);
4345 return isl_basic_map_free(bmap
);
4347 bmap
= isl_basic_map_set_to_empty(bmap
);
4349 bmap
= drop_irrelevant_constraints(bmap
, type
, first
, n
);
4353 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
))
4354 return isl_basic_map_remove_dims(bmap
, type
, first
, n
);
4356 if (isl_basic_map_check_range(bmap
, type
, first
, n
) < 0)
4357 return isl_basic_map_free(bmap
);
4359 bmap
= move_last(bmap
, type
, first
, n
);
4360 bmap
= isl_basic_map_cow(bmap
);
4361 bmap
= insert_div_rows(bmap
, n
);
4365 bmap
->dim
= isl_space_drop_dims(bmap
->dim
, type
, first
, n
);
4368 bmap
= isl_basic_map_simplify(bmap
);
4369 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4370 return isl_basic_map_finalize(bmap
);
4372 isl_basic_map_free(bmap
);
4376 /* Turn the n dimensions of type type, starting at first
4377 * into existentially quantified variables.
4379 struct isl_basic_set
*isl_basic_set_project_out(struct isl_basic_set
*bset
,
4380 enum isl_dim_type type
, unsigned first
, unsigned n
)
4382 return bset_from_bmap(isl_basic_map_project_out(bset_to_bmap(bset
),
4386 /* Turn the n dimensions of type type, starting at first
4387 * into existentially quantified variables.
4389 __isl_give isl_map
*isl_map_project_out(__isl_take isl_map
*map
,
4390 enum isl_dim_type type
, unsigned first
, unsigned n
)
4395 return map_space_reset(map
, type
);
4397 if (isl_map_check_range(map
, type
, first
, n
) < 0)
4398 return isl_map_free(map
);
4400 map
= isl_map_cow(map
);
4404 map
->dim
= isl_space_drop_dims(map
->dim
, type
, first
, n
);
4408 for (i
= 0; i
< map
->n
; ++i
) {
4409 map
->p
[i
] = isl_basic_map_project_out(map
->p
[i
], type
, first
, n
);
4420 /* Turn all the dimensions of type "type", except the "n" starting at "first"
4421 * into existentially quantified variables.
4423 __isl_give isl_map
*isl_map_project_onto(__isl_take isl_map
*map
,
4424 enum isl_dim_type type
, unsigned first
, unsigned n
)
4428 if (isl_map_check_range(map
, type
, first
, n
) < 0)
4429 return isl_map_free(map
);
4430 dim
= isl_map_dim(map
, type
);
4431 map
= isl_map_project_out(map
, type
, first
+ n
, dim
- (first
+ n
));
4432 map
= isl_map_project_out(map
, type
, 0, first
);
4436 /* Turn the n dimensions of type type, starting at first
4437 * into existentially quantified variables.
4439 __isl_give isl_set
*isl_set_project_out(__isl_take isl_set
*set
,
4440 enum isl_dim_type type
, unsigned first
, unsigned n
)
4442 return set_from_map(isl_map_project_out(set_to_map(set
),
4446 /* Return a map that projects the elements in "set" onto their
4447 * "n" set dimensions starting at "first".
4448 * "type" should be equal to isl_dim_set.
4450 __isl_give isl_map
*isl_set_project_onto_map(__isl_take isl_set
*set
,
4451 enum isl_dim_type type
, unsigned first
, unsigned n
)
4459 if (type
!= isl_dim_set
)
4460 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4461 "only set dimensions can be projected out", goto error
);
4462 dim
= isl_set_dim(set
, isl_dim_set
);
4463 if (first
+ n
> dim
|| first
+ n
< first
)
4464 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
4465 "index out of bounds", goto error
);
4467 map
= isl_map_from_domain(set
);
4468 map
= isl_map_add_dims(map
, isl_dim_out
, n
);
4469 for (i
= 0; i
< n
; ++i
)
4470 map
= isl_map_equate(map
, isl_dim_in
, first
+ i
,
4478 static __isl_give isl_basic_map
*add_divs(__isl_take isl_basic_map
*bmap
,
4483 for (i
= 0; i
< n
; ++i
) {
4484 j
= isl_basic_map_alloc_div(bmap
);
4487 isl_seq_clr(bmap
->div
[j
], 1+1+isl_basic_map_total_dim(bmap
));
4491 isl_basic_map_free(bmap
);
4495 struct isl_basic_map
*isl_basic_map_apply_range(
4496 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4498 isl_space
*dim_result
= NULL
;
4499 struct isl_basic_map
*bmap
;
4500 unsigned n_in
, n_out
, n
, nparam
, total
, pos
;
4501 struct isl_dim_map
*dim_map1
, *dim_map2
;
4503 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
4505 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_out
,
4506 bmap2
->dim
, isl_dim_in
))
4507 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4508 "spaces don't match", goto error
);
4510 dim_result
= isl_space_join(isl_space_copy(bmap1
->dim
),
4511 isl_space_copy(bmap2
->dim
));
4513 n_in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
4514 n_out
= isl_basic_map_dim(bmap2
, isl_dim_out
);
4515 n
= isl_basic_map_dim(bmap1
, isl_dim_out
);
4516 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
4518 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ n
;
4519 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4520 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4521 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4522 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
4523 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4524 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_in
);
4525 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_out
);
4526 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4527 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4528 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4530 bmap
= isl_basic_map_alloc_space(dim_result
,
4531 bmap1
->n_div
+ bmap2
->n_div
+ n
,
4532 bmap1
->n_eq
+ bmap2
->n_eq
,
4533 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4534 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4535 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4536 bmap
= add_divs(bmap
, n
);
4537 bmap
= isl_basic_map_simplify(bmap
);
4538 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
4539 return isl_basic_map_finalize(bmap
);
4541 isl_basic_map_free(bmap1
);
4542 isl_basic_map_free(bmap2
);
4546 struct isl_basic_set
*isl_basic_set_apply(
4547 struct isl_basic_set
*bset
, struct isl_basic_map
*bmap
)
4552 isl_assert(bset
->ctx
, isl_basic_map_compatible_domain(bmap
, bset
),
4555 return bset_from_bmap(isl_basic_map_apply_range(bset_to_bmap(bset
),
4558 isl_basic_set_free(bset
);
4559 isl_basic_map_free(bmap
);
4563 struct isl_basic_map
*isl_basic_map_apply_domain(
4564 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
4566 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
4568 if (!isl_space_tuple_is_equal(bmap1
->dim
, isl_dim_in
,
4569 bmap2
->dim
, isl_dim_in
))
4570 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
4571 "spaces don't match", goto error
);
4573 bmap1
= isl_basic_map_reverse(bmap1
);
4574 bmap1
= isl_basic_map_apply_range(bmap1
, bmap2
);
4575 return isl_basic_map_reverse(bmap1
);
4577 isl_basic_map_free(bmap1
);
4578 isl_basic_map_free(bmap2
);
4582 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
4583 * A \cap B -> f(A) + f(B)
4585 __isl_give isl_basic_map
*isl_basic_map_sum(__isl_take isl_basic_map
*bmap1
,
4586 __isl_take isl_basic_map
*bmap2
)
4588 unsigned n_in
, n_out
, nparam
, total
, pos
;
4589 struct isl_basic_map
*bmap
= NULL
;
4590 struct isl_dim_map
*dim_map1
, *dim_map2
;
4593 if (!bmap1
|| !bmap2
)
4596 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
),
4599 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
4600 n_in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
4601 n_out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
4603 total
= nparam
+ n_in
+ n_out
+ bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
;
4604 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
4605 dim_map2
= isl_dim_map_alloc(bmap2
->ctx
, total
);
4606 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
4607 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
);
4608 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
4609 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
4610 isl_dim_map_div(dim_map1
, bmap1
, pos
+= n_in
+ n_out
);
4611 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
4612 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= bmap2
->n_div
);
4613 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= n_out
);
4615 bmap
= isl_basic_map_alloc_space(isl_space_copy(bmap1
->dim
),
4616 bmap1
->n_div
+ bmap2
->n_div
+ 2 * n_out
,
4617 bmap1
->n_eq
+ bmap2
->n_eq
+ n_out
,
4618 bmap1
->n_ineq
+ bmap2
->n_ineq
);
4619 for (i
= 0; i
< n_out
; ++i
) {
4620 int j
= isl_basic_map_alloc_equality(bmap
);
4623 isl_seq_clr(bmap
->eq
[j
], 1+total
);
4624 isl_int_set_si(bmap
->eq
[j
][1+nparam
+n_in
+i
], -1);
4625 isl_int_set_si(bmap
->eq
[j
][1+pos
+i
], 1);
4626 isl_int_set_si(bmap
->eq
[j
][1+pos
-n_out
+i
], 1);
4628 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
4629 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
4630 bmap
= add_divs(bmap
, 2 * n_out
);
4632 bmap
= isl_basic_map_simplify(bmap
);
4633 return isl_basic_map_finalize(bmap
);
4635 isl_basic_map_free(bmap
);
4636 isl_basic_map_free(bmap1
);
4637 isl_basic_map_free(bmap2
);
4641 /* Given two maps A -> f(A) and B -> g(B), construct a map
4642 * A \cap B -> f(A) + f(B)
4644 __isl_give isl_map
*isl_map_sum(__isl_take isl_map
*map1
,
4645 __isl_take isl_map
*map2
)
4647 struct isl_map
*result
;
4653 isl_assert(map1
->ctx
, isl_space_is_equal(map1
->dim
, map2
->dim
), goto error
);
4655 result
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
4656 map1
->n
* map2
->n
, 0);
4659 for (i
= 0; i
< map1
->n
; ++i
)
4660 for (j
= 0; j
< map2
->n
; ++j
) {
4661 struct isl_basic_map
*part
;
4662 part
= isl_basic_map_sum(
4663 isl_basic_map_copy(map1
->p
[i
]),
4664 isl_basic_map_copy(map2
->p
[j
]));
4665 if (isl_basic_map_is_empty(part
))
4666 isl_basic_map_free(part
);
4668 result
= isl_map_add_basic_map(result
, part
);
4681 __isl_give isl_set
*isl_set_sum(__isl_take isl_set
*set1
,
4682 __isl_take isl_set
*set2
)
4684 return set_from_map(isl_map_sum(set_to_map(set1
), set_to_map(set2
)));
4687 /* Given a basic map A -> f(A), construct A -> -f(A).
4689 __isl_give isl_basic_map
*isl_basic_map_neg(__isl_take isl_basic_map
*bmap
)
4694 bmap
= isl_basic_map_cow(bmap
);
4698 n
= isl_basic_map_dim(bmap
, isl_dim_out
);
4699 off
= isl_basic_map_offset(bmap
, isl_dim_out
);
4700 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4701 for (j
= 0; j
< n
; ++j
)
4702 isl_int_neg(bmap
->eq
[i
][off
+j
], bmap
->eq
[i
][off
+j
]);
4703 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
4704 for (j
= 0; j
< n
; ++j
)
4705 isl_int_neg(bmap
->ineq
[i
][off
+j
], bmap
->ineq
[i
][off
+j
]);
4706 for (i
= 0; i
< bmap
->n_div
; ++i
)
4707 for (j
= 0; j
< n
; ++j
)
4708 isl_int_neg(bmap
->div
[i
][1+off
+j
], bmap
->div
[i
][1+off
+j
]);
4709 bmap
= isl_basic_map_gauss(bmap
, NULL
);
4710 return isl_basic_map_finalize(bmap
);
4713 __isl_give isl_basic_set
*isl_basic_set_neg(__isl_take isl_basic_set
*bset
)
4715 return isl_basic_map_neg(bset
);
4718 /* Given a map A -> f(A), construct A -> -f(A).
4720 __isl_give isl_map
*isl_map_neg(__isl_take isl_map
*map
)
4724 map
= isl_map_cow(map
);
4728 for (i
= 0; i
< map
->n
; ++i
) {
4729 map
->p
[i
] = isl_basic_map_neg(map
->p
[i
]);
4740 __isl_give isl_set
*isl_set_neg(__isl_take isl_set
*set
)
4742 return set_from_map(isl_map_neg(set_to_map(set
)));
4745 /* Given a basic map A -> f(A) and an integer d, construct a basic map
4746 * A -> floor(f(A)/d).
4748 __isl_give isl_basic_map
*isl_basic_map_floordiv(__isl_take isl_basic_map
*bmap
,
4751 unsigned n_in
, n_out
, nparam
, total
, pos
;
4752 struct isl_basic_map
*result
= NULL
;
4753 struct isl_dim_map
*dim_map
;
4759 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4760 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4761 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4763 total
= nparam
+ n_in
+ n_out
+ bmap
->n_div
+ n_out
;
4764 dim_map
= isl_dim_map_alloc(bmap
->ctx
, total
);
4765 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_param
, pos
= 0);
4766 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_in
, pos
+= nparam
);
4767 isl_dim_map_div(dim_map
, bmap
, pos
+= n_in
+ n_out
);
4768 isl_dim_map_dim(dim_map
, bmap
->dim
, isl_dim_out
, pos
+= bmap
->n_div
);
4770 result
= isl_basic_map_alloc_space(isl_space_copy(bmap
->dim
),
4771 bmap
->n_div
+ n_out
,
4772 bmap
->n_eq
, bmap
->n_ineq
+ 2 * n_out
);
4773 result
= isl_basic_map_add_constraints_dim_map(result
, bmap
, dim_map
);
4774 result
= add_divs(result
, n_out
);
4775 for (i
= 0; i
< n_out
; ++i
) {
4777 j
= isl_basic_map_alloc_inequality(result
);
4780 isl_seq_clr(result
->ineq
[j
], 1+total
);
4781 isl_int_neg(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4782 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], 1);
4783 j
= isl_basic_map_alloc_inequality(result
);
4786 isl_seq_clr(result
->ineq
[j
], 1+total
);
4787 isl_int_set(result
->ineq
[j
][1+nparam
+n_in
+i
], d
);
4788 isl_int_set_si(result
->ineq
[j
][1+pos
+i
], -1);
4789 isl_int_sub_ui(result
->ineq
[j
][0], d
, 1);
4792 result
= isl_basic_map_simplify(result
);
4793 return isl_basic_map_finalize(result
);
4795 isl_basic_map_free(result
);
4799 /* Given a map A -> f(A) and an integer d, construct a map
4800 * A -> floor(f(A)/d).
4802 __isl_give isl_map
*isl_map_floordiv(__isl_take isl_map
*map
, isl_int d
)
4806 map
= isl_map_cow(map
);
4810 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
4811 for (i
= 0; i
< map
->n
; ++i
) {
4812 map
->p
[i
] = isl_basic_map_floordiv(map
->p
[i
], d
);
4816 map
= isl_map_unmark_normalized(map
);
4824 /* Given a map A -> f(A) and an integer d, construct a map
4825 * A -> floor(f(A)/d).
4827 __isl_give isl_map
*isl_map_floordiv_val(__isl_take isl_map
*map
,
4828 __isl_take isl_val
*d
)
4832 if (!isl_val_is_int(d
))
4833 isl_die(isl_val_get_ctx(d
), isl_error_invalid
,
4834 "expecting integer denominator", goto error
);
4835 map
= isl_map_floordiv(map
, d
->n
);
4844 static __isl_give isl_basic_map
*var_equal(__isl_take isl_basic_map
*bmap
,
4851 i
= isl_basic_map_alloc_equality(bmap
);
4854 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4855 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4856 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4857 isl_int_set_si(bmap
->eq
[i
][1+nparam
+pos
], -1);
4858 isl_int_set_si(bmap
->eq
[i
][1+nparam
+n_in
+pos
], 1);
4859 return isl_basic_map_finalize(bmap
);
4861 isl_basic_map_free(bmap
);
4865 /* Add a constraint to "bmap" expressing i_pos < o_pos
4867 static __isl_give isl_basic_map
*var_less(__isl_take isl_basic_map
*bmap
,
4874 i
= isl_basic_map_alloc_inequality(bmap
);
4877 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4878 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4879 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4880 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4881 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4882 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4883 return isl_basic_map_finalize(bmap
);
4885 isl_basic_map_free(bmap
);
4889 /* Add a constraint to "bmap" expressing i_pos <= o_pos
4891 static __isl_give isl_basic_map
*var_less_or_equal(
4892 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4898 i
= isl_basic_map_alloc_inequality(bmap
);
4901 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4902 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4903 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4904 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], -1);
4905 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], 1);
4906 return isl_basic_map_finalize(bmap
);
4908 isl_basic_map_free(bmap
);
4912 /* Add a constraint to "bmap" expressing i_pos > o_pos
4914 static __isl_give isl_basic_map
*var_more(__isl_take isl_basic_map
*bmap
,
4921 i
= isl_basic_map_alloc_inequality(bmap
);
4924 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4925 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4926 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4927 isl_int_set_si(bmap
->ineq
[i
][0], -1);
4928 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4929 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4930 return isl_basic_map_finalize(bmap
);
4932 isl_basic_map_free(bmap
);
4936 /* Add a constraint to "bmap" expressing i_pos >= o_pos
4938 static __isl_give isl_basic_map
*var_more_or_equal(
4939 __isl_take isl_basic_map
*bmap
, unsigned pos
)
4945 i
= isl_basic_map_alloc_inequality(bmap
);
4948 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
4949 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
4950 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
4951 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+pos
], 1);
4952 isl_int_set_si(bmap
->ineq
[i
][1+nparam
+n_in
+pos
], -1);
4953 return isl_basic_map_finalize(bmap
);
4955 isl_basic_map_free(bmap
);
4959 __isl_give isl_basic_map
*isl_basic_map_equal(
4960 __isl_take isl_space
*dim
, unsigned n_equal
)
4963 struct isl_basic_map
*bmap
;
4964 bmap
= isl_basic_map_alloc_space(dim
, 0, n_equal
, 0);
4967 for (i
= 0; i
< n_equal
&& bmap
; ++i
)
4968 bmap
= var_equal(bmap
, i
);
4969 return isl_basic_map_finalize(bmap
);
4972 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
4974 __isl_give isl_basic_map
*isl_basic_map_less_at(__isl_take isl_space
*dim
,
4978 struct isl_basic_map
*bmap
;
4979 bmap
= isl_basic_map_alloc_space(dim
, 0, pos
, 1);
4982 for (i
= 0; i
< pos
&& bmap
; ++i
)
4983 bmap
= var_equal(bmap
, i
);
4985 bmap
= var_less(bmap
, pos
);
4986 return isl_basic_map_finalize(bmap
);
4989 /* Return a relation on "space" expressing i_[0..pos] <<= o_[0..pos]
4991 __isl_give isl_basic_map
*isl_basic_map_less_or_equal_at(
4992 __isl_take isl_space
*space
, unsigned pos
)
4995 isl_basic_map
*bmap
;
4997 bmap
= isl_basic_map_alloc_space(space
, 0, pos
, 1);
4998 for (i
= 0; i
< pos
; ++i
)
4999 bmap
= var_equal(bmap
, i
);
5000 bmap
= var_less_or_equal(bmap
, pos
);
5001 return isl_basic_map_finalize(bmap
);
5004 /* Return a relation on "space" expressing i_pos > o_pos
5006 __isl_give isl_basic_map
*isl_basic_map_more_at(__isl_take isl_space
*space
,
5010 struct isl_basic_map
*bmap
;
5011 bmap
= isl_basic_map_alloc_space(space
, 0, pos
, 1);
5014 for (i
= 0; i
< pos
&& bmap
; ++i
)
5015 bmap
= var_equal(bmap
, i
);
5017 bmap
= var_more(bmap
, pos
);
5018 return isl_basic_map_finalize(bmap
);
5021 /* Return a relation on "space" expressing i_[0..pos] >>= o_[0..pos]
5023 __isl_give isl_basic_map
*isl_basic_map_more_or_equal_at(
5024 __isl_take isl_space
*space
, unsigned pos
)
5027 isl_basic_map
*bmap
;
5029 bmap
= isl_basic_map_alloc_space(space
, 0, pos
, 1);
5030 for (i
= 0; i
< pos
; ++i
)
5031 bmap
= var_equal(bmap
, i
);
5032 bmap
= var_more_or_equal(bmap
, pos
);
5033 return isl_basic_map_finalize(bmap
);
5036 static __isl_give isl_map
*map_lex_lte_first(__isl_take isl_space
*space
,
5037 unsigned n
, int equal
)
5039 struct isl_map
*map
;
5042 if (n
== 0 && equal
)
5043 return isl_map_universe(space
);
5045 map
= isl_map_alloc_space(isl_space_copy(space
), n
, ISL_MAP_DISJOINT
);
5047 for (i
= 0; i
+ 1 < n
; ++i
)
5048 map
= isl_map_add_basic_map(map
,
5049 isl_basic_map_less_at(isl_space_copy(space
), i
));
5052 map
= isl_map_add_basic_map(map
,
5053 isl_basic_map_less_or_equal_at(space
, n
- 1));
5055 map
= isl_map_add_basic_map(map
,
5056 isl_basic_map_less_at(space
, n
- 1));
5058 isl_space_free(space
);
5063 static __isl_give isl_map
*map_lex_lte(__isl_take isl_space
*space
, int equal
)
5067 return map_lex_lte_first(space
, space
->n_out
, equal
);
5070 __isl_give isl_map
*isl_map_lex_lt_first(__isl_take isl_space
*dim
, unsigned n
)
5072 return map_lex_lte_first(dim
, n
, 0);
5075 __isl_give isl_map
*isl_map_lex_le_first(__isl_take isl_space
*dim
, unsigned n
)
5077 return map_lex_lte_first(dim
, n
, 1);
5080 __isl_give isl_map
*isl_map_lex_lt(__isl_take isl_space
*set_dim
)
5082 return map_lex_lte(isl_space_map_from_set(set_dim
), 0);
5085 __isl_give isl_map
*isl_map_lex_le(__isl_take isl_space
*set_dim
)
5087 return map_lex_lte(isl_space_map_from_set(set_dim
), 1);
5090 static __isl_give isl_map
*map_lex_gte_first(__isl_take isl_space
*space
,
5091 unsigned n
, int equal
)
5093 struct isl_map
*map
;
5096 if (n
== 0 && equal
)
5097 return isl_map_universe(space
);
5099 map
= isl_map_alloc_space(isl_space_copy(space
), n
, ISL_MAP_DISJOINT
);
5101 for (i
= 0; i
+ 1 < n
; ++i
)
5102 map
= isl_map_add_basic_map(map
,
5103 isl_basic_map_more_at(isl_space_copy(space
), i
));
5106 map
= isl_map_add_basic_map(map
,
5107 isl_basic_map_more_or_equal_at(space
, n
- 1));
5109 map
= isl_map_add_basic_map(map
,
5110 isl_basic_map_more_at(space
, n
- 1));
5112 isl_space_free(space
);
5117 static __isl_give isl_map
*map_lex_gte(__isl_take isl_space
*space
, int equal
)
5121 return map_lex_gte_first(space
, space
->n_out
, equal
);
5124 __isl_give isl_map
*isl_map_lex_gt_first(__isl_take isl_space
*dim
, unsigned n
)
5126 return map_lex_gte_first(dim
, n
, 0);
5129 __isl_give isl_map
*isl_map_lex_ge_first(__isl_take isl_space
*dim
, unsigned n
)
5131 return map_lex_gte_first(dim
, n
, 1);
5134 __isl_give isl_map
*isl_map_lex_gt(__isl_take isl_space
*set_dim
)
5136 return map_lex_gte(isl_space_map_from_set(set_dim
), 0);
5139 __isl_give isl_map
*isl_map_lex_ge(__isl_take isl_space
*set_dim
)
5141 return map_lex_gte(isl_space_map_from_set(set_dim
), 1);
5144 __isl_give isl_map
*isl_set_lex_le_set(__isl_take isl_set
*set1
,
5145 __isl_take isl_set
*set2
)
5148 map
= isl_map_lex_le(isl_set_get_space(set1
));
5149 map
= isl_map_intersect_domain(map
, set1
);
5150 map
= isl_map_intersect_range(map
, set2
);
5154 __isl_give isl_map
*isl_set_lex_lt_set(__isl_take isl_set
*set1
,
5155 __isl_take isl_set
*set2
)
5158 map
= isl_map_lex_lt(isl_set_get_space(set1
));
5159 map
= isl_map_intersect_domain(map
, set1
);
5160 map
= isl_map_intersect_range(map
, set2
);
5164 __isl_give isl_map
*isl_set_lex_ge_set(__isl_take isl_set
*set1
,
5165 __isl_take isl_set
*set2
)
5168 map
= isl_map_lex_ge(isl_set_get_space(set1
));
5169 map
= isl_map_intersect_domain(map
, set1
);
5170 map
= isl_map_intersect_range(map
, set2
);
5174 __isl_give isl_map
*isl_set_lex_gt_set(__isl_take isl_set
*set1
,
5175 __isl_take isl_set
*set2
)
5178 map
= isl_map_lex_gt(isl_set_get_space(set1
));
5179 map
= isl_map_intersect_domain(map
, set1
);
5180 map
= isl_map_intersect_range(map
, set2
);
5184 __isl_give isl_map
*isl_map_lex_le_map(__isl_take isl_map
*map1
,
5185 __isl_take isl_map
*map2
)
5188 map
= isl_map_lex_le(isl_space_range(isl_map_get_space(map1
)));
5189 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5190 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5194 __isl_give isl_map
*isl_map_lex_lt_map(__isl_take isl_map
*map1
,
5195 __isl_take isl_map
*map2
)
5198 map
= isl_map_lex_lt(isl_space_range(isl_map_get_space(map1
)));
5199 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5200 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5204 __isl_give isl_map
*isl_map_lex_ge_map(__isl_take isl_map
*map1
,
5205 __isl_take isl_map
*map2
)
5208 map
= isl_map_lex_ge(isl_space_range(isl_map_get_space(map1
)));
5209 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5210 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5214 __isl_give isl_map
*isl_map_lex_gt_map(__isl_take isl_map
*map1
,
5215 __isl_take isl_map
*map2
)
5218 map
= isl_map_lex_gt(isl_space_range(isl_map_get_space(map1
)));
5219 map
= isl_map_apply_domain(map
, isl_map_reverse(map1
));
5220 map
= isl_map_apply_range(map
, isl_map_reverse(map2
));
5224 /* For a div d = floor(f/m), add the constraint
5228 static isl_stat
add_upper_div_constraint(__isl_keep isl_basic_map
*bmap
,
5229 unsigned pos
, isl_int
*div
)
5232 unsigned total
= isl_basic_map_total_dim(bmap
);
5234 i
= isl_basic_map_alloc_inequality(bmap
);
5236 return isl_stat_error
;
5237 isl_seq_cpy(bmap
->ineq
[i
], div
+ 1, 1 + total
);
5238 isl_int_neg(bmap
->ineq
[i
][1 + pos
], div
[0]);
5243 /* For a div d = floor(f/m), add the constraint
5245 * -(f-(m-1)) + m d >= 0
5247 static isl_stat
add_lower_div_constraint(__isl_keep isl_basic_map
*bmap
,
5248 unsigned pos
, isl_int
*div
)
5251 unsigned total
= isl_basic_map_total_dim(bmap
);
5253 i
= isl_basic_map_alloc_inequality(bmap
);
5255 return isl_stat_error
;
5256 isl_seq_neg(bmap
->ineq
[i
], div
+ 1, 1 + total
);
5257 isl_int_set(bmap
->ineq
[i
][1 + pos
], div
[0]);
5258 isl_int_add(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], bmap
->ineq
[i
][1 + pos
]);
5259 isl_int_sub_ui(bmap
->ineq
[i
][0], bmap
->ineq
[i
][0], 1);
5264 /* For a div d = floor(f/m), add the constraints
5267 * -(f-(m-1)) + m d >= 0
5269 * Note that the second constraint is the negation of
5273 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map
*bmap
,
5274 unsigned pos
, isl_int
*div
)
5276 if (add_upper_div_constraint(bmap
, pos
, div
) < 0)
5278 if (add_lower_div_constraint(bmap
, pos
, div
) < 0)
5283 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set
*bset
,
5284 unsigned pos
, isl_int
*div
)
5286 return isl_basic_map_add_div_constraints_var(bset_to_bmap(bset
),
5290 int isl_basic_map_add_div_constraints(__isl_keep isl_basic_map
*bmap
,
5293 unsigned total
= isl_basic_map_total_dim(bmap
);
5294 unsigned div_pos
= total
- bmap
->n_div
+ div
;
5296 return isl_basic_map_add_div_constraints_var(bmap
, div_pos
,
5300 /* For each known div d = floor(f/m), add the constraints
5303 * -(f-(m-1)) + m d >= 0
5305 * Remove duplicate constraints in case of some these div constraints
5306 * already appear in "bmap".
5308 __isl_give isl_basic_map
*isl_basic_map_add_known_div_constraints(
5309 __isl_take isl_basic_map
*bmap
)
5315 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
5319 bmap
= add_known_div_constraints(bmap
);
5320 bmap
= isl_basic_map_remove_duplicate_constraints(bmap
, NULL
, 0);
5321 bmap
= isl_basic_map_finalize(bmap
);
5325 /* Add the div constraint of sign "sign" for div "div" of "bmap".
5327 * In particular, if this div is of the form d = floor(f/m),
5328 * then add the constraint
5332 * if sign < 0 or the constraint
5334 * -(f-(m-1)) + m d >= 0
5338 int isl_basic_map_add_div_constraint(__isl_keep isl_basic_map
*bmap
,
5339 unsigned div
, int sign
)
5347 total
= isl_basic_map_total_dim(bmap
);
5348 div_pos
= total
- bmap
->n_div
+ div
;
5351 return add_upper_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
5353 return add_lower_div_constraint(bmap
, div_pos
, bmap
->div
[div
]);
5356 __isl_give isl_basic_set
*isl_basic_map_underlying_set(
5357 __isl_take isl_basic_map
*bmap
)
5361 if (bmap
->dim
->nparam
== 0 && bmap
->dim
->n_in
== 0 &&
5363 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_in
) &&
5364 !isl_space_is_named_or_nested(bmap
->dim
, isl_dim_out
))
5365 return bset_from_bmap(bmap
);
5366 bmap
= isl_basic_map_cow(bmap
);
5369 bmap
->dim
= isl_space_underlying(bmap
->dim
, bmap
->n_div
);
5372 bmap
->extra
-= bmap
->n_div
;
5374 bmap
= isl_basic_map_finalize(bmap
);
5375 return bset_from_bmap(bmap
);
5377 isl_basic_map_free(bmap
);
5381 __isl_give isl_basic_set
*isl_basic_set_underlying_set(
5382 __isl_take isl_basic_set
*bset
)
5384 return isl_basic_map_underlying_set(bset_to_bmap(bset
));
5387 /* Replace each element in "list" by the result of applying
5388 * isl_basic_map_underlying_set to the element.
5390 __isl_give isl_basic_set_list
*isl_basic_map_list_underlying_set(
5391 __isl_take isl_basic_map_list
*list
)
5398 n
= isl_basic_map_list_n_basic_map(list
);
5399 for (i
= 0; i
< n
; ++i
) {
5400 isl_basic_map
*bmap
;
5401 isl_basic_set
*bset
;
5403 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
5404 bset
= isl_basic_set_underlying_set(bmap
);
5405 list
= isl_basic_set_list_set_basic_set(list
, i
, bset
);
5411 __isl_give isl_basic_map
*isl_basic_map_overlying_set(
5412 __isl_take isl_basic_set
*bset
, __isl_take isl_basic_map
*like
)
5414 struct isl_basic_map
*bmap
;
5415 struct isl_ctx
*ctx
;
5422 isl_assert(ctx
, bset
->n_div
== 0, goto error
);
5423 isl_assert(ctx
, isl_basic_set_n_param(bset
) == 0, goto error
);
5424 isl_assert(ctx
, bset
->dim
->n_out
== isl_basic_map_total_dim(like
),
5426 if (like
->n_div
== 0) {
5427 isl_space
*space
= isl_basic_map_get_space(like
);
5428 isl_basic_map_free(like
);
5429 return isl_basic_map_reset_space(bset
, space
);
5431 bset
= isl_basic_set_cow(bset
);
5434 total
= bset
->dim
->n_out
+ bset
->extra
;
5435 bmap
= bset_to_bmap(bset
);
5436 isl_space_free(bmap
->dim
);
5437 bmap
->dim
= isl_space_copy(like
->dim
);
5440 bmap
->n_div
= like
->n_div
;
5441 bmap
->extra
+= like
->n_div
;
5445 ltotal
= total
- bmap
->extra
+ like
->extra
;
5448 bmap
->block2
= isl_blk_extend(ctx
, bmap
->block2
,
5449 bmap
->extra
* (1 + 1 + total
));
5450 if (isl_blk_is_error(bmap
->block2
))
5452 div
= isl_realloc_array(ctx
, bmap
->div
, isl_int
*, bmap
->extra
);
5456 for (i
= 0; i
< bmap
->extra
; ++i
)
5457 bmap
->div
[i
] = bmap
->block2
.data
+ i
* (1 + 1 + total
);
5458 for (i
= 0; i
< like
->n_div
; ++i
) {
5459 isl_seq_cpy(bmap
->div
[i
], like
->div
[i
], 1 + 1 + ltotal
);
5460 isl_seq_clr(bmap
->div
[i
]+1+1+ltotal
, total
- ltotal
);
5462 bmap
= isl_basic_map_add_known_div_constraints(bmap
);
5464 isl_basic_map_free(like
);
5465 bmap
= isl_basic_map_simplify(bmap
);
5466 bmap
= isl_basic_map_finalize(bmap
);
5469 isl_basic_map_free(like
);
5470 isl_basic_set_free(bset
);
5474 struct isl_basic_set
*isl_basic_set_from_underlying_set(
5475 struct isl_basic_set
*bset
, struct isl_basic_set
*like
)
5477 return bset_from_bmap(isl_basic_map_overlying_set(bset
,
5478 bset_to_bmap(like
)));
5481 __isl_give isl_set
*isl_map_underlying_set(__isl_take isl_map
*map
)
5485 map
= isl_map_cow(map
);
5488 map
->dim
= isl_space_cow(map
->dim
);
5492 for (i
= 1; i
< map
->n
; ++i
)
5493 isl_assert(map
->ctx
, map
->p
[0]->n_div
== map
->p
[i
]->n_div
,
5495 for (i
= 0; i
< map
->n
; ++i
) {
5496 map
->p
[i
] = bset_to_bmap(
5497 isl_basic_map_underlying_set(map
->p
[i
]));
5502 map
->dim
= isl_space_underlying(map
->dim
, 0);
5504 isl_space_free(map
->dim
);
5505 map
->dim
= isl_space_copy(map
->p
[0]->dim
);
5509 return set_from_map(map
);
5515 /* Replace the space of "bmap" by "space".
5517 * If the space of "bmap" is identical to "space" (including the identifiers
5518 * of the input and output dimensions), then simply return the original input.
5520 __isl_give isl_basic_map
*isl_basic_map_reset_space(
5521 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*space
)
5524 isl_space
*bmap_space
;
5526 bmap_space
= isl_basic_map_peek_space(bmap
);
5527 equal
= isl_space_is_equal(bmap_space
, space
);
5528 if (equal
>= 0 && equal
)
5529 equal
= isl_space_has_equal_ids(bmap_space
, space
);
5533 isl_space_free(space
);
5536 bmap
= isl_basic_map_cow(bmap
);
5537 if (!bmap
|| !space
)
5540 isl_space_free(bmap
->dim
);
5543 bmap
= isl_basic_map_finalize(bmap
);
5547 isl_basic_map_free(bmap
);
5548 isl_space_free(space
);
5552 __isl_give isl_basic_set
*isl_basic_set_reset_space(
5553 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*dim
)
5555 return bset_from_bmap(isl_basic_map_reset_space(bset_to_bmap(bset
),
5559 /* Check that the total dimensions of "map" and "space" are the same.
5561 static isl_stat
check_map_space_equal_total_dim(__isl_keep isl_map
*map
,
5562 __isl_keep isl_space
*space
)
5564 unsigned dim1
, dim2
;
5567 return isl_stat_error
;
5568 dim1
= isl_map_dim(map
, isl_dim_all
);
5569 dim2
= isl_space_dim(space
, isl_dim_all
);
5572 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
5573 "total dimensions do not match", return isl_stat_error
);
5576 __isl_give isl_map
*isl_map_reset_space(__isl_take isl_map
*map
,
5577 __isl_take isl_space
*space
)
5581 map
= isl_map_cow(map
);
5585 for (i
= 0; i
< map
->n
; ++i
) {
5586 map
->p
[i
] = isl_basic_map_reset_space(map
->p
[i
],
5587 isl_space_copy(space
));
5591 isl_space_free(map
->dim
);
5597 isl_space_free(space
);
5601 /* Replace the space of "map" by "space", without modifying
5602 * the dimension of "map".
5604 * If the space of "map" is identical to "space" (including the identifiers
5605 * of the input and output dimensions), then simply return the original input.
5607 __isl_give isl_map
*isl_map_reset_equal_dim_space(__isl_take isl_map
*map
,
5608 __isl_take isl_space
*space
)
5611 isl_space
*map_space
;
5613 map_space
= isl_map_peek_space(map
);
5614 equal
= isl_space_is_equal(map_space
, space
);
5615 if (equal
>= 0 && equal
)
5616 equal
= isl_space_has_equal_ids(map_space
, space
);
5620 isl_space_free(space
);
5623 if (check_map_space_equal_total_dim(map
, space
) < 0)
5625 return isl_map_reset_space(map
, space
);
5628 isl_space_free(space
);
5632 __isl_give isl_set
*isl_set_reset_space(__isl_take isl_set
*set
,
5633 __isl_take isl_space
*dim
)
5635 return set_from_map(isl_map_reset_space(set_to_map(set
), dim
));
5638 /* Compute the parameter domain of the given basic set.
5640 __isl_give isl_basic_set
*isl_basic_set_params(__isl_take isl_basic_set
*bset
)
5646 is_params
= isl_basic_set_is_params(bset
);
5648 return isl_basic_set_free(bset
);
5652 n
= isl_basic_set_dim(bset
, isl_dim_set
);
5653 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
5654 space
= isl_basic_set_get_space(bset
);
5655 space
= isl_space_params(space
);
5656 bset
= isl_basic_set_reset_space(bset
, space
);
5660 /* Construct a zero-dimensional basic set with the given parameter domain.
5662 __isl_give isl_basic_set
*isl_basic_set_from_params(
5663 __isl_take isl_basic_set
*bset
)
5666 space
= isl_basic_set_get_space(bset
);
5667 space
= isl_space_set_from_params(space
);
5668 bset
= isl_basic_set_reset_space(bset
, space
);
5672 /* Compute the parameter domain of the given set.
5674 __isl_give isl_set
*isl_set_params(__isl_take isl_set
*set
)
5679 if (isl_set_is_params(set
))
5682 n
= isl_set_dim(set
, isl_dim_set
);
5683 set
= isl_set_project_out(set
, isl_dim_set
, 0, n
);
5684 space
= isl_set_get_space(set
);
5685 space
= isl_space_params(space
);
5686 set
= isl_set_reset_space(set
, space
);
5690 /* Construct a zero-dimensional set with the given parameter domain.
5692 __isl_give isl_set
*isl_set_from_params(__isl_take isl_set
*set
)
5695 space
= isl_set_get_space(set
);
5696 space
= isl_space_set_from_params(space
);
5697 set
= isl_set_reset_space(set
, space
);
5701 /* Compute the parameter domain of the given map.
5703 __isl_give isl_set
*isl_map_params(__isl_take isl_map
*map
)
5708 n
= isl_map_dim(map
, isl_dim_in
);
5709 map
= isl_map_project_out(map
, isl_dim_in
, 0, n
);
5710 n
= isl_map_dim(map
, isl_dim_out
);
5711 map
= isl_map_project_out(map
, isl_dim_out
, 0, n
);
5712 space
= isl_map_get_space(map
);
5713 space
= isl_space_params(space
);
5714 map
= isl_map_reset_space(map
, space
);
5718 __isl_give isl_basic_set
*isl_basic_map_domain(__isl_take isl_basic_map
*bmap
)
5725 space
= isl_space_domain(isl_basic_map_get_space(bmap
));
5727 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5728 bmap
= isl_basic_map_project_out(bmap
, isl_dim_out
, 0, n_out
);
5730 return isl_basic_map_reset_space(bmap
, space
);
5733 isl_bool
isl_basic_map_may_be_set(__isl_keep isl_basic_map
*bmap
)
5736 return isl_bool_error
;
5737 return isl_space_may_be_set(bmap
->dim
);
5740 /* Is this basic map actually a set?
5741 * Users should never call this function. Outside of isl,
5742 * the type should indicate whether something is a set or a map.
5744 isl_bool
isl_basic_map_is_set(__isl_keep isl_basic_map
*bmap
)
5747 return isl_bool_error
;
5748 return isl_space_is_set(bmap
->dim
);
5751 struct isl_basic_set
*isl_basic_map_range(struct isl_basic_map
*bmap
)
5755 is_set
= isl_basic_map_is_set(bmap
);
5760 return isl_basic_map_domain(isl_basic_map_reverse(bmap
));
5762 isl_basic_map_free(bmap
);
5766 __isl_give isl_basic_map
*isl_basic_map_domain_map(
5767 __isl_take isl_basic_map
*bmap
)
5771 isl_basic_map
*domain
;
5772 int nparam
, n_in
, n_out
;
5774 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5775 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5776 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5778 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
5779 domain
= isl_basic_map_universe(dim
);
5781 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5782 bmap
= isl_basic_map_apply_range(bmap
, domain
);
5783 bmap
= isl_basic_map_extend_constraints(bmap
, n_in
, 0);
5785 for (i
= 0; i
< n_in
; ++i
)
5786 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, i
,
5789 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5790 return isl_basic_map_finalize(bmap
);
5793 __isl_give isl_basic_map
*isl_basic_map_range_map(
5794 __isl_take isl_basic_map
*bmap
)
5798 isl_basic_map
*range
;
5799 int nparam
, n_in
, n_out
;
5801 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
5802 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
5803 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5805 dim
= isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap
)));
5806 range
= isl_basic_map_universe(dim
);
5808 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
5809 bmap
= isl_basic_map_apply_range(bmap
, range
);
5810 bmap
= isl_basic_map_extend_constraints(bmap
, n_out
, 0);
5812 for (i
= 0; i
< n_out
; ++i
)
5813 bmap
= isl_basic_map_equate(bmap
, isl_dim_in
, n_in
+ i
,
5816 bmap
= isl_basic_map_gauss(bmap
, NULL
);
5817 return isl_basic_map_finalize(bmap
);
5820 int isl_map_may_be_set(__isl_keep isl_map
*map
)
5824 return isl_space_may_be_set(map
->dim
);
5827 /* Is this map actually a set?
5828 * Users should never call this function. Outside of isl,
5829 * the type should indicate whether something is a set or a map.
5831 isl_bool
isl_map_is_set(__isl_keep isl_map
*map
)
5834 return isl_bool_error
;
5835 return isl_space_is_set(map
->dim
);
5838 __isl_give isl_set
*isl_map_range(__isl_take isl_map
*map
)
5842 struct isl_set
*set
;
5844 is_set
= isl_map_is_set(map
);
5848 return set_from_map(map
);
5850 map
= isl_map_cow(map
);
5854 set
= set_from_map(map
);
5855 set
->dim
= isl_space_range(set
->dim
);
5858 for (i
= 0; i
< map
->n
; ++i
) {
5859 set
->p
[i
] = isl_basic_map_range(map
->p
[i
]);
5863 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
5864 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
5871 __isl_give isl_map
*isl_map_domain_map(__isl_take isl_map
*map
)
5875 map
= isl_map_cow(map
);
5879 map
->dim
= isl_space_domain_map(map
->dim
);
5882 for (i
= 0; i
< map
->n
; ++i
) {
5883 map
->p
[i
] = isl_basic_map_domain_map(map
->p
[i
]);
5887 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5888 map
= isl_map_unmark_normalized(map
);
5895 __isl_give isl_map
*isl_map_range_map(__isl_take isl_map
*map
)
5898 isl_space
*range_dim
;
5900 map
= isl_map_cow(map
);
5904 range_dim
= isl_space_range(isl_map_get_space(map
));
5905 range_dim
= isl_space_from_range(range_dim
);
5906 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
5907 map
->dim
= isl_space_join(map
->dim
, range_dim
);
5910 for (i
= 0; i
< map
->n
; ++i
) {
5911 map
->p
[i
] = isl_basic_map_range_map(map
->p
[i
]);
5915 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
5916 map
= isl_map_unmark_normalized(map
);
5923 /* Given a wrapped map of the form A[B -> C],
5924 * return the map A[B -> C] -> B.
5926 __isl_give isl_map
*isl_set_wrapped_domain_map(__isl_take isl_set
*set
)
5933 if (!isl_set_has_tuple_id(set
))
5934 return isl_map_domain_map(isl_set_unwrap(set
));
5936 id
= isl_set_get_tuple_id(set
);
5937 map
= isl_map_domain_map(isl_set_unwrap(set
));
5938 map
= isl_map_set_tuple_id(map
, isl_dim_in
, id
);
5943 __isl_give isl_basic_map
*isl_basic_map_from_domain(
5944 __isl_take isl_basic_set
*bset
)
5946 return isl_basic_map_reverse(isl_basic_map_from_range(bset
));
5949 __isl_give isl_basic_map
*isl_basic_map_from_range(
5950 __isl_take isl_basic_set
*bset
)
5953 space
= isl_basic_set_get_space(bset
);
5954 space
= isl_space_from_range(space
);
5955 bset
= isl_basic_set_reset_space(bset
, space
);
5956 return bset_to_bmap(bset
);
5959 /* Create a relation with the given set as range.
5960 * The domain of the created relation is a zero-dimensional
5961 * flat anonymous space.
5963 __isl_give isl_map
*isl_map_from_range(__isl_take isl_set
*set
)
5966 space
= isl_set_get_space(set
);
5967 space
= isl_space_from_range(space
);
5968 set
= isl_set_reset_space(set
, space
);
5969 return set_to_map(set
);
5972 /* Create a relation with the given set as domain.
5973 * The range of the created relation is a zero-dimensional
5974 * flat anonymous space.
5976 __isl_give isl_map
*isl_map_from_domain(__isl_take isl_set
*set
)
5978 return isl_map_reverse(isl_map_from_range(set
));
5981 __isl_give isl_basic_map
*isl_basic_map_from_domain_and_range(
5982 __isl_take isl_basic_set
*domain
, __isl_take isl_basic_set
*range
)
5984 return isl_basic_map_apply_range(isl_basic_map_reverse(domain
), range
);
5987 __isl_give isl_map
*isl_map_from_domain_and_range(__isl_take isl_set
*domain
,
5988 __isl_take isl_set
*range
)
5990 return isl_map_apply_range(isl_map_reverse(domain
), range
);
5993 /* Return a newly allocated isl_map with given space and flags and
5994 * room for "n" basic maps.
5995 * Make sure that all cached information is cleared.
5997 __isl_give isl_map
*isl_map_alloc_space(__isl_take isl_space
*space
, int n
,
6000 struct isl_map
*map
;
6005 isl_die(space
->ctx
, isl_error_internal
,
6006 "negative number of basic maps", goto error
);
6007 map
= isl_calloc(space
->ctx
, struct isl_map
,
6008 sizeof(struct isl_map
) +
6009 (n
- 1) * sizeof(struct isl_basic_map
*));
6013 map
->ctx
= space
->ctx
;
6014 isl_ctx_ref(map
->ctx
);
6022 isl_space_free(space
);
6026 __isl_give isl_basic_map
*isl_basic_map_empty(__isl_take isl_space
*space
)
6028 struct isl_basic_map
*bmap
;
6029 bmap
= isl_basic_map_alloc_space(space
, 0, 1, 0);
6030 bmap
= isl_basic_map_set_to_empty(bmap
);
6034 __isl_give isl_basic_set
*isl_basic_set_empty(__isl_take isl_space
*space
)
6036 struct isl_basic_set
*bset
;
6037 bset
= isl_basic_set_alloc_space(space
, 0, 1, 0);
6038 bset
= isl_basic_set_set_to_empty(bset
);
6042 __isl_give isl_basic_map
*isl_basic_map_universe(__isl_take isl_space
*space
)
6044 struct isl_basic_map
*bmap
;
6045 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 0);
6046 bmap
= isl_basic_map_finalize(bmap
);
6050 __isl_give isl_basic_set
*isl_basic_set_universe(__isl_take isl_space
*space
)
6052 struct isl_basic_set
*bset
;
6053 bset
= isl_basic_set_alloc_space(space
, 0, 0, 0);
6054 bset
= isl_basic_set_finalize(bset
);
6058 __isl_give isl_basic_map
*isl_basic_map_nat_universe(
6059 __isl_take isl_space
*space
)
6062 unsigned total
= isl_space_dim(space
, isl_dim_all
);
6063 isl_basic_map
*bmap
;
6065 bmap
= isl_basic_map_alloc_space(space
, 0, 0, total
);
6066 for (i
= 0; i
< total
; ++i
) {
6067 int k
= isl_basic_map_alloc_inequality(bmap
);
6070 isl_seq_clr(bmap
->ineq
[k
], 1 + total
);
6071 isl_int_set_si(bmap
->ineq
[k
][1 + i
], 1);
6075 isl_basic_map_free(bmap
);
6079 __isl_give isl_basic_set
*isl_basic_set_nat_universe(
6080 __isl_take isl_space
*space
)
6082 return isl_basic_map_nat_universe(space
);
6085 __isl_give isl_map
*isl_map_nat_universe(__isl_take isl_space
*dim
)
6087 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim
));
6090 __isl_give isl_set
*isl_set_nat_universe(__isl_take isl_space
*dim
)
6092 return isl_map_nat_universe(dim
);
6095 __isl_give isl_map
*isl_map_empty(__isl_take isl_space
*space
)
6097 return isl_map_alloc_space(space
, 0, ISL_MAP_DISJOINT
);
6100 __isl_give isl_set
*isl_set_empty(__isl_take isl_space
*space
)
6102 return isl_set_alloc_space(space
, 0, ISL_MAP_DISJOINT
);
6105 __isl_give isl_map
*isl_map_universe(__isl_take isl_space
*space
)
6107 struct isl_map
*map
;
6110 map
= isl_map_alloc_space(isl_space_copy(space
), 1, ISL_MAP_DISJOINT
);
6111 map
= isl_map_add_basic_map(map
, isl_basic_map_universe(space
));
6115 __isl_give isl_set
*isl_set_universe(__isl_take isl_space
*space
)
6117 struct isl_set
*set
;
6120 set
= isl_set_alloc_space(isl_space_copy(space
), 1, ISL_MAP_DISJOINT
);
6121 set
= isl_set_add_basic_set(set
, isl_basic_set_universe(space
));
6125 struct isl_map
*isl_map_dup(struct isl_map
*map
)
6128 struct isl_map
*dup
;
6132 dup
= isl_map_alloc_space(isl_space_copy(map
->dim
), map
->n
, map
->flags
);
6133 for (i
= 0; i
< map
->n
; ++i
)
6134 dup
= isl_map_add_basic_map(dup
, isl_basic_map_copy(map
->p
[i
]));
6138 __isl_give isl_map
*isl_map_add_basic_map(__isl_take isl_map
*map
,
6139 __isl_take isl_basic_map
*bmap
)
6143 if (isl_basic_map_plain_is_empty(bmap
)) {
6144 isl_basic_map_free(bmap
);
6147 isl_assert(map
->ctx
, isl_space_is_equal(map
->dim
, bmap
->dim
), goto error
);
6148 isl_assert(map
->ctx
, map
->n
< map
->size
, goto error
);
6149 map
->p
[map
->n
] = bmap
;
6151 map
= isl_map_unmark_normalized(map
);
6157 isl_basic_map_free(bmap
);
6161 __isl_null isl_map
*isl_map_free(__isl_take isl_map
*map
)
6172 isl_ctx_deref(map
->ctx
);
6173 for (i
= 0; i
< map
->n
; ++i
)
6174 isl_basic_map_free(map
->p
[i
]);
6175 isl_space_free(map
->dim
);
6181 static __isl_give isl_basic_map
*isl_basic_map_fix_pos_si(
6182 __isl_take isl_basic_map
*bmap
, unsigned pos
, int value
)
6186 bmap
= isl_basic_map_cow(bmap
);
6187 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
6188 j
= isl_basic_map_alloc_equality(bmap
);
6191 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
6192 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
6193 isl_int_set_si(bmap
->eq
[j
][0], value
);
6194 bmap
= isl_basic_map_simplify(bmap
);
6195 return isl_basic_map_finalize(bmap
);
6197 isl_basic_map_free(bmap
);
6201 static __isl_give isl_basic_map
*isl_basic_map_fix_pos(
6202 __isl_take isl_basic_map
*bmap
, unsigned pos
, isl_int value
)
6206 bmap
= isl_basic_map_cow(bmap
);
6207 bmap
= isl_basic_map_extend_constraints(bmap
, 1, 0);
6208 j
= isl_basic_map_alloc_equality(bmap
);
6211 isl_seq_clr(bmap
->eq
[j
] + 1, isl_basic_map_total_dim(bmap
));
6212 isl_int_set_si(bmap
->eq
[j
][pos
], -1);
6213 isl_int_set(bmap
->eq
[j
][0], value
);
6214 bmap
= isl_basic_map_simplify(bmap
);
6215 return isl_basic_map_finalize(bmap
);
6217 isl_basic_map_free(bmap
);
6221 __isl_give isl_basic_map
*isl_basic_map_fix_si(__isl_take isl_basic_map
*bmap
,
6222 enum isl_dim_type type
, unsigned pos
, int value
)
6224 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6225 return isl_basic_map_free(bmap
);
6226 return isl_basic_map_fix_pos_si(bmap
,
6227 isl_basic_map_offset(bmap
, type
) + pos
, value
);
6230 __isl_give isl_basic_map
*isl_basic_map_fix(__isl_take isl_basic_map
*bmap
,
6231 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6233 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6234 return isl_basic_map_free(bmap
);
6235 return isl_basic_map_fix_pos(bmap
,
6236 isl_basic_map_offset(bmap
, type
) + pos
, value
);
6239 /* Fix the value of the variable at position "pos" of type "type" of "bmap"
6240 * to be equal to "v".
6242 __isl_give isl_basic_map
*isl_basic_map_fix_val(__isl_take isl_basic_map
*bmap
,
6243 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6247 if (!isl_val_is_int(v
))
6248 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
6249 "expecting integer value", goto error
);
6250 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6252 pos
+= isl_basic_map_offset(bmap
, type
);
6253 bmap
= isl_basic_map_fix_pos(bmap
, pos
, v
->n
);
6257 isl_basic_map_free(bmap
);
6262 /* Fix the value of the variable at position "pos" of type "type" of "bset"
6263 * to be equal to "v".
6265 __isl_give isl_basic_set
*isl_basic_set_fix_val(__isl_take isl_basic_set
*bset
,
6266 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6268 return isl_basic_map_fix_val(bset
, type
, pos
, v
);
6271 struct isl_basic_set
*isl_basic_set_fix_si(struct isl_basic_set
*bset
,
6272 enum isl_dim_type type
, unsigned pos
, int value
)
6274 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
6278 __isl_give isl_basic_set
*isl_basic_set_fix(__isl_take isl_basic_set
*bset
,
6279 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6281 return bset_from_bmap(isl_basic_map_fix(bset_to_bmap(bset
),
6285 struct isl_basic_map
*isl_basic_map_fix_input_si(struct isl_basic_map
*bmap
,
6286 unsigned input
, int value
)
6288 return isl_basic_map_fix_si(bmap
, isl_dim_in
, input
, value
);
6291 struct isl_basic_set
*isl_basic_set_fix_dim_si(struct isl_basic_set
*bset
,
6292 unsigned dim
, int value
)
6294 return bset_from_bmap(isl_basic_map_fix_si(bset_to_bmap(bset
),
6295 isl_dim_set
, dim
, value
));
6298 /* Remove the basic map at position "i" from "map" if this basic map
6299 * is (obviously) empty.
6301 static __isl_give isl_map
*remove_if_empty(__isl_take isl_map
*map
, int i
)
6308 empty
= isl_basic_map_plain_is_empty(map
->p
[i
]);
6310 return isl_map_free(map
);
6314 isl_basic_map_free(map
->p
[i
]);
6317 map
->p
[i
] = map
->p
[map
->n
];
6318 map
= isl_map_unmark_normalized(map
);
6325 /* Perform "fn" on each basic map of "map", where we may not be holding
6326 * the only reference to "map".
6327 * In particular, "fn" should be a semantics preserving operation
6328 * that we want to apply to all copies of "map". We therefore need
6329 * to be careful not to modify "map" in a way that breaks "map"
6330 * in case anything goes wrong.
6332 __isl_give isl_map
*isl_map_inline_foreach_basic_map(__isl_take isl_map
*map
,
6333 __isl_give isl_basic_map
*(*fn
)(__isl_take isl_basic_map
*bmap
))
6335 struct isl_basic_map
*bmap
;
6341 for (i
= map
->n
- 1; i
>= 0; --i
) {
6342 bmap
= isl_basic_map_copy(map
->p
[i
]);
6346 isl_basic_map_free(map
->p
[i
]);
6348 map
= remove_if_empty(map
, i
);
6359 __isl_give isl_map
*isl_map_fix_si(__isl_take isl_map
*map
,
6360 enum isl_dim_type type
, unsigned pos
, int value
)
6364 map
= isl_map_cow(map
);
6368 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6369 for (i
= map
->n
- 1; i
>= 0; --i
) {
6370 map
->p
[i
] = isl_basic_map_fix_si(map
->p
[i
], type
, pos
, value
);
6371 map
= remove_if_empty(map
, i
);
6375 map
= isl_map_unmark_normalized(map
);
6382 __isl_give isl_set
*isl_set_fix_si(__isl_take isl_set
*set
,
6383 enum isl_dim_type type
, unsigned pos
, int value
)
6385 return set_from_map(isl_map_fix_si(set_to_map(set
), type
, pos
, value
));
6388 __isl_give isl_map
*isl_map_fix(__isl_take isl_map
*map
,
6389 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6393 map
= isl_map_cow(map
);
6397 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6398 for (i
= 0; i
< map
->n
; ++i
) {
6399 map
->p
[i
] = isl_basic_map_fix(map
->p
[i
], type
, pos
, value
);
6403 map
= isl_map_unmark_normalized(map
);
6410 __isl_give isl_set
*isl_set_fix(__isl_take isl_set
*set
,
6411 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6413 return set_from_map(isl_map_fix(set_to_map(set
), type
, pos
, value
));
6416 /* Fix the value of the variable at position "pos" of type "type" of "map"
6417 * to be equal to "v".
6419 __isl_give isl_map
*isl_map_fix_val(__isl_take isl_map
*map
,
6420 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6424 map
= isl_map_cow(map
);
6428 if (!isl_val_is_int(v
))
6429 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6430 "expecting integer value", goto error
);
6431 if (pos
>= isl_map_dim(map
, type
))
6432 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
6433 "index out of bounds", goto error
);
6434 for (i
= map
->n
- 1; i
>= 0; --i
) {
6435 map
->p
[i
] = isl_basic_map_fix_val(map
->p
[i
], type
, pos
,
6437 map
= remove_if_empty(map
, i
);
6441 map
= isl_map_unmark_normalized(map
);
6450 /* Fix the value of the variable at position "pos" of type "type" of "set"
6451 * to be equal to "v".
6453 __isl_give isl_set
*isl_set_fix_val(__isl_take isl_set
*set
,
6454 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*v
)
6456 return isl_map_fix_val(set
, type
, pos
, v
);
6459 struct isl_map
*isl_map_fix_input_si(struct isl_map
*map
,
6460 unsigned input
, int value
)
6462 return isl_map_fix_si(map
, isl_dim_in
, input
, value
);
6465 struct isl_set
*isl_set_fix_dim_si(struct isl_set
*set
, unsigned dim
, int value
)
6467 return set_from_map(isl_map_fix_si(set_to_map(set
),
6468 isl_dim_set
, dim
, value
));
6471 static __isl_give isl_basic_map
*basic_map_bound_si(
6472 __isl_take isl_basic_map
*bmap
,
6473 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6477 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6478 return isl_basic_map_free(bmap
);
6479 pos
+= isl_basic_map_offset(bmap
, type
);
6480 bmap
= isl_basic_map_cow(bmap
);
6481 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6482 j
= isl_basic_map_alloc_inequality(bmap
);
6485 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6487 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6488 isl_int_set_si(bmap
->ineq
[j
][0], value
);
6490 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6491 isl_int_set_si(bmap
->ineq
[j
][0], -value
);
6493 bmap
= isl_basic_map_simplify(bmap
);
6494 return isl_basic_map_finalize(bmap
);
6496 isl_basic_map_free(bmap
);
6500 __isl_give isl_basic_map
*isl_basic_map_lower_bound_si(
6501 __isl_take isl_basic_map
*bmap
,
6502 enum isl_dim_type type
, unsigned pos
, int value
)
6504 return basic_map_bound_si(bmap
, type
, pos
, value
, 0);
6507 /* Constrain the values of the given dimension to be no greater than "value".
6509 __isl_give isl_basic_map
*isl_basic_map_upper_bound_si(
6510 __isl_take isl_basic_map
*bmap
,
6511 enum isl_dim_type type
, unsigned pos
, int value
)
6513 return basic_map_bound_si(bmap
, type
, pos
, value
, 1);
6516 static __isl_give isl_map
*map_bound_si(__isl_take isl_map
*map
,
6517 enum isl_dim_type type
, unsigned pos
, int value
, int upper
)
6521 map
= isl_map_cow(map
);
6525 isl_assert(map
->ctx
, pos
< isl_map_dim(map
, type
), goto error
);
6526 for (i
= 0; i
< map
->n
; ++i
) {
6527 map
->p
[i
] = basic_map_bound_si(map
->p
[i
],
6528 type
, pos
, value
, upper
);
6532 map
= isl_map_unmark_normalized(map
);
6539 __isl_give isl_map
*isl_map_lower_bound_si(__isl_take isl_map
*map
,
6540 enum isl_dim_type type
, unsigned pos
, int value
)
6542 return map_bound_si(map
, type
, pos
, value
, 0);
6545 __isl_give isl_map
*isl_map_upper_bound_si(__isl_take isl_map
*map
,
6546 enum isl_dim_type type
, unsigned pos
, int value
)
6548 return map_bound_si(map
, type
, pos
, value
, 1);
6551 __isl_give isl_set
*isl_set_lower_bound_si(__isl_take isl_set
*set
,
6552 enum isl_dim_type type
, unsigned pos
, int value
)
6554 return set_from_map(isl_map_lower_bound_si(set_to_map(set
),
6558 __isl_give isl_set
*isl_set_upper_bound_si(__isl_take isl_set
*set
,
6559 enum isl_dim_type type
, unsigned pos
, int value
)
6561 return isl_map_upper_bound_si(set
, type
, pos
, value
);
6564 /* Bound the given variable of "bmap" from below (or above is "upper"
6565 * is set) to "value".
6567 static __isl_give isl_basic_map
*basic_map_bound(
6568 __isl_take isl_basic_map
*bmap
,
6569 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6573 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
6574 return isl_basic_map_free(bmap
);
6575 pos
+= isl_basic_map_offset(bmap
, type
);
6576 bmap
= isl_basic_map_cow(bmap
);
6577 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
6578 j
= isl_basic_map_alloc_inequality(bmap
);
6581 isl_seq_clr(bmap
->ineq
[j
], 1 + isl_basic_map_total_dim(bmap
));
6583 isl_int_set_si(bmap
->ineq
[j
][pos
], -1);
6584 isl_int_set(bmap
->ineq
[j
][0], value
);
6586 isl_int_set_si(bmap
->ineq
[j
][pos
], 1);
6587 isl_int_neg(bmap
->ineq
[j
][0], value
);
6589 bmap
= isl_basic_map_simplify(bmap
);
6590 return isl_basic_map_finalize(bmap
);
6592 isl_basic_map_free(bmap
);
6596 /* Bound the given variable of "map" from below (or above is "upper"
6597 * is set) to "value".
6599 static __isl_give isl_map
*map_bound(__isl_take isl_map
*map
,
6600 enum isl_dim_type type
, unsigned pos
, isl_int value
, int upper
)
6604 map
= isl_map_cow(map
);
6608 if (pos
>= isl_map_dim(map
, type
))
6609 isl_die(map
->ctx
, isl_error_invalid
,
6610 "index out of bounds", goto error
);
6611 for (i
= map
->n
- 1; i
>= 0; --i
) {
6612 map
->p
[i
] = basic_map_bound(map
->p
[i
], type
, pos
, value
, upper
);
6613 map
= remove_if_empty(map
, i
);
6617 map
= isl_map_unmark_normalized(map
);
6624 __isl_give isl_map
*isl_map_lower_bound(__isl_take isl_map
*map
,
6625 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6627 return map_bound(map
, type
, pos
, value
, 0);
6630 __isl_give isl_map
*isl_map_upper_bound(__isl_take isl_map
*map
,
6631 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6633 return map_bound(map
, type
, pos
, value
, 1);
6636 __isl_give isl_set
*isl_set_lower_bound(__isl_take isl_set
*set
,
6637 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6639 return isl_map_lower_bound(set
, type
, pos
, value
);
6642 __isl_give isl_set
*isl_set_upper_bound(__isl_take isl_set
*set
,
6643 enum isl_dim_type type
, unsigned pos
, isl_int value
)
6645 return isl_map_upper_bound(set
, type
, pos
, value
);
6648 /* Force the values of the variable at position "pos" of type "type" of "set"
6649 * to be no smaller than "value".
6651 __isl_give isl_set
*isl_set_lower_bound_val(__isl_take isl_set
*set
,
6652 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6656 if (!isl_val_is_int(value
))
6657 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6658 "expecting integer value", goto error
);
6659 set
= isl_set_lower_bound(set
, type
, pos
, value
->n
);
6660 isl_val_free(value
);
6663 isl_val_free(value
);
6668 /* Force the values of the variable at position "pos" of type "type" of "set"
6669 * to be no greater than "value".
6671 __isl_give isl_set
*isl_set_upper_bound_val(__isl_take isl_set
*set
,
6672 enum isl_dim_type type
, unsigned pos
, __isl_take isl_val
*value
)
6676 if (!isl_val_is_int(value
))
6677 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
6678 "expecting integer value", goto error
);
6679 set
= isl_set_upper_bound(set
, type
, pos
, value
->n
);
6680 isl_val_free(value
);
6683 isl_val_free(value
);
6688 /* Bound the given variable of "bset" from below (or above is "upper"
6689 * is set) to "value".
6691 static __isl_give isl_basic_set
*isl_basic_set_bound(
6692 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned pos
,
6693 isl_int value
, int upper
)
6695 return bset_from_bmap(basic_map_bound(bset_to_bmap(bset
),
6696 type
, pos
, value
, upper
));
6699 /* Bound the given variable of "bset" from below (or above is "upper"
6700 * is set) to "value".
6702 static __isl_give isl_basic_set
*isl_basic_set_bound_val(
6703 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned pos
,
6704 __isl_take isl_val
*value
, int upper
)
6708 if (!isl_val_is_int(value
))
6709 isl_die(isl_basic_set_get_ctx(bset
), isl_error_invalid
,
6710 "expecting integer value", goto error
);
6711 bset
= isl_basic_set_bound(bset
, type
, pos
, value
->n
, upper
);
6712 isl_val_free(value
);
6715 isl_val_free(value
);
6716 isl_basic_set_free(bset
);
6720 /* Bound the given variable of "bset" from below to "value".
6722 __isl_give isl_basic_set
*isl_basic_set_lower_bound_val(
6723 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned pos
,
6724 __isl_take isl_val
*value
)
6726 return isl_basic_set_bound_val(bset
, type
, pos
, value
, 0);
6729 /* Bound the given variable of "bset" from above to "value".
6731 __isl_give isl_basic_set
*isl_basic_set_upper_bound_val(
6732 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned pos
,
6733 __isl_take isl_val
*value
)
6735 return isl_basic_set_bound_val(bset
, type
, pos
, value
, 1);
6738 __isl_give isl_map
*isl_map_reverse(__isl_take isl_map
*map
)
6742 map
= isl_map_cow(map
);
6746 map
->dim
= isl_space_reverse(map
->dim
);
6749 for (i
= 0; i
< map
->n
; ++i
) {
6750 map
->p
[i
] = isl_basic_map_reverse(map
->p
[i
]);
6754 map
= isl_map_unmark_normalized(map
);
6762 #define TYPE isl_pw_multi_aff
6764 #define SUFFIX _pw_multi_aff
6766 #define EMPTY isl_pw_multi_aff_empty
6768 #define ADD isl_pw_multi_aff_union_add
6769 #include "isl_map_lexopt_templ.c"
6771 /* Given a map "map", compute the lexicographically minimal
6772 * (or maximal) image element for each domain element in dom,
6773 * in the form of an isl_pw_multi_aff.
6774 * If "empty" is not NULL, then set *empty to those elements in dom that
6775 * do not have an image element.
6776 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6777 * should be computed over the domain of "map". "empty" is also NULL
6780 * We first compute the lexicographically minimal or maximal element
6781 * in the first basic map. This results in a partial solution "res"
6782 * and a subset "todo" of dom that still need to be handled.
6783 * We then consider each of the remaining maps in "map" and successively
6784 * update both "res" and "todo".
6785 * If "empty" is NULL, then the todo sets are not needed and therefore
6786 * also not computed.
6788 static __isl_give isl_pw_multi_aff
*isl_map_partial_lexopt_aligned_pw_multi_aff(
6789 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6790 __isl_give isl_set
**empty
, unsigned flags
)
6794 isl_pw_multi_aff
*res
;
6797 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6798 if (!map
|| (!full
&& !dom
))
6801 if (isl_map_plain_is_empty(map
)) {
6806 return isl_pw_multi_aff_from_map(map
);
6809 res
= basic_map_partial_lexopt_pw_multi_aff(
6810 isl_basic_map_copy(map
->p
[0]),
6811 isl_set_copy(dom
), empty
, flags
);
6815 for (i
= 1; i
< map
->n
; ++i
) {
6816 isl_pw_multi_aff
*res_i
;
6818 res_i
= basic_map_partial_lexopt_pw_multi_aff(
6819 isl_basic_map_copy(map
->p
[i
]),
6820 isl_set_copy(dom
), empty
, flags
);
6822 if (ISL_FL_ISSET(flags
, ISL_OPT_MAX
))
6823 res
= isl_pw_multi_aff_union_lexmax(res
, res_i
);
6825 res
= isl_pw_multi_aff_union_lexmin(res
, res_i
);
6828 todo
= isl_set_intersect(todo
, *empty
);
6847 #define TYPE isl_map
6851 #define EMPTY isl_map_empty
6853 #define ADD isl_map_union_disjoint
6854 #include "isl_map_lexopt_templ.c"
6856 /* Given a map "map", compute the lexicographically minimal
6857 * (or maximal) image element for each domain element in "dom",
6858 * in the form of an isl_map.
6859 * If "empty" is not NULL, then set *empty to those elements in "dom" that
6860 * do not have an image element.
6861 * If "flags" includes ISL_OPT_FULL, then "dom" is NULL and the optimum
6862 * should be computed over the domain of "map". "empty" is also NULL
6865 * If the input consists of more than one disjunct, then first
6866 * compute the desired result in the form of an isl_pw_multi_aff and
6867 * then convert that into an isl_map.
6869 * This function used to have an explicit implementation in terms
6870 * of isl_maps, but it would continually intersect the domains of
6871 * partial results with the complement of the domain of the next
6872 * partial solution, potentially leading to an explosion in the number
6873 * of disjuncts if there are several disjuncts in the input.
6874 * An even earlier implementation of this function would look for
6875 * better results in the domain of the partial result and for extra
6876 * results in the complement of this domain, which would lead to
6877 * even more splintering.
6879 static __isl_give isl_map
*isl_map_partial_lexopt_aligned(
6880 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6881 __isl_give isl_set
**empty
, unsigned flags
)
6884 struct isl_map
*res
;
6885 isl_pw_multi_aff
*pma
;
6887 full
= ISL_FL_ISSET(flags
, ISL_OPT_FULL
);
6888 if (!map
|| (!full
&& !dom
))
6891 if (isl_map_plain_is_empty(map
)) {
6900 res
= basic_map_partial_lexopt(isl_basic_map_copy(map
->p
[0]),
6906 pma
= isl_map_partial_lexopt_aligned_pw_multi_aff(map
, dom
, empty
,
6908 return isl_map_from_pw_multi_aff(pma
);
6917 __isl_give isl_map
*isl_map_partial_lexmax(
6918 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6919 __isl_give isl_set
**empty
)
6921 return isl_map_partial_lexopt(map
, dom
, empty
, ISL_OPT_MAX
);
6924 __isl_give isl_map
*isl_map_partial_lexmin(
6925 __isl_take isl_map
*map
, __isl_take isl_set
*dom
,
6926 __isl_give isl_set
**empty
)
6928 return isl_map_partial_lexopt(map
, dom
, empty
, 0);
6931 __isl_give isl_set
*isl_set_partial_lexmin(
6932 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6933 __isl_give isl_set
**empty
)
6935 return set_from_map(isl_map_partial_lexmin(set_to_map(set
),
6939 __isl_give isl_set
*isl_set_partial_lexmax(
6940 __isl_take isl_set
*set
, __isl_take isl_set
*dom
,
6941 __isl_give isl_set
**empty
)
6943 return set_from_map(isl_map_partial_lexmax(set_to_map(set
),
6947 /* Compute the lexicographic minimum (or maximum if "flags" includes
6948 * ISL_OPT_MAX) of "bset" over its parametric domain.
6950 __isl_give isl_set
*isl_basic_set_lexopt(__isl_take isl_basic_set
*bset
,
6953 return isl_basic_map_lexopt(bset
, flags
);
6956 __isl_give isl_map
*isl_basic_map_lexmax(__isl_take isl_basic_map
*bmap
)
6958 return isl_basic_map_lexopt(bmap
, ISL_OPT_MAX
);
6961 __isl_give isl_set
*isl_basic_set_lexmin(__isl_take isl_basic_set
*bset
)
6963 return set_from_map(isl_basic_map_lexmin(bset_to_bmap(bset
)));
6966 __isl_give isl_set
*isl_basic_set_lexmax(__isl_take isl_basic_set
*bset
)
6968 return set_from_map(isl_basic_map_lexmax(bset_to_bmap(bset
)));
6971 /* Compute the lexicographic minimum of "bset" over its parametric domain
6972 * for the purpose of quantifier elimination.
6973 * That is, find an explicit representation for all the existentially
6974 * quantified variables in "bset" by computing their lexicographic
6977 static __isl_give isl_set
*isl_basic_set_lexmin_compute_divs(
6978 __isl_take isl_basic_set
*bset
)
6980 return isl_basic_set_lexopt(bset
, ISL_OPT_QE
);
6983 /* Given a basic map with one output dimension, compute the minimum or
6984 * maximum of that dimension as an isl_pw_aff.
6986 * Compute the optimum as a lexicographic optimum over the single
6987 * output dimension and extract the single isl_pw_aff from the result.
6989 static __isl_give isl_pw_aff
*basic_map_dim_opt(__isl_keep isl_basic_map
*bmap
,
6992 isl_pw_multi_aff
*pma
;
6995 bmap
= isl_basic_map_copy(bmap
);
6996 pma
= isl_basic_map_lexopt_pw_multi_aff(bmap
, max
? ISL_OPT_MAX
: 0);
6997 pwaff
= isl_pw_multi_aff_get_pw_aff(pma
, 0);
6998 isl_pw_multi_aff_free(pma
);
7003 /* Compute the minimum or maximum of the given output dimension
7004 * as a function of the parameters and the input dimensions,
7005 * but independently of the other output dimensions.
7007 * We first project out the other output dimension and then compute
7008 * the "lexicographic" maximum in each basic map, combining the results
7009 * using isl_pw_aff_union_max.
7011 static __isl_give isl_pw_aff
*map_dim_opt(__isl_take isl_map
*map
, int pos
,
7018 n_out
= isl_map_dim(map
, isl_dim_out
);
7019 map
= isl_map_project_out(map
, isl_dim_out
, pos
+ 1, n_out
- (pos
+ 1));
7020 map
= isl_map_project_out(map
, isl_dim_out
, 0, pos
);
7025 isl_space
*dim
= isl_map_get_space(map
);
7027 return isl_pw_aff_empty(dim
);
7030 pwaff
= basic_map_dim_opt(map
->p
[0], max
);
7031 for (i
= 1; i
< map
->n
; ++i
) {
7032 isl_pw_aff
*pwaff_i
;
7034 pwaff_i
= basic_map_dim_opt(map
->p
[i
], max
);
7035 pwaff
= isl_pw_aff_union_opt(pwaff
, pwaff_i
, max
);
7043 /* Compute the minimum of the given output dimension as a function of the
7044 * parameters and input dimensions, but independently of
7045 * the other output dimensions.
7047 __isl_give isl_pw_aff
*isl_map_dim_min(__isl_take isl_map
*map
, int pos
)
7049 return map_dim_opt(map
, pos
, 0);
7052 /* Compute the maximum of the given output dimension as a function of the
7053 * parameters and input dimensions, but independently of
7054 * the other output dimensions.
7056 __isl_give isl_pw_aff
*isl_map_dim_max(__isl_take isl_map
*map
, int pos
)
7058 return map_dim_opt(map
, pos
, 1);
7061 /* Compute the minimum or maximum of the given set dimension
7062 * as a function of the parameters,
7063 * but independently of the other set dimensions.
7065 static __isl_give isl_pw_aff
*set_dim_opt(__isl_take isl_set
*set
, int pos
,
7068 return map_dim_opt(set
, pos
, max
);
7071 /* Compute the maximum of the given set dimension as a function of the
7072 * parameters, but independently of the other set dimensions.
7074 __isl_give isl_pw_aff
*isl_set_dim_max(__isl_take isl_set
*set
, int pos
)
7076 return set_dim_opt(set
, pos
, 1);
7079 /* Compute the minimum of the given set dimension as a function of the
7080 * parameters, but independently of the other set dimensions.
7082 __isl_give isl_pw_aff
*isl_set_dim_min(__isl_take isl_set
*set
, int pos
)
7084 return set_dim_opt(set
, pos
, 0);
7087 /* Apply a preimage specified by "mat" on the parameters of "bset".
7088 * bset is assumed to have only parameters and divs.
7090 static __isl_give isl_basic_set
*basic_set_parameter_preimage(
7091 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*mat
)
7098 bset
->dim
= isl_space_cow(bset
->dim
);
7102 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7104 isl_assert(bset
->ctx
, mat
->n_row
== 1 + nparam
, goto error
);
7106 bset
->dim
->nparam
= 0;
7107 bset
->dim
->n_out
= nparam
;
7108 bset
= isl_basic_set_preimage(bset
, mat
);
7110 bset
->dim
->nparam
= bset
->dim
->n_out
;
7111 bset
->dim
->n_out
= 0;
7116 isl_basic_set_free(bset
);
7120 /* Apply a preimage specified by "mat" on the parameters of "set".
7121 * set is assumed to have only parameters and divs.
7123 static __isl_give isl_set
*set_parameter_preimage(__isl_take isl_set
*set
,
7124 __isl_take isl_mat
*mat
)
7132 nparam
= isl_set_dim(set
, isl_dim_param
);
7134 if (mat
->n_row
!= 1 + nparam
)
7135 isl_die(isl_set_get_ctx(set
), isl_error_internal
,
7136 "unexpected number of rows", goto error
);
7138 space
= isl_set_get_space(set
);
7139 space
= isl_space_move_dims(space
, isl_dim_set
, 0,
7140 isl_dim_param
, 0, nparam
);
7141 set
= isl_set_reset_space(set
, space
);
7142 set
= isl_set_preimage(set
, mat
);
7143 nparam
= isl_set_dim(set
, isl_dim_out
);
7144 space
= isl_set_get_space(set
);
7145 space
= isl_space_move_dims(space
, isl_dim_param
, 0,
7146 isl_dim_out
, 0, nparam
);
7147 set
= isl_set_reset_space(set
, space
);
7155 /* Intersect the basic set "bset" with the affine space specified by the
7156 * equalities in "eq".
7158 static __isl_give isl_basic_set
*basic_set_append_equalities(
7159 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*eq
)
7167 bset
= isl_basic_set_extend_space(bset
, isl_space_copy(bset
->dim
), 0,
7172 len
= 1 + isl_space_dim(bset
->dim
, isl_dim_all
) + bset
->extra
;
7173 for (i
= 0; i
< eq
->n_row
; ++i
) {
7174 k
= isl_basic_set_alloc_equality(bset
);
7177 isl_seq_cpy(bset
->eq
[k
], eq
->row
[i
], eq
->n_col
);
7178 isl_seq_clr(bset
->eq
[k
] + eq
->n_col
, len
- eq
->n_col
);
7182 bset
= isl_basic_set_gauss(bset
, NULL
);
7183 bset
= isl_basic_set_finalize(bset
);
7188 isl_basic_set_free(bset
);
7192 /* Intersect the set "set" with the affine space specified by the
7193 * equalities in "eq".
7195 static struct isl_set
*set_append_equalities(struct isl_set
*set
,
7203 for (i
= 0; i
< set
->n
; ++i
) {
7204 set
->p
[i
] = basic_set_append_equalities(set
->p
[i
],
7217 /* Given a basic set "bset" that only involves parameters and existentially
7218 * quantified variables, return the index of the first equality
7219 * that only involves parameters. If there is no such equality then
7220 * return bset->n_eq.
7222 * This function assumes that isl_basic_set_gauss has been called on "bset".
7224 static int first_parameter_equality(__isl_keep isl_basic_set
*bset
)
7227 unsigned nparam
, n_div
;
7232 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7233 n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
7235 for (i
= 0, j
= n_div
- 1; i
< bset
->n_eq
&& j
>= 0; --j
) {
7236 if (!isl_int_is_zero(bset
->eq
[i
][1 + nparam
+ j
]))
7243 /* Compute an explicit representation for the existentially quantified
7244 * variables in "bset" by computing the "minimal value" of the set
7245 * variables. Since there are no set variables, the computation of
7246 * the minimal value essentially computes an explicit representation
7247 * of the non-empty part(s) of "bset".
7249 * The input only involves parameters and existentially quantified variables.
7250 * All equalities among parameters have been removed.
7252 * Since the existentially quantified variables in the result are in general
7253 * going to be different from those in the input, we first replace
7254 * them by the minimal number of variables based on their equalities.
7255 * This should simplify the parametric integer programming.
7257 static __isl_give isl_set
*base_compute_divs(__isl_take isl_basic_set
*bset
)
7259 isl_morph
*morph1
, *morph2
;
7265 if (bset
->n_eq
== 0)
7266 return isl_basic_set_lexmin_compute_divs(bset
);
7268 morph1
= isl_basic_set_parameter_compression(bset
);
7269 bset
= isl_morph_basic_set(isl_morph_copy(morph1
), bset
);
7270 bset
= isl_basic_set_lift(bset
);
7271 morph2
= isl_basic_set_variable_compression(bset
, isl_dim_set
);
7272 bset
= isl_morph_basic_set(morph2
, bset
);
7273 n
= isl_basic_set_dim(bset
, isl_dim_set
);
7274 bset
= isl_basic_set_project_out(bset
, isl_dim_set
, 0, n
);
7276 set
= isl_basic_set_lexmin_compute_divs(bset
);
7278 set
= isl_morph_set(isl_morph_inverse(morph1
), set
);
7283 /* Project the given basic set onto its parameter domain, possibly introducing
7284 * new, explicit, existential variables in the constraints.
7285 * The input has parameters and (possibly implicit) existential variables.
7286 * The output has the same parameters, but only
7287 * explicit existentially quantified variables.
7289 * The actual projection is performed by pip, but pip doesn't seem
7290 * to like equalities very much, so we first remove the equalities
7291 * among the parameters by performing a variable compression on
7292 * the parameters. Afterward, an inverse transformation is performed
7293 * and the equalities among the parameters are inserted back in.
7295 * The variable compression on the parameters may uncover additional
7296 * equalities that were only implicit before. We therefore check
7297 * if there are any new parameter equalities in the result and
7298 * if so recurse. The removal of parameter equalities is required
7299 * for the parameter compression performed by base_compute_divs.
7301 static struct isl_set
*parameter_compute_divs(struct isl_basic_set
*bset
)
7305 struct isl_mat
*T
, *T2
;
7306 struct isl_set
*set
;
7309 bset
= isl_basic_set_cow(bset
);
7313 if (bset
->n_eq
== 0)
7314 return base_compute_divs(bset
);
7316 bset
= isl_basic_set_gauss(bset
, NULL
);
7319 if (isl_basic_set_plain_is_empty(bset
))
7320 return isl_set_from_basic_set(bset
);
7322 i
= first_parameter_equality(bset
);
7323 if (i
== bset
->n_eq
)
7324 return base_compute_divs(bset
);
7326 nparam
= isl_basic_set_dim(bset
, isl_dim_param
);
7327 eq
= isl_mat_sub_alloc6(bset
->ctx
, bset
->eq
, i
, bset
->n_eq
- i
,
7329 eq
= isl_mat_cow(eq
);
7330 T
= isl_mat_variable_compression(isl_mat_copy(eq
), &T2
);
7331 if (T
&& T
->n_col
== 0) {
7335 bset
= isl_basic_set_set_to_empty(bset
);
7336 return isl_set_from_basic_set(bset
);
7338 bset
= basic_set_parameter_preimage(bset
, T
);
7340 i
= first_parameter_equality(bset
);
7343 else if (i
== bset
->n_eq
)
7344 set
= base_compute_divs(bset
);
7346 set
= parameter_compute_divs(bset
);
7347 set
= set_parameter_preimage(set
, T2
);
7348 set
= set_append_equalities(set
, eq
);
7352 /* Insert the divs from "ls" before those of "bmap".
7354 * The number of columns is not changed, which means that the last
7355 * dimensions of "bmap" are being reintepreted as the divs from "ls".
7356 * The caller is responsible for removing the same number of dimensions
7357 * from the space of "bmap".
7359 static __isl_give isl_basic_map
*insert_divs_from_local_space(
7360 __isl_take isl_basic_map
*bmap
, __isl_keep isl_local_space
*ls
)
7366 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7370 old_n_div
= bmap
->n_div
;
7371 bmap
= insert_div_rows(bmap
, n_div
);
7375 for (i
= 0; i
< n_div
; ++i
) {
7376 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], ls
->div
->n_col
);
7377 isl_seq_clr(bmap
->div
[i
] + ls
->div
->n_col
, old_n_div
);
7383 /* Replace the space of "bmap" by the space and divs of "ls".
7385 * If "ls" has any divs, then we simplify the result since we may
7386 * have discovered some additional equalities that could simplify
7387 * the div expressions.
7389 static __isl_give isl_basic_map
*basic_replace_space_by_local_space(
7390 __isl_take isl_basic_map
*bmap
, __isl_take isl_local_space
*ls
)
7394 bmap
= isl_basic_map_cow(bmap
);
7398 n_div
= isl_local_space_dim(ls
, isl_dim_div
);
7399 bmap
= insert_divs_from_local_space(bmap
, ls
);
7403 isl_space_free(bmap
->dim
);
7404 bmap
->dim
= isl_local_space_get_space(ls
);
7408 isl_local_space_free(ls
);
7410 bmap
= isl_basic_map_simplify(bmap
);
7411 bmap
= isl_basic_map_finalize(bmap
);
7414 isl_basic_map_free(bmap
);
7415 isl_local_space_free(ls
);
7419 /* Replace the space of "map" by the space and divs of "ls".
7421 static __isl_give isl_map
*replace_space_by_local_space(__isl_take isl_map
*map
,
7422 __isl_take isl_local_space
*ls
)
7426 map
= isl_map_cow(map
);
7430 for (i
= 0; i
< map
->n
; ++i
) {
7431 map
->p
[i
] = basic_replace_space_by_local_space(map
->p
[i
],
7432 isl_local_space_copy(ls
));
7436 isl_space_free(map
->dim
);
7437 map
->dim
= isl_local_space_get_space(ls
);
7441 isl_local_space_free(ls
);
7444 isl_local_space_free(ls
);
7449 /* Compute an explicit representation for the existentially
7450 * quantified variables for which do not know any explicit representation yet.
7452 * We first sort the existentially quantified variables so that the
7453 * existentially quantified variables for which we already have an explicit
7454 * representation are placed before those for which we do not.
7455 * The input dimensions, the output dimensions and the existentially
7456 * quantified variables for which we already have an explicit
7457 * representation are then turned into parameters.
7458 * compute_divs returns a map with the same parameters and
7459 * no input or output dimensions and the dimension specification
7460 * is reset to that of the input, including the existentially quantified
7461 * variables for which we already had an explicit representation.
7463 static __isl_give isl_map
*compute_divs(__isl_take isl_basic_map
*bmap
)
7465 struct isl_basic_set
*bset
;
7466 struct isl_set
*set
;
7467 struct isl_map
*map
;
7469 isl_local_space
*ls
;
7476 bmap
= isl_basic_map_sort_divs(bmap
);
7477 bmap
= isl_basic_map_cow(bmap
);
7481 n_known
= isl_basic_map_first_unknown_div(bmap
);
7483 return isl_map_from_basic_map(isl_basic_map_free(bmap
));
7485 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
7486 n_in
= isl_basic_map_dim(bmap
, isl_dim_in
);
7487 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
7488 dim
= isl_space_set_alloc(bmap
->ctx
,
7489 nparam
+ n_in
+ n_out
+ n_known
, 0);
7493 ls
= isl_basic_map_get_local_space(bmap
);
7494 ls
= isl_local_space_drop_dims(ls
, isl_dim_div
,
7495 n_known
, bmap
->n_div
- n_known
);
7497 for (i
= n_known
; i
< bmap
->n_div
; ++i
)
7498 swap_div(bmap
, i
- n_known
, i
);
7499 bmap
->n_div
-= n_known
;
7500 bmap
->extra
-= n_known
;
7502 bmap
= isl_basic_map_reset_space(bmap
, dim
);
7503 bset
= bset_from_bmap(bmap
);
7505 set
= parameter_compute_divs(bset
);
7506 map
= set_to_map(set
);
7507 map
= replace_space_by_local_space(map
, ls
);
7511 isl_basic_map_free(bmap
);
7515 /* Remove the explicit representation of local variable "div",
7518 __isl_give isl_basic_map
*isl_basic_map_mark_div_unknown(
7519 __isl_take isl_basic_map
*bmap
, int div
)
7523 unknown
= isl_basic_map_div_is_marked_unknown(bmap
, div
);
7525 return isl_basic_map_free(bmap
);
7529 bmap
= isl_basic_map_cow(bmap
);
7532 isl_int_set_si(bmap
->div
[div
][0], 0);
7536 /* Is local variable "div" of "bmap" marked as not having an explicit
7538 * Note that even if "div" is not marked in this way and therefore
7539 * has an explicit representation, this representation may still
7540 * depend (indirectly) on other local variables that do not
7541 * have an explicit representation.
7543 isl_bool
isl_basic_map_div_is_marked_unknown(__isl_keep isl_basic_map
*bmap
,
7546 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
7547 return isl_bool_error
;
7548 return isl_int_is_zero(bmap
->div
[div
][0]);
7551 /* Return the position of the first local variable that does not
7552 * have an explicit representation.
7553 * Return the total number of local variables if they all have
7554 * an explicit representation.
7555 * Return -1 on error.
7557 int isl_basic_map_first_unknown_div(__isl_keep isl_basic_map
*bmap
)
7564 for (i
= 0; i
< bmap
->n_div
; ++i
) {
7565 if (!isl_basic_map_div_is_known(bmap
, i
))
7571 /* Return the position of the first local variable that does not
7572 * have an explicit representation.
7573 * Return the total number of local variables if they all have
7574 * an explicit representation.
7575 * Return -1 on error.
7577 int isl_basic_set_first_unknown_div(__isl_keep isl_basic_set
*bset
)
7579 return isl_basic_map_first_unknown_div(bset
);
7582 /* Does "bmap" have an explicit representation for all local variables?
7584 isl_bool
isl_basic_map_divs_known(__isl_keep isl_basic_map
*bmap
)
7588 n
= isl_basic_map_dim(bmap
, isl_dim_div
);
7589 first
= isl_basic_map_first_unknown_div(bmap
);
7591 return isl_bool_error
;
7595 /* Do all basic maps in "map" have an explicit representation
7596 * for all local variables?
7598 isl_bool
isl_map_divs_known(__isl_keep isl_map
*map
)
7603 return isl_bool_error
;
7605 for (i
= 0; i
< map
->n
; ++i
) {
7606 int known
= isl_basic_map_divs_known(map
->p
[i
]);
7611 return isl_bool_true
;
7614 /* If bmap contains any unknown divs, then compute explicit
7615 * expressions for them. However, this computation may be
7616 * quite expensive, so first try to remove divs that aren't
7619 __isl_give isl_map
*isl_basic_map_compute_divs(__isl_take isl_basic_map
*bmap
)
7622 struct isl_map
*map
;
7624 known
= isl_basic_map_divs_known(bmap
);
7628 return isl_map_from_basic_map(bmap
);
7630 bmap
= isl_basic_map_drop_redundant_divs(bmap
);
7632 known
= isl_basic_map_divs_known(bmap
);
7636 return isl_map_from_basic_map(bmap
);
7638 map
= compute_divs(bmap
);
7641 isl_basic_map_free(bmap
);
7645 __isl_give isl_map
*isl_map_compute_divs(__isl_take isl_map
*map
)
7649 struct isl_map
*res
;
7656 known
= isl_map_divs_known(map
);
7664 res
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[0]));
7665 for (i
= 1 ; i
< map
->n
; ++i
) {
7667 r2
= isl_basic_map_compute_divs(isl_basic_map_copy(map
->p
[i
]));
7668 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
))
7669 res
= isl_map_union_disjoint(res
, r2
);
7671 res
= isl_map_union(res
, r2
);
7678 __isl_give isl_set
*isl_basic_set_compute_divs(__isl_take isl_basic_set
*bset
)
7680 return set_from_map(isl_basic_map_compute_divs(bset_to_bmap(bset
)));
7683 struct isl_set
*isl_set_compute_divs(struct isl_set
*set
)
7685 return set_from_map(isl_map_compute_divs(set_to_map(set
)));
7688 __isl_give isl_set
*isl_map_domain(__isl_take isl_map
*map
)
7691 struct isl_set
*set
;
7696 map
= isl_map_cow(map
);
7700 set
= set_from_map(map
);
7701 set
->dim
= isl_space_domain(set
->dim
);
7704 for (i
= 0; i
< map
->n
; ++i
) {
7705 set
->p
[i
] = isl_basic_map_domain(map
->p
[i
]);
7709 ISL_F_CLR(set
, ISL_MAP_DISJOINT
);
7710 ISL_F_CLR(set
, ISL_SET_NORMALIZED
);
7717 /* Return the union of "map1" and "map2", where we assume for now that
7718 * "map1" and "map2" are disjoint. Note that the basic maps inside
7719 * "map1" or "map2" may not be disjoint from each other.
7720 * Also note that this function is also called from isl_map_union,
7721 * which takes care of handling the situation where "map1" and "map2"
7722 * may not be disjoint.
7724 * If one of the inputs is empty, we can simply return the other input.
7725 * Similarly, if one of the inputs is universal, then it is equal to the union.
7727 static __isl_give isl_map
*map_union_disjoint(__isl_take isl_map
*map1
,
7728 __isl_take isl_map
*map2
)
7732 struct isl_map
*map
= NULL
;
7738 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
7739 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
7740 "spaces don't match", goto error
);
7751 is_universe
= isl_map_plain_is_universe(map1
);
7752 if (is_universe
< 0)
7759 is_universe
= isl_map_plain_is_universe(map2
);
7760 if (is_universe
< 0)
7767 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
7768 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
7769 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7771 map
= isl_map_alloc_space(isl_space_copy(map1
->dim
),
7772 map1
->n
+ map2
->n
, flags
);
7775 for (i
= 0; i
< map1
->n
; ++i
) {
7776 map
= isl_map_add_basic_map(map
,
7777 isl_basic_map_copy(map1
->p
[i
]));
7781 for (i
= 0; i
< map2
->n
; ++i
) {
7782 map
= isl_map_add_basic_map(map
,
7783 isl_basic_map_copy(map2
->p
[i
]));
7797 /* Return the union of "map1" and "map2", where "map1" and "map2" are
7798 * guaranteed to be disjoint by the caller.
7800 * Note that this functions is called from within isl_map_make_disjoint,
7801 * so we have to be careful not to touch the constraints of the inputs
7804 __isl_give isl_map
*isl_map_union_disjoint(__isl_take isl_map
*map1
,
7805 __isl_take isl_map
*map2
)
7807 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_disjoint
);
7810 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7811 * not be disjoint. The parameters are assumed to have been aligned.
7813 * We currently simply call map_union_disjoint, the internal operation
7814 * of which does not really depend on the inputs being disjoint.
7815 * If the result contains more than one basic map, then we clear
7816 * the disjoint flag since the result may contain basic maps from
7817 * both inputs and these are not guaranteed to be disjoint.
7819 * As a special case, if "map1" and "map2" are obviously equal,
7820 * then we simply return "map1".
7822 static __isl_give isl_map
*map_union_aligned(__isl_take isl_map
*map1
,
7823 __isl_take isl_map
*map2
)
7830 equal
= isl_map_plain_is_equal(map1
, map2
);
7838 map1
= map_union_disjoint(map1
, map2
);
7842 ISL_F_CLR(map1
, ISL_MAP_DISJOINT
);
7850 /* Return the union of "map1" and "map2", where "map1" and "map2" may
7853 __isl_give isl_map
*isl_map_union(__isl_take isl_map
*map1
,
7854 __isl_take isl_map
*map2
)
7856 return isl_map_align_params_map_map_and(map1
, map2
, &map_union_aligned
);
7859 __isl_give isl_set
*isl_set_union_disjoint(
7860 __isl_take isl_set
*set1
, __isl_take isl_set
*set2
)
7862 return set_from_map(isl_map_union_disjoint(set_to_map(set1
),
7866 struct isl_set
*isl_set_union(struct isl_set
*set1
, struct isl_set
*set2
)
7868 return set_from_map(isl_map_union(set_to_map(set1
), set_to_map(set2
)));
7871 /* Apply "fn" to pairs of elements from "map" and "set" and collect
7874 * "map" and "set" are assumed to be compatible and non-NULL.
7876 static __isl_give isl_map
*map_intersect_set(__isl_take isl_map
*map
,
7877 __isl_take isl_set
*set
,
7878 __isl_give isl_basic_map
*fn(__isl_take isl_basic_map
*bmap
,
7879 __isl_take isl_basic_set
*bset
))
7882 struct isl_map
*result
;
7885 if (isl_set_plain_is_universe(set
)) {
7890 if (ISL_F_ISSET(map
, ISL_MAP_DISJOINT
) &&
7891 ISL_F_ISSET(set
, ISL_MAP_DISJOINT
))
7892 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
7894 result
= isl_map_alloc_space(isl_space_copy(map
->dim
),
7895 map
->n
* set
->n
, flags
);
7896 for (i
= 0; result
&& i
< map
->n
; ++i
)
7897 for (j
= 0; j
< set
->n
; ++j
) {
7898 result
= isl_map_add_basic_map(result
,
7899 fn(isl_basic_map_copy(map
->p
[i
]),
7900 isl_basic_set_copy(set
->p
[j
])));
7910 static __isl_give isl_map
*map_intersect_range(__isl_take isl_map
*map
,
7911 __isl_take isl_set
*set
)
7915 ok
= isl_map_compatible_range(map
, set
);
7919 isl_die(set
->ctx
, isl_error_invalid
,
7920 "incompatible spaces", goto error
);
7922 return map_intersect_set(map
, set
, &isl_basic_map_intersect_range
);
7929 __isl_give isl_map
*isl_map_intersect_range(__isl_take isl_map
*map
,
7930 __isl_take isl_set
*set
)
7932 return isl_map_align_params_map_map_and(map
, set
, &map_intersect_range
);
7935 static __isl_give isl_map
*map_intersect_domain(__isl_take isl_map
*map
,
7936 __isl_take isl_set
*set
)
7940 ok
= isl_map_compatible_domain(map
, set
);
7944 isl_die(set
->ctx
, isl_error_invalid
,
7945 "incompatible spaces", goto error
);
7947 return map_intersect_set(map
, set
, &isl_basic_map_intersect_domain
);
7954 __isl_give isl_map
*isl_map_intersect_domain(__isl_take isl_map
*map
,
7955 __isl_take isl_set
*set
)
7957 return isl_map_align_params_map_map_and(map
, set
,
7958 &map_intersect_domain
);
7961 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7962 * in the space B -> C, return the intersection.
7963 * The parameters are assumed to have been aligned.
7965 * The map "factor" is first extended to a map living in the space
7966 * [A -> B] -> C and then a regular intersection is computed.
7968 static __isl_give isl_map
*map_intersect_domain_factor_range(
7969 __isl_take isl_map
*map
, __isl_take isl_map
*factor
)
7972 isl_map
*ext_factor
;
7974 space
= isl_space_domain_factor_domain(isl_map_get_space(map
));
7975 ext_factor
= isl_map_universe(space
);
7976 ext_factor
= isl_map_domain_product(ext_factor
, factor
);
7977 return map_intersect(map
, ext_factor
);
7980 /* Given a map "map" in a space [A -> B] -> C and a map "factor"
7981 * in the space B -> C, return the intersection.
7983 __isl_give isl_map
*isl_map_intersect_domain_factor_range(
7984 __isl_take isl_map
*map
, __isl_take isl_map
*factor
)
7986 return isl_map_align_params_map_map_and(map
, factor
,
7987 &map_intersect_domain_factor_range
);
7990 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
7991 * in the space A -> C, return the intersection.
7993 * The map "factor" is first extended to a map living in the space
7994 * A -> [B -> C] and then a regular intersection is computed.
7996 static __isl_give isl_map
*map_intersect_range_factor_range(
7997 __isl_take isl_map
*map
, __isl_take isl_map
*factor
)
8000 isl_map
*ext_factor
;
8002 space
= isl_space_range_factor_domain(isl_map_get_space(map
));
8003 ext_factor
= isl_map_universe(space
);
8004 ext_factor
= isl_map_range_product(ext_factor
, factor
);
8005 return isl_map_intersect(map
, ext_factor
);
8008 /* Given a map "map" in a space A -> [B -> C] and a map "factor"
8009 * in the space A -> C, return the intersection.
8011 __isl_give isl_map
*isl_map_intersect_range_factor_range(
8012 __isl_take isl_map
*map
, __isl_take isl_map
*factor
)
8014 return isl_map_align_params_map_map_and(map
, factor
,
8015 &map_intersect_range_factor_range
);
8018 static __isl_give isl_map
*map_apply_domain(__isl_take isl_map
*map1
,
8019 __isl_take isl_map
*map2
)
8023 map1
= isl_map_reverse(map1
);
8024 map1
= isl_map_apply_range(map1
, map2
);
8025 return isl_map_reverse(map1
);
8032 __isl_give isl_map
*isl_map_apply_domain(__isl_take isl_map
*map1
,
8033 __isl_take isl_map
*map2
)
8035 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_domain
);
8038 static __isl_give isl_map
*map_apply_range(__isl_take isl_map
*map1
,
8039 __isl_take isl_map
*map2
)
8041 isl_space
*dim_result
;
8042 struct isl_map
*result
;
8048 dim_result
= isl_space_join(isl_space_copy(map1
->dim
),
8049 isl_space_copy(map2
->dim
));
8051 result
= isl_map_alloc_space(dim_result
, map1
->n
* map2
->n
, 0);
8054 for (i
= 0; i
< map1
->n
; ++i
)
8055 for (j
= 0; j
< map2
->n
; ++j
) {
8056 result
= isl_map_add_basic_map(result
,
8057 isl_basic_map_apply_range(
8058 isl_basic_map_copy(map1
->p
[i
]),
8059 isl_basic_map_copy(map2
->p
[j
])));
8065 if (result
&& result
->n
<= 1)
8066 ISL_F_SET(result
, ISL_MAP_DISJOINT
);
8074 __isl_give isl_map
*isl_map_apply_range(__isl_take isl_map
*map1
,
8075 __isl_take isl_map
*map2
)
8077 return isl_map_align_params_map_map_and(map1
, map2
, &map_apply_range
);
8081 * returns range - domain
8083 __isl_give isl_basic_set
*isl_basic_map_deltas(__isl_take isl_basic_map
*bmap
)
8085 isl_space
*target_space
;
8086 struct isl_basic_set
*bset
;
8093 isl_assert(bmap
->ctx
, isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
8094 bmap
->dim
, isl_dim_out
),
8096 target_space
= isl_space_domain(isl_basic_map_get_space(bmap
));
8097 dim
= isl_basic_map_dim(bmap
, isl_dim_in
);
8098 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
8099 bmap
= isl_basic_map_from_range(isl_basic_map_wrap(bmap
));
8100 bmap
= isl_basic_map_add_dims(bmap
, isl_dim_in
, dim
);
8101 bmap
= isl_basic_map_extend_constraints(bmap
, dim
, 0);
8102 for (i
= 0; i
< dim
; ++i
) {
8103 int j
= isl_basic_map_alloc_equality(bmap
);
8105 bmap
= isl_basic_map_free(bmap
);
8108 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
8109 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
8110 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], 1);
8111 isl_int_set_si(bmap
->eq
[j
][1+nparam
+2*dim
+i
], -1);
8113 bset
= isl_basic_map_domain(bmap
);
8114 bset
= isl_basic_set_reset_space(bset
, target_space
);
8117 isl_basic_map_free(bmap
);
8122 * returns range - domain
8124 __isl_give isl_set
*isl_map_deltas(__isl_take isl_map
*map
)
8128 struct isl_set
*result
;
8133 isl_assert(map
->ctx
, isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
8134 map
->dim
, isl_dim_out
),
8136 dim
= isl_map_get_space(map
);
8137 dim
= isl_space_domain(dim
);
8138 result
= isl_set_alloc_space(dim
, map
->n
, 0);
8141 for (i
= 0; i
< map
->n
; ++i
)
8142 result
= isl_set_add_basic_set(result
,
8143 isl_basic_map_deltas(isl_basic_map_copy(map
->p
[i
])));
8152 * returns [domain -> range] -> range - domain
8154 __isl_give isl_basic_map
*isl_basic_map_deltas_map(
8155 __isl_take isl_basic_map
*bmap
)
8159 isl_basic_map
*domain
;
8163 if (!isl_space_tuple_is_equal(bmap
->dim
, isl_dim_in
,
8164 bmap
->dim
, isl_dim_out
))
8165 isl_die(bmap
->ctx
, isl_error_invalid
,
8166 "domain and range don't match", goto error
);
8168 nparam
= isl_basic_map_dim(bmap
, isl_dim_param
);
8169 n
= isl_basic_map_dim(bmap
, isl_dim_in
);
8171 dim
= isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap
)));
8172 domain
= isl_basic_map_universe(dim
);
8174 bmap
= isl_basic_map_from_domain(isl_basic_map_wrap(bmap
));
8175 bmap
= isl_basic_map_apply_range(bmap
, domain
);
8176 bmap
= isl_basic_map_extend_constraints(bmap
, n
, 0);
8178 total
= isl_basic_map_total_dim(bmap
);
8180 for (i
= 0; i
< n
; ++i
) {
8181 k
= isl_basic_map_alloc_equality(bmap
);
8184 isl_seq_clr(bmap
->eq
[k
], 1 + total
);
8185 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ i
], 1);
8186 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ i
], -1);
8187 isl_int_set_si(bmap
->eq
[k
][1 + nparam
+ n
+ n
+ i
], 1);
8190 bmap
= isl_basic_map_gauss(bmap
, NULL
);
8191 return isl_basic_map_finalize(bmap
);
8193 isl_basic_map_free(bmap
);
8198 * returns [domain -> range] -> range - domain
8200 __isl_give isl_map
*isl_map_deltas_map(__isl_take isl_map
*map
)
8203 isl_space
*domain_dim
;
8208 if (!isl_space_tuple_is_equal(map
->dim
, isl_dim_in
,
8209 map
->dim
, isl_dim_out
))
8210 isl_die(map
->ctx
, isl_error_invalid
,
8211 "domain and range don't match", goto error
);
8213 map
= isl_map_cow(map
);
8217 domain_dim
= isl_space_from_range(isl_space_domain(isl_map_get_space(map
)));
8218 map
->dim
= isl_space_from_domain(isl_space_wrap(map
->dim
));
8219 map
->dim
= isl_space_join(map
->dim
, domain_dim
);
8222 for (i
= 0; i
< map
->n
; ++i
) {
8223 map
->p
[i
] = isl_basic_map_deltas_map(map
->p
[i
]);
8227 map
= isl_map_unmark_normalized(map
);
8234 static __isl_give isl_basic_map
*basic_map_identity(__isl_take isl_space
*space
)
8236 struct isl_basic_map
*bmap
;
8244 nparam
= space
->nparam
;
8246 bmap
= isl_basic_map_alloc_space(space
, 0, dim
, 0);
8250 for (i
= 0; i
< dim
; ++i
) {
8251 int j
= isl_basic_map_alloc_equality(bmap
);
8254 isl_seq_clr(bmap
->eq
[j
], 1 + isl_basic_map_total_dim(bmap
));
8255 isl_int_set_si(bmap
->eq
[j
][1+nparam
+i
], 1);
8256 isl_int_set_si(bmap
->eq
[j
][1+nparam
+dim
+i
], -1);
8258 return isl_basic_map_finalize(bmap
);
8260 isl_basic_map_free(bmap
);
8264 __isl_give isl_basic_map
*isl_basic_map_identity(__isl_take isl_space
*space
)
8268 if (space
->n_in
!= space
->n_out
)
8269 isl_die(space
->ctx
, isl_error_invalid
,
8270 "number of input and output dimensions needs to be "
8271 "the same", goto error
);
8272 return basic_map_identity(space
);
8274 isl_space_free(space
);
8278 __isl_give isl_map
*isl_map_identity(__isl_take isl_space
*dim
)
8280 return isl_map_from_basic_map(isl_basic_map_identity(dim
));
8283 __isl_give isl_map
*isl_set_identity(__isl_take isl_set
*set
)
8285 isl_space
*dim
= isl_set_get_space(set
);
8287 id
= isl_map_identity(isl_space_map_from_set(dim
));
8288 return isl_map_intersect_range(id
, set
);
8291 /* Construct a basic set with all set dimensions having only non-negative
8294 __isl_give isl_basic_set
*isl_basic_set_positive_orthant(
8295 __isl_take isl_space
*space
)
8300 struct isl_basic_set
*bset
;
8304 nparam
= space
->nparam
;
8306 bset
= isl_basic_set_alloc_space(space
, 0, 0, dim
);
8309 for (i
= 0; i
< dim
; ++i
) {
8310 int k
= isl_basic_set_alloc_inequality(bset
);
8313 isl_seq_clr(bset
->ineq
[k
], 1 + isl_basic_set_total_dim(bset
));
8314 isl_int_set_si(bset
->ineq
[k
][1 + nparam
+ i
], 1);
8318 isl_basic_set_free(bset
);
8322 /* Construct the half-space x_pos >= 0.
8324 static __isl_give isl_basic_set
*nonneg_halfspace(__isl_take isl_space
*space
,
8328 isl_basic_set
*nonneg
;
8330 nonneg
= isl_basic_set_alloc_space(space
, 0, 0, 1);
8331 k
= isl_basic_set_alloc_inequality(nonneg
);
8334 isl_seq_clr(nonneg
->ineq
[k
], 1 + isl_basic_set_total_dim(nonneg
));
8335 isl_int_set_si(nonneg
->ineq
[k
][pos
], 1);
8337 return isl_basic_set_finalize(nonneg
);
8339 isl_basic_set_free(nonneg
);
8343 /* Construct the half-space x_pos <= -1.
8345 static __isl_give isl_basic_set
*neg_halfspace(__isl_take isl_space
*space
,
8351 neg
= isl_basic_set_alloc_space(space
, 0, 0, 1);
8352 k
= isl_basic_set_alloc_inequality(neg
);
8355 isl_seq_clr(neg
->ineq
[k
], 1 + isl_basic_set_total_dim(neg
));
8356 isl_int_set_si(neg
->ineq
[k
][0], -1);
8357 isl_int_set_si(neg
->ineq
[k
][pos
], -1);
8359 return isl_basic_set_finalize(neg
);
8361 isl_basic_set_free(neg
);
8365 __isl_give isl_set
*isl_set_split_dims(__isl_take isl_set
*set
,
8366 enum isl_dim_type type
, unsigned first
, unsigned n
)
8370 isl_basic_set
*nonneg
;
8378 isl_assert(set
->ctx
, first
+ n
<= isl_set_dim(set
, type
), goto error
);
8380 offset
= pos(set
->dim
, type
);
8381 for (i
= 0; i
< n
; ++i
) {
8382 nonneg
= nonneg_halfspace(isl_set_get_space(set
),
8383 offset
+ first
+ i
);
8384 neg
= neg_halfspace(isl_set_get_space(set
), offset
+ first
+ i
);
8386 set
= isl_set_intersect(set
, isl_basic_set_union(nonneg
, neg
));
8395 static isl_stat
foreach_orthant(__isl_take isl_set
*set
, int *signs
, int first
,
8397 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8403 return isl_stat_error
;
8404 if (isl_set_plain_is_empty(set
)) {
8409 return fn(set
, signs
, user
);
8412 half
= isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set
),
8414 half
= isl_set_intersect(half
, isl_set_copy(set
));
8415 if (foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
) < 0)
8419 half
= isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set
),
8421 half
= isl_set_intersect(half
, set
);
8422 return foreach_orthant(half
, signs
, first
+ 1, len
, fn
, user
);
8425 return isl_stat_error
;
8428 /* Call "fn" on the intersections of "set" with each of the orthants
8429 * (except for obviously empty intersections). The orthant is identified
8430 * by the signs array, with each entry having value 1 or -1 according
8431 * to the sign of the corresponding variable.
8433 isl_stat
isl_set_foreach_orthant(__isl_keep isl_set
*set
,
8434 isl_stat (*fn
)(__isl_take isl_set
*orthant
, int *signs
, void *user
),
8443 return isl_stat_error
;
8444 if (isl_set_plain_is_empty(set
))
8447 nparam
= isl_set_dim(set
, isl_dim_param
);
8448 nvar
= isl_set_dim(set
, isl_dim_set
);
8450 signs
= isl_alloc_array(set
->ctx
, int, nparam
+ nvar
);
8452 r
= foreach_orthant(isl_set_copy(set
), signs
, 0, nparam
+ nvar
,
8460 isl_bool
isl_set_is_equal(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
8462 return isl_map_is_equal(set_to_map(set1
), set_to_map(set2
));
8465 isl_bool
isl_basic_map_is_subset(__isl_keep isl_basic_map
*bmap1
,
8466 __isl_keep isl_basic_map
*bmap2
)
8469 struct isl_map
*map1
;
8470 struct isl_map
*map2
;
8472 if (!bmap1
|| !bmap2
)
8473 return isl_bool_error
;
8475 map1
= isl_map_from_basic_map(isl_basic_map_copy(bmap1
));
8476 map2
= isl_map_from_basic_map(isl_basic_map_copy(bmap2
));
8478 is_subset
= isl_map_is_subset(map1
, map2
);
8486 isl_bool
isl_basic_set_is_subset(__isl_keep isl_basic_set
*bset1
,
8487 __isl_keep isl_basic_set
*bset2
)
8489 return isl_basic_map_is_subset(bset1
, bset2
);
8492 isl_bool
isl_basic_map_is_equal(__isl_keep isl_basic_map
*bmap1
,
8493 __isl_keep isl_basic_map
*bmap2
)
8497 if (!bmap1
|| !bmap2
)
8498 return isl_bool_error
;
8499 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8500 if (is_subset
!= isl_bool_true
)
8502 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8506 isl_bool
isl_basic_set_is_equal(__isl_keep isl_basic_set
*bset1
,
8507 __isl_keep isl_basic_set
*bset2
)
8509 return isl_basic_map_is_equal(
8510 bset_to_bmap(bset1
), bset_to_bmap(bset2
));
8513 isl_bool
isl_map_is_empty(__isl_keep isl_map
*map
)
8519 return isl_bool_error
;
8520 for (i
= 0; i
< map
->n
; ++i
) {
8521 is_empty
= isl_basic_map_is_empty(map
->p
[i
]);
8523 return isl_bool_error
;
8525 return isl_bool_false
;
8527 return isl_bool_true
;
8530 isl_bool
isl_map_plain_is_empty(__isl_keep isl_map
*map
)
8532 return map
? map
->n
== 0 : isl_bool_error
;
8535 isl_bool
isl_set_plain_is_empty(__isl_keep isl_set
*set
)
8537 return set
? set
->n
== 0 : isl_bool_error
;
8540 isl_bool
isl_set_is_empty(__isl_keep isl_set
*set
)
8542 return isl_map_is_empty(set_to_map(set
));
8545 isl_bool
isl_map_has_equal_space(__isl_keep isl_map
*map1
,
8546 __isl_keep isl_map
*map2
)
8549 return isl_bool_error
;
8551 return isl_space_is_equal(map1
->dim
, map2
->dim
);
8554 isl_bool
isl_set_has_equal_space(__isl_keep isl_set
*set1
,
8555 __isl_keep isl_set
*set2
)
8558 return isl_bool_error
;
8560 return isl_space_is_equal(set1
->dim
, set2
->dim
);
8563 static isl_bool
map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8568 return isl_bool_error
;
8569 is_subset
= isl_map_is_subset(map1
, map2
);
8570 if (is_subset
!= isl_bool_true
)
8572 is_subset
= isl_map_is_subset(map2
, map1
);
8576 /* Is "map1" equal to "map2"?
8578 * First check if they are obviously equal.
8579 * If not, then perform a more detailed analysis.
8581 isl_bool
isl_map_is_equal(__isl_keep isl_map
*map1
, __isl_keep isl_map
*map2
)
8585 equal
= isl_map_plain_is_equal(map1
, map2
);
8586 if (equal
< 0 || equal
)
8588 return isl_map_align_params_map_map_and_test(map1
, map2
, &map_is_equal
);
8591 isl_bool
isl_basic_map_is_strict_subset(
8592 struct isl_basic_map
*bmap1
, struct isl_basic_map
*bmap2
)
8596 if (!bmap1
|| !bmap2
)
8597 return isl_bool_error
;
8598 is_subset
= isl_basic_map_is_subset(bmap1
, bmap2
);
8599 if (is_subset
!= isl_bool_true
)
8601 is_subset
= isl_basic_map_is_subset(bmap2
, bmap1
);
8602 if (is_subset
== isl_bool_error
)
8607 isl_bool
isl_map_is_strict_subset(__isl_keep isl_map
*map1
,
8608 __isl_keep isl_map
*map2
)
8613 return isl_bool_error
;
8614 is_subset
= isl_map_is_subset(map1
, map2
);
8615 if (is_subset
!= isl_bool_true
)
8617 is_subset
= isl_map_is_subset(map2
, map1
);
8618 if (is_subset
== isl_bool_error
)
8623 isl_bool
isl_set_is_strict_subset(__isl_keep isl_set
*set1
,
8624 __isl_keep isl_set
*set2
)
8626 return isl_map_is_strict_subset(set_to_map(set1
), set_to_map(set2
));
8629 /* Is "bmap" obviously equal to the universe with the same space?
8631 * That is, does it not have any constraints?
8633 isl_bool
isl_basic_map_plain_is_universe(__isl_keep isl_basic_map
*bmap
)
8636 return isl_bool_error
;
8637 return bmap
->n_eq
== 0 && bmap
->n_ineq
== 0;
8640 /* Is "bset" obviously equal to the universe with the same space?
8642 isl_bool
isl_basic_set_plain_is_universe(__isl_keep isl_basic_set
*bset
)
8644 return isl_basic_map_plain_is_universe(bset
);
8647 /* If "c" does not involve any existentially quantified variables,
8648 * then set *univ to false and abort
8650 static isl_stat
involves_divs(__isl_take isl_constraint
*c
, void *user
)
8652 isl_bool
*univ
= user
;
8655 n
= isl_constraint_dim(c
, isl_dim_div
);
8656 *univ
= isl_constraint_involves_dims(c
, isl_dim_div
, 0, n
);
8657 isl_constraint_free(c
);
8658 if (*univ
< 0 || !*univ
)
8659 return isl_stat_error
;
8663 /* Is "bmap" equal to the universe with the same space?
8665 * First check if it is obviously equal to the universe.
8666 * If not and if there are any constraints not involving
8667 * existentially quantified variables, then it is certainly
8668 * not equal to the universe.
8669 * Otherwise, check if the universe is a subset of "bmap".
8671 isl_bool
isl_basic_map_is_universe(__isl_keep isl_basic_map
*bmap
)
8674 isl_basic_map
*test
;
8676 univ
= isl_basic_map_plain_is_universe(bmap
);
8677 if (univ
< 0 || univ
)
8679 if (isl_basic_map_dim(bmap
, isl_dim_div
) == 0)
8680 return isl_bool_false
;
8681 univ
= isl_bool_true
;
8682 if (isl_basic_map_foreach_constraint(bmap
, &involves_divs
, &univ
) < 0 &&
8684 return isl_bool_error
;
8685 if (univ
< 0 || !univ
)
8687 test
= isl_basic_map_universe(isl_basic_map_get_space(bmap
));
8688 univ
= isl_basic_map_is_subset(test
, bmap
);
8689 isl_basic_map_free(test
);
8693 /* Is "bset" equal to the universe with the same space?
8695 isl_bool
isl_basic_set_is_universe(__isl_keep isl_basic_set
*bset
)
8697 return isl_basic_map_is_universe(bset
);
8700 isl_bool
isl_map_plain_is_universe(__isl_keep isl_map
*map
)
8705 return isl_bool_error
;
8707 for (i
= 0; i
< map
->n
; ++i
) {
8708 isl_bool r
= isl_basic_map_plain_is_universe(map
->p
[i
]);
8713 return isl_bool_false
;
8716 isl_bool
isl_set_plain_is_universe(__isl_keep isl_set
*set
)
8718 return isl_map_plain_is_universe(set_to_map(set
));
8721 isl_bool
isl_basic_map_is_empty(__isl_keep isl_basic_map
*bmap
)
8723 struct isl_basic_set
*bset
= NULL
;
8724 struct isl_vec
*sample
= NULL
;
8725 isl_bool empty
, non_empty
;
8728 return isl_bool_error
;
8730 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
))
8731 return isl_bool_true
;
8733 if (isl_basic_map_plain_is_universe(bmap
))
8734 return isl_bool_false
;
8736 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
)) {
8737 struct isl_basic_map
*copy
= isl_basic_map_copy(bmap
);
8738 copy
= isl_basic_map_remove_redundancies(copy
);
8739 empty
= isl_basic_map_plain_is_empty(copy
);
8740 isl_basic_map_free(copy
);
8744 non_empty
= isl_basic_map_plain_is_non_empty(bmap
);
8746 return isl_bool_error
;
8748 return isl_bool_false
;
8749 isl_vec_free(bmap
->sample
);
8750 bmap
->sample
= NULL
;
8751 bset
= isl_basic_map_underlying_set(isl_basic_map_copy(bmap
));
8753 return isl_bool_error
;
8754 sample
= isl_basic_set_sample_vec(bset
);
8756 return isl_bool_error
;
8757 empty
= sample
->size
== 0;
8758 isl_vec_free(bmap
->sample
);
8759 bmap
->sample
= sample
;
8761 ISL_F_SET(bmap
, ISL_BASIC_MAP_EMPTY
);
8766 isl_bool
isl_basic_map_plain_is_empty(__isl_keep isl_basic_map
*bmap
)
8769 return isl_bool_error
;
8770 return ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
);
8773 isl_bool
isl_basic_set_plain_is_empty(__isl_keep isl_basic_set
*bset
)
8776 return isl_bool_error
;
8777 return ISL_F_ISSET(bset
, ISL_BASIC_SET_EMPTY
);
8780 /* Is "bmap" known to be non-empty?
8782 * That is, is the cached sample still valid?
8784 isl_bool
isl_basic_map_plain_is_non_empty(__isl_keep isl_basic_map
*bmap
)
8789 return isl_bool_error
;
8791 return isl_bool_false
;
8792 total
= 1 + isl_basic_map_total_dim(bmap
);
8793 if (bmap
->sample
->size
!= total
)
8794 return isl_bool_false
;
8795 return isl_basic_map_contains(bmap
, bmap
->sample
);
8798 isl_bool
isl_basic_set_is_empty(__isl_keep isl_basic_set
*bset
)
8800 return isl_basic_map_is_empty(bset_to_bmap(bset
));
8803 __isl_give isl_map
*isl_basic_map_union(__isl_take isl_basic_map
*bmap1
,
8804 __isl_take isl_basic_map
*bmap2
)
8806 struct isl_map
*map
;
8807 if (!bmap1
|| !bmap2
)
8810 isl_assert(bmap1
->ctx
, isl_space_is_equal(bmap1
->dim
, bmap2
->dim
), goto error
);
8812 map
= isl_map_alloc_space(isl_space_copy(bmap1
->dim
), 2, 0);
8815 map
= isl_map_add_basic_map(map
, bmap1
);
8816 map
= isl_map_add_basic_map(map
, bmap2
);
8819 isl_basic_map_free(bmap1
);
8820 isl_basic_map_free(bmap2
);
8824 struct isl_set
*isl_basic_set_union(
8825 struct isl_basic_set
*bset1
, struct isl_basic_set
*bset2
)
8827 return set_from_map(isl_basic_map_union(bset_to_bmap(bset1
),
8828 bset_to_bmap(bset2
)));
8831 /* Order divs such that any div only depends on previous divs */
8832 __isl_give isl_basic_map
*isl_basic_map_order_divs(
8833 __isl_take isl_basic_map
*bmap
)
8841 off
= isl_space_dim(bmap
->dim
, isl_dim_all
);
8843 for (i
= 0; i
< bmap
->n_div
; ++i
) {
8845 if (isl_int_is_zero(bmap
->div
[i
][0]))
8847 pos
= isl_seq_first_non_zero(bmap
->div
[i
]+1+1+off
+i
,
8852 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_internal
,
8853 "integer division depends on itself",
8854 return isl_basic_map_free(bmap
));
8855 isl_basic_map_swap_div(bmap
, i
, i
+ pos
);
8861 struct isl_basic_set
*isl_basic_set_order_divs(struct isl_basic_set
*bset
)
8863 return bset_from_bmap(isl_basic_map_order_divs(bset_to_bmap(bset
)));
8866 __isl_give isl_map
*isl_map_order_divs(__isl_take isl_map
*map
)
8873 for (i
= 0; i
< map
->n
; ++i
) {
8874 map
->p
[i
] = isl_basic_map_order_divs(map
->p
[i
]);
8885 /* Sort the local variables of "bset".
8887 __isl_give isl_basic_set
*isl_basic_set_sort_divs(
8888 __isl_take isl_basic_set
*bset
)
8890 return bset_from_bmap(isl_basic_map_sort_divs(bset_to_bmap(bset
)));
8893 /* Apply the expansion computed by isl_merge_divs.
8894 * The expansion itself is given by "exp" while the resulting
8895 * list of divs is given by "div".
8897 * Move the integer divisions of "bmap" into the right position
8898 * according to "exp" and then introduce the additional integer
8899 * divisions, adding div constraints.
8900 * The moving should be done first to avoid moving coefficients
8901 * in the definitions of the extra integer divisions.
8903 __isl_give isl_basic_map
*isl_basic_map_expand_divs(
8904 __isl_take isl_basic_map
*bmap
, __isl_take isl_mat
*div
, int *exp
)
8909 bmap
= isl_basic_map_cow(bmap
);
8913 if (div
->n_row
< bmap
->n_div
)
8914 isl_die(isl_mat_get_ctx(div
), isl_error_invalid
,
8915 "not an expansion", goto error
);
8917 n_div
= bmap
->n_div
;
8918 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
8919 div
->n_row
- n_div
, 0,
8920 2 * (div
->n_row
- n_div
));
8922 for (i
= n_div
; i
< div
->n_row
; ++i
)
8923 if (isl_basic_map_alloc_div(bmap
) < 0)
8926 for (j
= n_div
- 1; j
>= 0; --j
) {
8929 isl_basic_map_swap_div(bmap
, j
, exp
[j
]);
8932 for (i
= 0; i
< div
->n_row
; ++i
) {
8933 if (j
< n_div
&& exp
[j
] == i
) {
8936 isl_seq_cpy(bmap
->div
[i
], div
->row
[i
], div
->n_col
);
8937 if (isl_basic_map_div_is_marked_unknown(bmap
, i
))
8939 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
8947 isl_basic_map_free(bmap
);
8952 /* Apply the expansion computed by isl_merge_divs.
8953 * The expansion itself is given by "exp" while the resulting
8954 * list of divs is given by "div".
8956 __isl_give isl_basic_set
*isl_basic_set_expand_divs(
8957 __isl_take isl_basic_set
*bset
, __isl_take isl_mat
*div
, int *exp
)
8959 return isl_basic_map_expand_divs(bset
, div
, exp
);
8962 /* Look for a div in dst that corresponds to the div "div" in src.
8963 * The divs before "div" in src and dst are assumed to be the same.
8965 * Returns -1 if no corresponding div was found and the position
8966 * of the corresponding div in dst otherwise.
8968 static int find_div(__isl_keep isl_basic_map
*dst
,
8969 __isl_keep isl_basic_map
*src
, unsigned div
)
8973 unsigned total
= isl_space_dim(src
->dim
, isl_dim_all
);
8975 isl_assert(dst
->ctx
, div
<= dst
->n_div
, return -1);
8976 for (i
= div
; i
< dst
->n_div
; ++i
)
8977 if (isl_seq_eq(dst
->div
[i
], src
->div
[div
], 1+1+total
+div
) &&
8978 isl_seq_first_non_zero(dst
->div
[i
]+1+1+total
+div
,
8979 dst
->n_div
- div
) == -1)
8984 /* Align the divs of "dst" to those of "src", adding divs from "src"
8985 * if needed. That is, make sure that the first src->n_div divs
8986 * of the result are equal to those of src.
8988 * The result is not finalized as by design it will have redundant
8989 * divs if any divs from "src" were copied.
8991 __isl_give isl_basic_map
*isl_basic_map_align_divs(
8992 __isl_take isl_basic_map
*dst
, __isl_keep isl_basic_map
*src
)
8995 int known
, extended
;
8999 return isl_basic_map_free(dst
);
9001 if (src
->n_div
== 0)
9004 known
= isl_basic_map_divs_known(src
);
9006 return isl_basic_map_free(dst
);
9008 isl_die(isl_basic_map_get_ctx(src
), isl_error_invalid
,
9009 "some src divs are unknown",
9010 return isl_basic_map_free(dst
));
9012 src
= isl_basic_map_order_divs(isl_basic_map_copy(src
));
9014 return isl_basic_map_free(dst
);
9017 total
= isl_space_dim(src
->dim
, isl_dim_all
);
9018 for (i
= 0; i
< src
->n_div
; ++i
) {
9019 int j
= find_div(dst
, src
, i
);
9022 int extra
= src
->n_div
- i
;
9023 dst
= isl_basic_map_cow(dst
);
9026 dst
= isl_basic_map_extend_space(dst
,
9027 isl_space_copy(dst
->dim
),
9028 extra
, 0, 2 * extra
);
9031 j
= isl_basic_map_alloc_div(dst
);
9034 isl_seq_cpy(dst
->div
[j
], src
->div
[i
], 1+1+total
+i
);
9035 isl_seq_clr(dst
->div
[j
]+1+1+total
+i
, dst
->n_div
- i
);
9036 if (isl_basic_map_add_div_constraints(dst
, j
) < 0)
9040 isl_basic_map_swap_div(dst
, i
, j
);
9042 isl_basic_map_free(src
);
9045 isl_basic_map_free(src
);
9046 isl_basic_map_free(dst
);
9050 __isl_give isl_map
*isl_map_align_divs_internal(__isl_take isl_map
*map
)
9058 map
= isl_map_compute_divs(map
);
9059 map
= isl_map_cow(map
);
9063 for (i
= 1; i
< map
->n
; ++i
)
9064 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], map
->p
[i
]);
9065 for (i
= 1; i
< map
->n
; ++i
) {
9066 map
->p
[i
] = isl_basic_map_align_divs(map
->p
[i
], map
->p
[0]);
9068 return isl_map_free(map
);
9071 map
= isl_map_unmark_normalized(map
);
9075 __isl_give isl_map
*isl_map_align_divs(__isl_take isl_map
*map
)
9077 return isl_map_align_divs_internal(map
);
9080 struct isl_set
*isl_set_align_divs(struct isl_set
*set
)
9082 return set_from_map(isl_map_align_divs_internal(set_to_map(set
)));
9085 /* Align the divs of the basic maps in "map" to those
9086 * of the basic maps in "list", as well as to the other basic maps in "map".
9087 * The elements in "list" are assumed to have known divs.
9089 __isl_give isl_map
*isl_map_align_divs_to_basic_map_list(
9090 __isl_take isl_map
*map
, __isl_keep isl_basic_map_list
*list
)
9094 map
= isl_map_compute_divs(map
);
9095 map
= isl_map_cow(map
);
9097 return isl_map_free(map
);
9101 n
= isl_basic_map_list_n_basic_map(list
);
9102 for (i
= 0; i
< n
; ++i
) {
9103 isl_basic_map
*bmap
;
9105 bmap
= isl_basic_map_list_get_basic_map(list
, i
);
9106 map
->p
[0] = isl_basic_map_align_divs(map
->p
[0], bmap
);
9107 isl_basic_map_free(bmap
);
9110 return isl_map_free(map
);
9112 return isl_map_align_divs_internal(map
);
9115 /* Align the divs of each element of "list" to those of "bmap".
9116 * Both "bmap" and the elements of "list" are assumed to have known divs.
9118 __isl_give isl_basic_map_list
*isl_basic_map_list_align_divs_to_basic_map(
9119 __isl_take isl_basic_map_list
*list
, __isl_keep isl_basic_map
*bmap
)
9124 return isl_basic_map_list_free(list
);
9126 n
= isl_basic_map_list_n_basic_map(list
);
9127 for (i
= 0; i
< n
; ++i
) {
9128 isl_basic_map
*bmap_i
;
9130 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9131 bmap_i
= isl_basic_map_align_divs(bmap_i
, bmap
);
9132 list
= isl_basic_map_list_set_basic_map(list
, i
, bmap_i
);
9138 static __isl_give isl_set
*set_apply( __isl_take isl_set
*set
,
9139 __isl_take isl_map
*map
)
9143 ok
= isl_map_compatible_domain(map
, set
);
9147 isl_die(isl_set_get_ctx(set
), isl_error_invalid
,
9148 "incompatible spaces", goto error
);
9149 map
= isl_map_intersect_domain(map
, set
);
9150 set
= isl_map_range(map
);
9158 __isl_give isl_set
*isl_set_apply( __isl_take isl_set
*set
,
9159 __isl_take isl_map
*map
)
9161 return isl_map_align_params_map_map_and(set
, map
, &set_apply
);
9164 /* There is no need to cow as removing empty parts doesn't change
9165 * the meaning of the set.
9167 __isl_give isl_map
*isl_map_remove_empty_parts(__isl_take isl_map
*map
)
9174 for (i
= map
->n
- 1; i
>= 0; --i
)
9175 map
= remove_if_empty(map
, i
);
9180 struct isl_set
*isl_set_remove_empty_parts(struct isl_set
*set
)
9182 return set_from_map(isl_map_remove_empty_parts(set_to_map(set
)));
9185 /* Create a binary relation that maps the shared initial "pos" dimensions
9186 * of "bset1" and "bset2" to the remaining dimensions of "bset1" and "bset2".
9188 static __isl_give isl_basic_map
*join_initial(__isl_keep isl_basic_set
*bset1
,
9189 __isl_keep isl_basic_set
*bset2
, int pos
)
9191 isl_basic_map
*bmap1
;
9192 isl_basic_map
*bmap2
;
9194 bmap1
= isl_basic_map_from_range(isl_basic_set_copy(bset1
));
9195 bmap2
= isl_basic_map_from_range(isl_basic_set_copy(bset2
));
9196 bmap1
= isl_basic_map_move_dims(bmap1
, isl_dim_in
, 0,
9197 isl_dim_out
, 0, pos
);
9198 bmap2
= isl_basic_map_move_dims(bmap2
, isl_dim_in
, 0,
9199 isl_dim_out
, 0, pos
);
9200 return isl_basic_map_range_product(bmap1
, bmap2
);
9203 /* Given two basic sets bset1 and bset2, compute the maximal difference
9204 * between the values of dimension pos in bset1 and those in bset2
9205 * for any common value of the parameters and dimensions preceding pos.
9207 static enum isl_lp_result
basic_set_maximal_difference_at(
9208 __isl_keep isl_basic_set
*bset1
, __isl_keep isl_basic_set
*bset2
,
9209 int pos
, isl_int
*opt
)
9211 isl_basic_map
*bmap1
;
9212 struct isl_ctx
*ctx
;
9213 struct isl_vec
*obj
;
9217 enum isl_lp_result res
;
9219 if (!bset1
|| !bset2
)
9220 return isl_lp_error
;
9222 nparam
= isl_basic_set_n_param(bset1
);
9223 dim1
= isl_basic_set_n_dim(bset1
);
9225 bmap1
= join_initial(bset1
, bset2
, pos
);
9227 return isl_lp_error
;
9229 total
= isl_basic_map_total_dim(bmap1
);
9231 obj
= isl_vec_alloc(ctx
, 1 + total
);
9234 isl_seq_clr(obj
->block
.data
, 1 + total
);
9235 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
], 1);
9236 isl_int_set_si(obj
->block
.data
[1+nparam
+pos
+(dim1
-pos
)], -1);
9237 res
= isl_basic_map_solve_lp(bmap1
, 1, obj
->block
.data
, ctx
->one
,
9239 isl_basic_map_free(bmap1
);
9243 isl_basic_map_free(bmap1
);
9244 return isl_lp_error
;
9247 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
9248 * for any common value of the parameters and dimensions preceding pos
9249 * in both basic sets, the values of dimension pos in bset1 are
9250 * smaller or larger than those in bset2.
9253 * 1 if bset1 follows bset2
9254 * -1 if bset1 precedes bset2
9255 * 0 if bset1 and bset2 are incomparable
9256 * -2 if some error occurred.
9258 int isl_basic_set_compare_at(__isl_keep isl_basic_set
*bset1
,
9259 __isl_keep isl_basic_set
*bset2
, int pos
)
9262 enum isl_lp_result res
;
9267 res
= basic_set_maximal_difference_at(bset1
, bset2
, pos
, &opt
);
9269 if (res
== isl_lp_empty
)
9271 else if ((res
== isl_lp_ok
&& isl_int_is_pos(opt
)) ||
9272 res
== isl_lp_unbounded
)
9274 else if (res
== isl_lp_ok
&& isl_int_is_neg(opt
))
9283 /* Given two basic sets bset1 and bset2, check whether
9284 * for any common value of the parameters and dimensions preceding pos
9285 * there is a value of dimension pos in bset1 that is larger
9286 * than a value of the same dimension in bset2.
9289 * 1 if there exists such a pair
9290 * 0 if there is no such pair, but there is a pair of equal values
9292 * -2 if some error occurred.
9294 int isl_basic_set_follows_at(__isl_keep isl_basic_set
*bset1
,
9295 __isl_keep isl_basic_set
*bset2
, int pos
)
9298 isl_basic_map
*bmap
;
9301 dim1
= isl_basic_set_dim(bset1
, isl_dim_set
);
9302 bmap
= join_initial(bset1
, bset2
, pos
);
9303 bmap
= isl_basic_map_order_ge(bmap
, isl_dim_out
, 0,
9304 isl_dim_out
, dim1
- pos
);
9305 empty
= isl_basic_map_is_empty(bmap
);
9309 isl_basic_map_free(bmap
);
9312 bmap
= isl_basic_map_order_gt(bmap
, isl_dim_out
, 0,
9313 isl_dim_out
, dim1
- pos
);
9314 empty
= isl_basic_map_is_empty(bmap
);
9317 isl_basic_map_free(bmap
);
9322 isl_basic_map_free(bmap
);
9326 /* Given two sets set1 and set2, check whether
9327 * for any common value of the parameters and dimensions preceding pos
9328 * there is a value of dimension pos in set1 that is larger
9329 * than a value of the same dimension in set2.
9332 * 1 if there exists such a pair
9333 * 0 if there is no such pair, but there is a pair of equal values
9335 * -2 if some error occurred.
9337 int isl_set_follows_at(__isl_keep isl_set
*set1
,
9338 __isl_keep isl_set
*set2
, int pos
)
9346 for (i
= 0; i
< set1
->n
; ++i
)
9347 for (j
= 0; j
< set2
->n
; ++j
) {
9349 f
= isl_basic_set_follows_at(set1
->p
[i
], set2
->p
[j
], pos
);
9350 if (f
== 1 || f
== -2)
9359 static isl_bool
isl_basic_map_plain_has_fixed_var(
9360 __isl_keep isl_basic_map
*bmap
, unsigned pos
, isl_int
*val
)
9367 return isl_bool_error
;
9368 total
= isl_basic_map_total_dim(bmap
);
9369 for (i
= 0, d
= total
-1; i
< bmap
->n_eq
&& d
+1 > pos
; ++i
) {
9370 for (; d
+1 > pos
; --d
)
9371 if (!isl_int_is_zero(bmap
->eq
[i
][1+d
]))
9375 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1, d
) != -1)
9376 return isl_bool_false
;
9377 if (isl_seq_first_non_zero(bmap
->eq
[i
]+1+d
+1, total
-d
-1) != -1)
9378 return isl_bool_false
;
9379 if (!isl_int_is_one(bmap
->eq
[i
][1+d
]))
9380 return isl_bool_false
;
9382 isl_int_neg(*val
, bmap
->eq
[i
][0]);
9383 return isl_bool_true
;
9385 return isl_bool_false
;
9388 static isl_bool
isl_map_plain_has_fixed_var(__isl_keep isl_map
*map
,
9389 unsigned pos
, isl_int
*val
)
9397 return isl_bool_error
;
9399 return isl_bool_false
;
9401 return isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, val
);
9404 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[0], pos
, &v
);
9405 for (i
= 1; fixed
== isl_bool_true
&& i
< map
->n
; ++i
) {
9406 fixed
= isl_basic_map_plain_has_fixed_var(map
->p
[i
], pos
, &tmp
);
9407 if (fixed
== isl_bool_true
&& isl_int_ne(tmp
, v
))
9408 fixed
= isl_bool_false
;
9411 isl_int_set(*val
, v
);
9417 static isl_bool
isl_basic_set_plain_has_fixed_var(
9418 __isl_keep isl_basic_set
*bset
, unsigned pos
, isl_int
*val
)
9420 return isl_basic_map_plain_has_fixed_var(bset_to_bmap(bset
),
9424 isl_bool
isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map
*bmap
,
9425 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9427 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
9428 return isl_bool_error
;
9429 return isl_basic_map_plain_has_fixed_var(bmap
,
9430 isl_basic_map_offset(bmap
, type
) - 1 + pos
, val
);
9433 /* If "bmap" obviously lies on a hyperplane where the given dimension
9434 * has a fixed value, then return that value.
9435 * Otherwise return NaN.
9437 __isl_give isl_val
*isl_basic_map_plain_get_val_if_fixed(
9438 __isl_keep isl_basic_map
*bmap
,
9439 enum isl_dim_type type
, unsigned pos
)
9447 ctx
= isl_basic_map_get_ctx(bmap
);
9448 v
= isl_val_alloc(ctx
);
9451 fixed
= isl_basic_map_plain_is_fixed(bmap
, type
, pos
, &v
->n
);
9453 return isl_val_free(v
);
9455 isl_int_set_si(v
->d
, 1);
9459 return isl_val_nan(ctx
);
9462 isl_bool
isl_map_plain_is_fixed(__isl_keep isl_map
*map
,
9463 enum isl_dim_type type
, unsigned pos
, isl_int
*val
)
9465 if (pos
>= isl_map_dim(map
, type
))
9466 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
9467 "position out of bounds", return isl_bool_error
);
9468 return isl_map_plain_has_fixed_var(map
,
9469 map_offset(map
, type
) - 1 + pos
, val
);
9472 /* If "map" obviously lies on a hyperplane where the given dimension
9473 * has a fixed value, then return that value.
9474 * Otherwise return NaN.
9476 __isl_give isl_val
*isl_map_plain_get_val_if_fixed(__isl_keep isl_map
*map
,
9477 enum isl_dim_type type
, unsigned pos
)
9485 ctx
= isl_map_get_ctx(map
);
9486 v
= isl_val_alloc(ctx
);
9489 fixed
= isl_map_plain_is_fixed(map
, type
, pos
, &v
->n
);
9491 return isl_val_free(v
);
9493 isl_int_set_si(v
->d
, 1);
9497 return isl_val_nan(ctx
);
9500 /* If "set" obviously lies on a hyperplane where the given dimension
9501 * has a fixed value, then return that value.
9502 * Otherwise return NaN.
9504 __isl_give isl_val
*isl_set_plain_get_val_if_fixed(__isl_keep isl_set
*set
,
9505 enum isl_dim_type type
, unsigned pos
)
9507 return isl_map_plain_get_val_if_fixed(set
, type
, pos
);
9510 /* Check if dimension dim has fixed value and if so and if val is not NULL,
9511 * then return this fixed value in *val.
9513 isl_bool
isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set
*bset
,
9514 unsigned dim
, isl_int
*val
)
9516 return isl_basic_set_plain_has_fixed_var(bset
,
9517 isl_basic_set_n_param(bset
) + dim
, val
);
9520 /* Return -1 if the constraint "c1" should be sorted before "c2"
9521 * and 1 if it should be sorted after "c2".
9522 * Return 0 if the two constraints are the same (up to the constant term).
9524 * In particular, if a constraint involves later variables than another
9525 * then it is sorted after this other constraint.
9526 * uset_gist depends on constraints without existentially quantified
9527 * variables sorting first.
9529 * For constraints that have the same latest variable, those
9530 * with the same coefficient for this latest variable (first in absolute value
9531 * and then in actual value) are grouped together.
9532 * This is useful for detecting pairs of constraints that can
9533 * be chained in their printed representation.
9535 * Finally, within a group, constraints are sorted according to
9536 * their coefficients (excluding the constant term).
9538 static int sort_constraint_cmp(const void *p1
, const void *p2
, void *arg
)
9540 isl_int
**c1
= (isl_int
**) p1
;
9541 isl_int
**c2
= (isl_int
**) p2
;
9543 unsigned size
= *(unsigned *) arg
;
9546 l1
= isl_seq_last_non_zero(*c1
+ 1, size
);
9547 l2
= isl_seq_last_non_zero(*c2
+ 1, size
);
9552 cmp
= isl_int_abs_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9555 cmp
= isl_int_cmp((*c1
)[1 + l1
], (*c2
)[1 + l1
]);
9559 return isl_seq_cmp(*c1
+ 1, *c2
+ 1, size
);
9562 /* Return -1 if the constraint "c1" of "bmap" is sorted before "c2"
9563 * by isl_basic_map_sort_constraints, 1 if it is sorted after "c2"
9564 * and 0 if the two constraints are the same (up to the constant term).
9566 int isl_basic_map_constraint_cmp(__isl_keep isl_basic_map
*bmap
,
9567 isl_int
*c1
, isl_int
*c2
)
9573 total
= isl_basic_map_total_dim(bmap
);
9574 return sort_constraint_cmp(&c1
, &c2
, &total
);
9577 __isl_give isl_basic_map
*isl_basic_map_sort_constraints(
9578 __isl_take isl_basic_map
*bmap
)
9584 if (bmap
->n_ineq
== 0)
9586 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_SORTED
))
9588 total
= isl_basic_map_total_dim(bmap
);
9589 if (isl_sort(bmap
->ineq
, bmap
->n_ineq
, sizeof(isl_int
*),
9590 &sort_constraint_cmp
, &total
) < 0)
9591 return isl_basic_map_free(bmap
);
9592 ISL_F_SET(bmap
, ISL_BASIC_MAP_SORTED
);
9596 __isl_give isl_basic_set
*isl_basic_set_sort_constraints(
9597 __isl_take isl_basic_set
*bset
)
9599 isl_basic_map
*bmap
= bset_to_bmap(bset
);
9600 return bset_from_bmap(isl_basic_map_sort_constraints(bmap
));
9603 __isl_give isl_basic_map
*isl_basic_map_normalize(
9604 __isl_take isl_basic_map
*bmap
)
9606 bmap
= isl_basic_map_remove_redundancies(bmap
);
9607 bmap
= isl_basic_map_sort_constraints(bmap
);
9610 int isl_basic_map_plain_cmp(__isl_keep isl_basic_map
*bmap1
,
9611 __isl_keep isl_basic_map
*bmap2
)
9615 isl_space
*space1
, *space2
;
9617 if (!bmap1
|| !bmap2
)
9622 space1
= isl_basic_map_peek_space(bmap1
);
9623 space2
= isl_basic_map_peek_space(bmap2
);
9624 cmp
= isl_space_cmp(space1
, space2
);
9627 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) !=
9628 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_RATIONAL
))
9629 return ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_RATIONAL
) ? -1 : 1;
9630 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
) &&
9631 ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9633 if (ISL_F_ISSET(bmap1
, ISL_BASIC_MAP_EMPTY
))
9635 if (ISL_F_ISSET(bmap2
, ISL_BASIC_MAP_EMPTY
))
9637 if (bmap1
->n_eq
!= bmap2
->n_eq
)
9638 return bmap1
->n_eq
- bmap2
->n_eq
;
9639 if (bmap1
->n_ineq
!= bmap2
->n_ineq
)
9640 return bmap1
->n_ineq
- bmap2
->n_ineq
;
9641 if (bmap1
->n_div
!= bmap2
->n_div
)
9642 return bmap1
->n_div
- bmap2
->n_div
;
9643 total
= isl_basic_map_total_dim(bmap1
);
9644 for (i
= 0; i
< bmap1
->n_eq
; ++i
) {
9645 cmp
= isl_seq_cmp(bmap1
->eq
[i
], bmap2
->eq
[i
], 1+total
);
9649 for (i
= 0; i
< bmap1
->n_ineq
; ++i
) {
9650 cmp
= isl_seq_cmp(bmap1
->ineq
[i
], bmap2
->ineq
[i
], 1+total
);
9654 for (i
= 0; i
< bmap1
->n_div
; ++i
) {
9655 cmp
= isl_seq_cmp(bmap1
->div
[i
], bmap2
->div
[i
], 1+1+total
);
9662 int isl_basic_set_plain_cmp(__isl_keep isl_basic_set
*bset1
,
9663 __isl_keep isl_basic_set
*bset2
)
9665 return isl_basic_map_plain_cmp(bset1
, bset2
);
9668 int isl_set_plain_cmp(__isl_keep isl_set
*set1
, __isl_keep isl_set
*set2
)
9674 if (set1
->n
!= set2
->n
)
9675 return set1
->n
- set2
->n
;
9677 for (i
= 0; i
< set1
->n
; ++i
) {
9678 cmp
= isl_basic_set_plain_cmp(set1
->p
[i
], set2
->p
[i
]);
9686 isl_bool
isl_basic_map_plain_is_equal(__isl_keep isl_basic_map
*bmap1
,
9687 __isl_keep isl_basic_map
*bmap2
)
9689 if (!bmap1
|| !bmap2
)
9690 return isl_bool_error
;
9691 return isl_basic_map_plain_cmp(bmap1
, bmap2
) == 0;
9694 isl_bool
isl_basic_set_plain_is_equal(__isl_keep isl_basic_set
*bset1
,
9695 __isl_keep isl_basic_set
*bset2
)
9697 return isl_basic_map_plain_is_equal(bset_to_bmap(bset1
),
9698 bset_to_bmap(bset2
));
9701 static int qsort_bmap_cmp(const void *p1
, const void *p2
)
9703 isl_basic_map
*bmap1
= *(isl_basic_map
**) p1
;
9704 isl_basic_map
*bmap2
= *(isl_basic_map
**) p2
;
9706 return isl_basic_map_plain_cmp(bmap1
, bmap2
);
9709 /* Sort the basic maps of "map" and remove duplicate basic maps.
9711 * While removing basic maps, we make sure that the basic maps remain
9712 * sorted because isl_map_normalize expects the basic maps of the result
9715 static __isl_give isl_map
*sort_and_remove_duplicates(__isl_take isl_map
*map
)
9719 map
= isl_map_remove_empty_parts(map
);
9722 qsort(map
->p
, map
->n
, sizeof(struct isl_basic_map
*), qsort_bmap_cmp
);
9723 for (i
= map
->n
- 1; i
>= 1; --i
) {
9724 if (!isl_basic_map_plain_is_equal(map
->p
[i
- 1], map
->p
[i
]))
9726 isl_basic_map_free(map
->p
[i
-1]);
9727 for (j
= i
; j
< map
->n
; ++j
)
9728 map
->p
[j
- 1] = map
->p
[j
];
9735 /* Remove obvious duplicates among the basic maps of "map".
9737 * Unlike isl_map_normalize, this function does not remove redundant
9738 * constraints and only removes duplicates that have exactly the same
9739 * constraints in the input. It does sort the constraints and
9740 * the basic maps to ease the detection of duplicates.
9742 * If "map" has already been normalized or if the basic maps are
9743 * disjoint, then there can be no duplicates.
9745 __isl_give isl_map
*isl_map_remove_obvious_duplicates(__isl_take isl_map
*map
)
9748 isl_basic_map
*bmap
;
9754 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
| ISL_MAP_DISJOINT
))
9756 for (i
= 0; i
< map
->n
; ++i
) {
9757 bmap
= isl_basic_map_copy(map
->p
[i
]);
9758 bmap
= isl_basic_map_sort_constraints(bmap
);
9760 return isl_map_free(map
);
9761 isl_basic_map_free(map
->p
[i
]);
9765 map
= sort_and_remove_duplicates(map
);
9769 /* We normalize in place, but if anything goes wrong we need
9770 * to return NULL, so we need to make sure we don't change the
9771 * meaning of any possible other copies of map.
9773 __isl_give isl_map
*isl_map_normalize(__isl_take isl_map
*map
)
9776 struct isl_basic_map
*bmap
;
9780 if (ISL_F_ISSET(map
, ISL_MAP_NORMALIZED
))
9782 for (i
= 0; i
< map
->n
; ++i
) {
9783 bmap
= isl_basic_map_normalize(isl_basic_map_copy(map
->p
[i
]));
9786 isl_basic_map_free(map
->p
[i
]);
9790 map
= sort_and_remove_duplicates(map
);
9792 ISL_F_SET(map
, ISL_MAP_NORMALIZED
);
9799 struct isl_set
*isl_set_normalize(struct isl_set
*set
)
9801 return set_from_map(isl_map_normalize(set_to_map(set
)));
9804 isl_bool
isl_map_plain_is_equal(__isl_keep isl_map
*map1
,
9805 __isl_keep isl_map
*map2
)
9811 return isl_bool_error
;
9814 return isl_bool_true
;
9815 if (!isl_space_is_equal(map1
->dim
, map2
->dim
))
9816 return isl_bool_false
;
9818 map1
= isl_map_copy(map1
);
9819 map2
= isl_map_copy(map2
);
9820 map1
= isl_map_normalize(map1
);
9821 map2
= isl_map_normalize(map2
);
9824 equal
= map1
->n
== map2
->n
;
9825 for (i
= 0; equal
&& i
< map1
->n
; ++i
) {
9826 equal
= isl_basic_map_plain_is_equal(map1
->p
[i
], map2
->p
[i
]);
9836 return isl_bool_error
;
9839 isl_bool
isl_set_plain_is_equal(__isl_keep isl_set
*set1
,
9840 __isl_keep isl_set
*set2
)
9842 return isl_map_plain_is_equal(set_to_map(set1
), set_to_map(set2
));
9845 /* Return the basic maps in "map" as a list.
9847 __isl_give isl_basic_map_list
*isl_map_get_basic_map_list(
9848 __isl_keep isl_map
*map
)
9852 isl_basic_map_list
*list
;
9856 ctx
= isl_map_get_ctx(map
);
9857 list
= isl_basic_map_list_alloc(ctx
, map
->n
);
9859 for (i
= 0; i
< map
->n
; ++i
) {
9860 isl_basic_map
*bmap
;
9862 bmap
= isl_basic_map_copy(map
->p
[i
]);
9863 list
= isl_basic_map_list_add(list
, bmap
);
9869 /* Return the intersection of the elements in the non-empty list "list".
9870 * All elements are assumed to live in the same space.
9872 __isl_give isl_basic_map
*isl_basic_map_list_intersect(
9873 __isl_take isl_basic_map_list
*list
)
9876 isl_basic_map
*bmap
;
9880 n
= isl_basic_map_list_n_basic_map(list
);
9882 isl_die(isl_basic_map_list_get_ctx(list
), isl_error_invalid
,
9883 "expecting non-empty list", goto error
);
9885 bmap
= isl_basic_map_list_get_basic_map(list
, 0);
9886 for (i
= 1; i
< n
; ++i
) {
9887 isl_basic_map
*bmap_i
;
9889 bmap_i
= isl_basic_map_list_get_basic_map(list
, i
);
9890 bmap
= isl_basic_map_intersect(bmap
, bmap_i
);
9893 isl_basic_map_list_free(list
);
9896 isl_basic_map_list_free(list
);
9900 /* Return the intersection of the elements in the non-empty list "list".
9901 * All elements are assumed to live in the same space.
9903 __isl_give isl_basic_set
*isl_basic_set_list_intersect(
9904 __isl_take isl_basic_set_list
*list
)
9906 return isl_basic_map_list_intersect(list
);
9909 /* Return the union of the elements of "list".
9910 * The list is required to have at least one element.
9912 __isl_give isl_set
*isl_basic_set_list_union(
9913 __isl_take isl_basic_set_list
*list
)
9917 isl_basic_set
*bset
;
9922 n
= isl_basic_set_list_n_basic_set(list
);
9924 isl_die(isl_basic_set_list_get_ctx(list
), isl_error_invalid
,
9925 "expecting non-empty list", goto error
);
9927 bset
= isl_basic_set_list_get_basic_set(list
, 0);
9928 space
= isl_basic_set_get_space(bset
);
9929 isl_basic_set_free(bset
);
9931 set
= isl_set_alloc_space(space
, n
, 0);
9932 for (i
= 0; i
< n
; ++i
) {
9933 bset
= isl_basic_set_list_get_basic_set(list
, i
);
9934 set
= isl_set_add_basic_set(set
, bset
);
9937 isl_basic_set_list_free(list
);
9940 isl_basic_set_list_free(list
);
9944 /* Return the union of the elements in the non-empty list "list".
9945 * All elements are assumed to live in the same space.
9947 __isl_give isl_set
*isl_set_list_union(__isl_take isl_set_list
*list
)
9954 n
= isl_set_list_n_set(list
);
9956 isl_die(isl_set_list_get_ctx(list
), isl_error_invalid
,
9957 "expecting non-empty list", goto error
);
9959 set
= isl_set_list_get_set(list
, 0);
9960 for (i
= 1; i
< n
; ++i
) {
9963 set_i
= isl_set_list_get_set(list
, i
);
9964 set
= isl_set_union(set
, set_i
);
9967 isl_set_list_free(list
);
9970 isl_set_list_free(list
);
9974 __isl_give isl_basic_map
*isl_basic_map_product(
9975 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
9977 isl_space
*dim_result
= NULL
;
9978 struct isl_basic_map
*bmap
;
9979 unsigned in1
, in2
, out1
, out2
, nparam
, total
, pos
;
9980 struct isl_dim_map
*dim_map1
, *dim_map2
;
9982 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
9984 dim_result
= isl_space_product(isl_space_copy(bmap1
->dim
),
9985 isl_space_copy(bmap2
->dim
));
9987 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
9988 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
9989 out1
= isl_basic_map_dim(bmap1
, isl_dim_out
);
9990 out2
= isl_basic_map_dim(bmap2
, isl_dim_out
);
9991 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
9993 total
= nparam
+ in1
+ in2
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
9994 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9995 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
9996 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
9997 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
9998 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
9999 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
10000 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
10001 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
10002 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
10003 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
10005 bmap
= isl_basic_map_alloc_space(dim_result
,
10006 bmap1
->n_div
+ bmap2
->n_div
,
10007 bmap1
->n_eq
+ bmap2
->n_eq
,
10008 bmap1
->n_ineq
+ bmap2
->n_ineq
);
10009 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
10010 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
10011 bmap
= isl_basic_map_simplify(bmap
);
10012 return isl_basic_map_finalize(bmap
);
10014 isl_basic_map_free(bmap1
);
10015 isl_basic_map_free(bmap2
);
10019 __isl_give isl_basic_map
*isl_basic_map_flat_product(
10020 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
10022 isl_basic_map
*prod
;
10024 prod
= isl_basic_map_product(bmap1
, bmap2
);
10025 prod
= isl_basic_map_flatten(prod
);
10029 __isl_give isl_basic_set
*isl_basic_set_flat_product(
10030 __isl_take isl_basic_set
*bset1
, __isl_take isl_basic_set
*bset2
)
10032 return isl_basic_map_flat_range_product(bset1
, bset2
);
10035 __isl_give isl_basic_map
*isl_basic_map_domain_product(
10036 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
10038 isl_space
*space_result
= NULL
;
10039 isl_basic_map
*bmap
;
10040 unsigned in1
, in2
, out
, nparam
, total
, pos
;
10041 struct isl_dim_map
*dim_map1
, *dim_map2
;
10043 if (!bmap1
|| !bmap2
)
10046 space_result
= isl_space_domain_product(isl_space_copy(bmap1
->dim
),
10047 isl_space_copy(bmap2
->dim
));
10049 in1
= isl_basic_map_dim(bmap1
, isl_dim_in
);
10050 in2
= isl_basic_map_dim(bmap2
, isl_dim_in
);
10051 out
= isl_basic_map_dim(bmap1
, isl_dim_out
);
10052 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
10054 total
= nparam
+ in1
+ in2
+ out
+ bmap1
->n_div
+ bmap2
->n_div
;
10055 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
10056 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
10057 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
10058 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
10059 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
10060 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
+= in1
);
10061 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in2
);
10062 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
);
10063 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out
);
10064 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
10066 bmap
= isl_basic_map_alloc_space(space_result
,
10067 bmap1
->n_div
+ bmap2
->n_div
,
10068 bmap1
->n_eq
+ bmap2
->n_eq
,
10069 bmap1
->n_ineq
+ bmap2
->n_ineq
);
10070 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
10071 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
10072 bmap
= isl_basic_map_simplify(bmap
);
10073 return isl_basic_map_finalize(bmap
);
10075 isl_basic_map_free(bmap1
);
10076 isl_basic_map_free(bmap2
);
10080 __isl_give isl_basic_map
*isl_basic_map_range_product(
10081 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
10084 isl_space
*dim_result
= NULL
;
10085 isl_basic_map
*bmap
;
10086 unsigned in
, out1
, out2
, nparam
, total
, pos
;
10087 struct isl_dim_map
*dim_map1
, *dim_map2
;
10089 rational
= isl_basic_map_is_rational(bmap1
);
10090 if (rational
>= 0 && rational
)
10091 rational
= isl_basic_map_is_rational(bmap2
);
10092 if (!bmap1
|| !bmap2
|| rational
< 0)
10095 if (isl_basic_map_check_equal_params(bmap1
, bmap2
) < 0)
10098 dim_result
= isl_space_range_product(isl_space_copy(bmap1
->dim
),
10099 isl_space_copy(bmap2
->dim
));
10101 in
= isl_basic_map_dim(bmap1
, isl_dim_in
);
10102 out1
= isl_basic_map_dim(bmap1
, isl_dim_out
);
10103 out2
= isl_basic_map_dim(bmap2
, isl_dim_out
);
10104 nparam
= isl_basic_map_dim(bmap1
, isl_dim_param
);
10106 total
= nparam
+ in
+ out1
+ out2
+ bmap1
->n_div
+ bmap2
->n_div
;
10107 dim_map1
= isl_dim_map_alloc(bmap1
->ctx
, total
);
10108 dim_map2
= isl_dim_map_alloc(bmap1
->ctx
, total
);
10109 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_param
, pos
= 0);
10110 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_param
, pos
= 0);
10111 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_in
, pos
+= nparam
);
10112 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_in
, pos
);
10113 isl_dim_map_dim(dim_map1
, bmap1
->dim
, isl_dim_out
, pos
+= in
);
10114 isl_dim_map_dim(dim_map2
, bmap2
->dim
, isl_dim_out
, pos
+= out1
);
10115 isl_dim_map_div(dim_map1
, bmap1
, pos
+= out2
);
10116 isl_dim_map_div(dim_map2
, bmap2
, pos
+= bmap1
->n_div
);
10118 bmap
= isl_basic_map_alloc_space(dim_result
,
10119 bmap1
->n_div
+ bmap2
->n_div
,
10120 bmap1
->n_eq
+ bmap2
->n_eq
,
10121 bmap1
->n_ineq
+ bmap2
->n_ineq
);
10122 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap1
, dim_map1
);
10123 bmap
= isl_basic_map_add_constraints_dim_map(bmap
, bmap2
, dim_map2
);
10125 bmap
= isl_basic_map_set_rational(bmap
);
10126 bmap
= isl_basic_map_simplify(bmap
);
10127 return isl_basic_map_finalize(bmap
);
10129 isl_basic_map_free(bmap1
);
10130 isl_basic_map_free(bmap2
);
10134 __isl_give isl_basic_map
*isl_basic_map_flat_range_product(
10135 __isl_take isl_basic_map
*bmap1
, __isl_take isl_basic_map
*bmap2
)
10137 isl_basic_map
*prod
;
10139 prod
= isl_basic_map_range_product(bmap1
, bmap2
);
10140 prod
= isl_basic_map_flatten_range(prod
);
10144 /* Apply "basic_map_product" to each pair of basic maps in "map1" and "map2"
10145 * and collect the results.
10146 * The result live in the space obtained by calling "space_product"
10147 * on the spaces of "map1" and "map2".
10148 * If "remove_duplicates" is set then the result may contain duplicates
10149 * (even if the inputs do not) and so we try and remove the obvious
10152 static __isl_give isl_map
*map_product(__isl_take isl_map
*map1
,
10153 __isl_take isl_map
*map2
,
10154 __isl_give isl_space
*(*space_product
)(__isl_take isl_space
*left
,
10155 __isl_take isl_space
*right
),
10156 __isl_give isl_basic_map
*(*basic_map_product
)(
10157 __isl_take isl_basic_map
*left
,
10158 __isl_take isl_basic_map
*right
),
10159 int remove_duplicates
)
10161 unsigned flags
= 0;
10162 struct isl_map
*result
;
10166 m
= isl_map_has_equal_params(map1
, map2
);
10170 isl_die(isl_map_get_ctx(map1
), isl_error_invalid
,
10171 "parameters don't match", goto error
);
10173 if (ISL_F_ISSET(map1
, ISL_MAP_DISJOINT
) &&
10174 ISL_F_ISSET(map2
, ISL_MAP_DISJOINT
))
10175 ISL_FL_SET(flags
, ISL_MAP_DISJOINT
);
10177 result
= isl_map_alloc_space(space_product(isl_space_copy(map1
->dim
),
10178 isl_space_copy(map2
->dim
)),
10179 map1
->n
* map2
->n
, flags
);
10182 for (i
= 0; i
< map1
->n
; ++i
)
10183 for (j
= 0; j
< map2
->n
; ++j
) {
10184 struct isl_basic_map
*part
;
10185 part
= basic_map_product(isl_basic_map_copy(map1
->p
[i
]),
10186 isl_basic_map_copy(map2
->p
[j
]));
10187 if (isl_basic_map_is_empty(part
))
10188 isl_basic_map_free(part
);
10190 result
= isl_map_add_basic_map(result
, part
);
10194 if (remove_duplicates
)
10195 result
= isl_map_remove_obvious_duplicates(result
);
10196 isl_map_free(map1
);
10197 isl_map_free(map2
);
10200 isl_map_free(map1
);
10201 isl_map_free(map2
);
10205 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
10207 static __isl_give isl_map
*map_product_aligned(__isl_take isl_map
*map1
,
10208 __isl_take isl_map
*map2
)
10210 return map_product(map1
, map2
, &isl_space_product
,
10211 &isl_basic_map_product
, 0);
10214 __isl_give isl_map
*isl_map_product(__isl_take isl_map
*map1
,
10215 __isl_take isl_map
*map2
)
10217 return isl_map_align_params_map_map_and(map1
, map2
, &map_product_aligned
);
10220 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
10222 __isl_give isl_map
*isl_map_flat_product(__isl_take isl_map
*map1
,
10223 __isl_take isl_map
*map2
)
10227 prod
= isl_map_product(map1
, map2
);
10228 prod
= isl_map_flatten(prod
);
10232 /* Given two set A and B, construct its Cartesian product A x B.
10234 struct isl_set
*isl_set_product(struct isl_set
*set1
, struct isl_set
*set2
)
10236 return isl_map_range_product(set1
, set2
);
10239 __isl_give isl_set
*isl_set_flat_product(__isl_take isl_set
*set1
,
10240 __isl_take isl_set
*set2
)
10242 return isl_map_flat_range_product(set1
, set2
);
10245 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
10247 static __isl_give isl_map
*map_domain_product_aligned(__isl_take isl_map
*map1
,
10248 __isl_take isl_map
*map2
)
10250 return map_product(map1
, map2
, &isl_space_domain_product
,
10251 &isl_basic_map_domain_product
, 1);
10254 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
10256 static __isl_give isl_map
*map_range_product_aligned(__isl_take isl_map
*map1
,
10257 __isl_take isl_map
*map2
)
10259 return map_product(map1
, map2
, &isl_space_range_product
,
10260 &isl_basic_map_range_product
, 1);
10263 __isl_give isl_map
*isl_map_domain_product(__isl_take isl_map
*map1
,
10264 __isl_take isl_map
*map2
)
10266 return isl_map_align_params_map_map_and(map1
, map2
,
10267 &map_domain_product_aligned
);
10270 __isl_give isl_map
*isl_map_range_product(__isl_take isl_map
*map1
,
10271 __isl_take isl_map
*map2
)
10273 return isl_map_align_params_map_map_and(map1
, map2
,
10274 &map_range_product_aligned
);
10277 /* Given a map of the form [A -> B] -> [C -> D], return the map A -> C.
10279 __isl_give isl_map
*isl_map_factor_domain(__isl_take isl_map
*map
)
10282 int total1
, keep1
, total2
, keep2
;
10286 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10287 !isl_space_range_is_wrapping(map
->dim
))
10288 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10289 "not a product", return isl_map_free(map
));
10291 space
= isl_map_get_space(map
);
10292 total1
= isl_space_dim(space
, isl_dim_in
);
10293 total2
= isl_space_dim(space
, isl_dim_out
);
10294 space
= isl_space_factor_domain(space
);
10295 keep1
= isl_space_dim(space
, isl_dim_in
);
10296 keep2
= isl_space_dim(space
, isl_dim_out
);
10297 map
= isl_map_project_out(map
, isl_dim_in
, keep1
, total1
- keep1
);
10298 map
= isl_map_project_out(map
, isl_dim_out
, keep2
, total2
- keep2
);
10299 map
= isl_map_reset_space(map
, space
);
10304 /* Given a map of the form [A -> B] -> [C -> D], return the map B -> D.
10306 __isl_give isl_map
*isl_map_factor_range(__isl_take isl_map
*map
)
10309 int total1
, keep1
, total2
, keep2
;
10313 if (!isl_space_domain_is_wrapping(map
->dim
) ||
10314 !isl_space_range_is_wrapping(map
->dim
))
10315 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10316 "not a product", return isl_map_free(map
));
10318 space
= isl_map_get_space(map
);
10319 total1
= isl_space_dim(space
, isl_dim_in
);
10320 total2
= isl_space_dim(space
, isl_dim_out
);
10321 space
= isl_space_factor_range(space
);
10322 keep1
= isl_space_dim(space
, isl_dim_in
);
10323 keep2
= isl_space_dim(space
, isl_dim_out
);
10324 map
= isl_map_project_out(map
, isl_dim_in
, 0, total1
- keep1
);
10325 map
= isl_map_project_out(map
, isl_dim_out
, 0, total2
- keep2
);
10326 map
= isl_map_reset_space(map
, space
);
10331 /* Given a map of the form [A -> B] -> C, return the map A -> C.
10333 __isl_give isl_map
*isl_map_domain_factor_domain(__isl_take isl_map
*map
)
10340 if (!isl_space_domain_is_wrapping(map
->dim
))
10341 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10342 "domain is not a product", return isl_map_free(map
));
10344 space
= isl_map_get_space(map
);
10345 total
= isl_space_dim(space
, isl_dim_in
);
10346 space
= isl_space_domain_factor_domain(space
);
10347 keep
= isl_space_dim(space
, isl_dim_in
);
10348 map
= isl_map_project_out(map
, isl_dim_in
, keep
, total
- keep
);
10349 map
= isl_map_reset_space(map
, space
);
10354 /* Given a map of the form [A -> B] -> C, return the map B -> C.
10356 __isl_give isl_map
*isl_map_domain_factor_range(__isl_take isl_map
*map
)
10363 if (!isl_space_domain_is_wrapping(map
->dim
))
10364 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10365 "domain is not a product", return isl_map_free(map
));
10367 space
= isl_map_get_space(map
);
10368 total
= isl_space_dim(space
, isl_dim_in
);
10369 space
= isl_space_domain_factor_range(space
);
10370 keep
= isl_space_dim(space
, isl_dim_in
);
10371 map
= isl_map_project_out(map
, isl_dim_in
, 0, total
- keep
);
10372 map
= isl_map_reset_space(map
, space
);
10377 /* Given a map A -> [B -> C], extract the map A -> B.
10379 __isl_give isl_map
*isl_map_range_factor_domain(__isl_take isl_map
*map
)
10386 if (!isl_space_range_is_wrapping(map
->dim
))
10387 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10388 "range is not a product", return isl_map_free(map
));
10390 space
= isl_map_get_space(map
);
10391 total
= isl_space_dim(space
, isl_dim_out
);
10392 space
= isl_space_range_factor_domain(space
);
10393 keep
= isl_space_dim(space
, isl_dim_out
);
10394 map
= isl_map_project_out(map
, isl_dim_out
, keep
, total
- keep
);
10395 map
= isl_map_reset_space(map
, space
);
10400 /* Given a map A -> [B -> C], extract the map A -> C.
10402 __isl_give isl_map
*isl_map_range_factor_range(__isl_take isl_map
*map
)
10409 if (!isl_space_range_is_wrapping(map
->dim
))
10410 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
10411 "range is not a product", return isl_map_free(map
));
10413 space
= isl_map_get_space(map
);
10414 total
= isl_space_dim(space
, isl_dim_out
);
10415 space
= isl_space_range_factor_range(space
);
10416 keep
= isl_space_dim(space
, isl_dim_out
);
10417 map
= isl_map_project_out(map
, isl_dim_out
, 0, total
- keep
);
10418 map
= isl_map_reset_space(map
, space
);
10423 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
10425 __isl_give isl_map
*isl_map_flat_domain_product(__isl_take isl_map
*map1
,
10426 __isl_take isl_map
*map2
)
10430 prod
= isl_map_domain_product(map1
, map2
);
10431 prod
= isl_map_flatten_domain(prod
);
10435 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
10437 __isl_give isl_map
*isl_map_flat_range_product(__isl_take isl_map
*map1
,
10438 __isl_take isl_map
*map2
)
10442 prod
= isl_map_range_product(map1
, map2
);
10443 prod
= isl_map_flatten_range(prod
);
10447 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map
*bmap
)
10450 uint32_t hash
= isl_hash_init();
10455 bmap
= isl_basic_map_copy(bmap
);
10456 bmap
= isl_basic_map_normalize(bmap
);
10459 total
= isl_basic_map_total_dim(bmap
);
10460 isl_hash_byte(hash
, bmap
->n_eq
& 0xFF);
10461 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
10463 c_hash
= isl_seq_get_hash(bmap
->eq
[i
], 1 + total
);
10464 isl_hash_hash(hash
, c_hash
);
10466 isl_hash_byte(hash
, bmap
->n_ineq
& 0xFF);
10467 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10469 c_hash
= isl_seq_get_hash(bmap
->ineq
[i
], 1 + total
);
10470 isl_hash_hash(hash
, c_hash
);
10472 isl_hash_byte(hash
, bmap
->n_div
& 0xFF);
10473 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10475 if (isl_int_is_zero(bmap
->div
[i
][0]))
10477 isl_hash_byte(hash
, i
& 0xFF);
10478 c_hash
= isl_seq_get_hash(bmap
->div
[i
], 1 + 1 + total
);
10479 isl_hash_hash(hash
, c_hash
);
10481 isl_basic_map_free(bmap
);
10485 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set
*bset
)
10487 return isl_basic_map_get_hash(bset_to_bmap(bset
));
10490 uint32_t isl_map_get_hash(__isl_keep isl_map
*map
)
10497 map
= isl_map_copy(map
);
10498 map
= isl_map_normalize(map
);
10502 hash
= isl_hash_init();
10503 for (i
= 0; i
< map
->n
; ++i
) {
10504 uint32_t bmap_hash
;
10505 bmap_hash
= isl_basic_map_get_hash(map
->p
[i
]);
10506 isl_hash_hash(hash
, bmap_hash
);
10514 uint32_t isl_set_get_hash(__isl_keep isl_set
*set
)
10516 return isl_map_get_hash(set_to_map(set
));
10519 /* Return the number of basic maps in the (current) representation of "map".
10521 int isl_map_n_basic_map(__isl_keep isl_map
*map
)
10523 return map
? map
->n
: 0;
10526 int isl_set_n_basic_set(__isl_keep isl_set
*set
)
10528 return set
? set
->n
: 0;
10531 isl_stat
isl_map_foreach_basic_map(__isl_keep isl_map
*map
,
10532 isl_stat (*fn
)(__isl_take isl_basic_map
*bmap
, void *user
), void *user
)
10537 return isl_stat_error
;
10539 for (i
= 0; i
< map
->n
; ++i
)
10540 if (fn(isl_basic_map_copy(map
->p
[i
]), user
) < 0)
10541 return isl_stat_error
;
10543 return isl_stat_ok
;
10546 isl_stat
isl_set_foreach_basic_set(__isl_keep isl_set
*set
,
10547 isl_stat (*fn
)(__isl_take isl_basic_set
*bset
, void *user
), void *user
)
10552 return isl_stat_error
;
10554 for (i
= 0; i
< set
->n
; ++i
)
10555 if (fn(isl_basic_set_copy(set
->p
[i
]), user
) < 0)
10556 return isl_stat_error
;
10558 return isl_stat_ok
;
10561 /* Return a list of basic sets, the union of which is equal to "set".
10563 __isl_give isl_basic_set_list
*isl_set_get_basic_set_list(
10564 __isl_keep isl_set
*set
)
10567 isl_basic_set_list
*list
;
10572 list
= isl_basic_set_list_alloc(isl_set_get_ctx(set
), set
->n
);
10573 for (i
= 0; i
< set
->n
; ++i
) {
10574 isl_basic_set
*bset
;
10576 bset
= isl_basic_set_copy(set
->p
[i
]);
10577 list
= isl_basic_set_list_add(list
, bset
);
10583 __isl_give isl_basic_set
*isl_basic_set_lift(__isl_take isl_basic_set
*bset
)
10590 bset
= isl_basic_set_cow(bset
);
10594 dim
= isl_basic_set_get_space(bset
);
10595 dim
= isl_space_lift(dim
, bset
->n_div
);
10598 isl_space_free(bset
->dim
);
10600 bset
->extra
-= bset
->n_div
;
10603 bset
= isl_basic_set_finalize(bset
);
10607 isl_basic_set_free(bset
);
10611 __isl_give isl_set
*isl_set_lift(__isl_take isl_set
*set
)
10617 set
= set_from_map(isl_map_align_divs_internal(set_to_map(set
)));
10622 set
= isl_set_cow(set
);
10626 n_div
= set
->p
[0]->n_div
;
10627 dim
= isl_set_get_space(set
);
10628 dim
= isl_space_lift(dim
, n_div
);
10631 isl_space_free(set
->dim
);
10634 for (i
= 0; i
< set
->n
; ++i
) {
10635 set
->p
[i
] = isl_basic_set_lift(set
->p
[i
]);
10646 int isl_basic_set_size(__isl_keep isl_basic_set
*bset
)
10654 dim
= isl_basic_set_total_dim(bset
);
10655 size
+= bset
->n_eq
* (1 + dim
);
10656 size
+= bset
->n_ineq
* (1 + dim
);
10657 size
+= bset
->n_div
* (2 + dim
);
10662 int isl_set_size(__isl_keep isl_set
*set
)
10670 for (i
= 0; i
< set
->n
; ++i
)
10671 size
+= isl_basic_set_size(set
->p
[i
]);
10676 /* Check if there is any lower bound (if lower == 0) and/or upper
10677 * bound (if upper == 0) on the specified dim.
10679 static isl_bool
basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10680 enum isl_dim_type type
, unsigned pos
, int lower
, int upper
)
10684 if (isl_basic_map_check_range(bmap
, type
, pos
, 1) < 0)
10685 return isl_bool_error
;
10687 pos
+= isl_basic_map_offset(bmap
, type
);
10689 for (i
= 0; i
< bmap
->n_div
; ++i
) {
10690 if (isl_int_is_zero(bmap
->div
[i
][0]))
10692 if (!isl_int_is_zero(bmap
->div
[i
][1 + pos
]))
10693 return isl_bool_true
;
10696 for (i
= 0; i
< bmap
->n_eq
; ++i
)
10697 if (!isl_int_is_zero(bmap
->eq
[i
][pos
]))
10698 return isl_bool_true
;
10700 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
10701 int sgn
= isl_int_sgn(bmap
->ineq
[i
][pos
]);
10708 return lower
&& upper
;
10711 isl_bool
isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map
*bmap
,
10712 enum isl_dim_type type
, unsigned pos
)
10714 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 0);
10717 isl_bool
isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map
*bmap
,
10718 enum isl_dim_type type
, unsigned pos
)
10720 return basic_map_dim_is_bounded(bmap
, type
, pos
, 0, 1);
10723 isl_bool
isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map
*bmap
,
10724 enum isl_dim_type type
, unsigned pos
)
10726 return basic_map_dim_is_bounded(bmap
, type
, pos
, 1, 0);
10729 isl_bool
isl_map_dim_is_bounded(__isl_keep isl_map
*map
,
10730 enum isl_dim_type type
, unsigned pos
)
10735 return isl_bool_error
;
10737 for (i
= 0; i
< map
->n
; ++i
) {
10739 bounded
= isl_basic_map_dim_is_bounded(map
->p
[i
], type
, pos
);
10740 if (bounded
< 0 || !bounded
)
10744 return isl_bool_true
;
10747 /* Return true if the specified dim is involved in both an upper bound
10748 * and a lower bound.
10750 isl_bool
isl_set_dim_is_bounded(__isl_keep isl_set
*set
,
10751 enum isl_dim_type type
, unsigned pos
)
10753 return isl_map_dim_is_bounded(set_to_map(set
), type
, pos
);
10756 /* Does "map" have a bound (according to "fn") for any of its basic maps?
10758 static isl_bool
has_any_bound(__isl_keep isl_map
*map
,
10759 enum isl_dim_type type
, unsigned pos
,
10760 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10761 enum isl_dim_type type
, unsigned pos
))
10766 return isl_bool_error
;
10768 for (i
= 0; i
< map
->n
; ++i
) {
10770 bounded
= fn(map
->p
[i
], type
, pos
);
10771 if (bounded
< 0 || bounded
)
10775 return isl_bool_false
;
10778 /* Return 1 if the specified dim is involved in any lower bound.
10780 isl_bool
isl_set_dim_has_any_lower_bound(__isl_keep isl_set
*set
,
10781 enum isl_dim_type type
, unsigned pos
)
10783 return has_any_bound(set
, type
, pos
,
10784 &isl_basic_map_dim_has_lower_bound
);
10787 /* Return 1 if the specified dim is involved in any upper bound.
10789 isl_bool
isl_set_dim_has_any_upper_bound(__isl_keep isl_set
*set
,
10790 enum isl_dim_type type
, unsigned pos
)
10792 return has_any_bound(set
, type
, pos
,
10793 &isl_basic_map_dim_has_upper_bound
);
10796 /* Does "map" have a bound (according to "fn") for all of its basic maps?
10798 static isl_bool
has_bound(__isl_keep isl_map
*map
,
10799 enum isl_dim_type type
, unsigned pos
,
10800 isl_bool (*fn
)(__isl_keep isl_basic_map
*bmap
,
10801 enum isl_dim_type type
, unsigned pos
))
10806 return isl_bool_error
;
10808 for (i
= 0; i
< map
->n
; ++i
) {
10810 bounded
= fn(map
->p
[i
], type
, pos
);
10811 if (bounded
< 0 || !bounded
)
10815 return isl_bool_true
;
10818 /* Return 1 if the specified dim has a lower bound (in each of its basic sets).
10820 isl_bool
isl_set_dim_has_lower_bound(__isl_keep isl_set
*set
,
10821 enum isl_dim_type type
, unsigned pos
)
10823 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_lower_bound
);
10826 /* Return 1 if the specified dim has an upper bound (in each of its basic sets).
10828 isl_bool
isl_set_dim_has_upper_bound(__isl_keep isl_set
*set
,
10829 enum isl_dim_type type
, unsigned pos
)
10831 return has_bound(set
, type
, pos
, &isl_basic_map_dim_has_upper_bound
);
10834 /* For each of the "n" variables starting at "first", determine
10835 * the sign of the variable and put the results in the first "n"
10836 * elements of the array "signs".
10838 * 1 means that the variable is non-negative
10839 * -1 means that the variable is non-positive
10840 * 0 means the variable attains both positive and negative values.
10842 isl_stat
isl_basic_set_vars_get_sign(__isl_keep isl_basic_set
*bset
,
10843 unsigned first
, unsigned n
, int *signs
)
10845 isl_vec
*bound
= NULL
;
10846 struct isl_tab
*tab
= NULL
;
10847 struct isl_tab_undo
*snap
;
10850 if (!bset
|| !signs
)
10851 return isl_stat_error
;
10853 bound
= isl_vec_alloc(bset
->ctx
, 1 + isl_basic_set_total_dim(bset
));
10854 tab
= isl_tab_from_basic_set(bset
, 0);
10855 if (!bound
|| !tab
)
10858 isl_seq_clr(bound
->el
, bound
->size
);
10859 isl_int_set_si(bound
->el
[0], -1);
10861 snap
= isl_tab_snap(tab
);
10862 for (i
= 0; i
< n
; ++i
) {
10865 isl_int_set_si(bound
->el
[1 + first
+ i
], -1);
10866 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10868 empty
= tab
->empty
;
10869 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10870 if (isl_tab_rollback(tab
, snap
) < 0)
10878 isl_int_set_si(bound
->el
[1 + first
+ i
], 1);
10879 if (isl_tab_add_ineq(tab
, bound
->el
) < 0)
10881 empty
= tab
->empty
;
10882 isl_int_set_si(bound
->el
[1 + first
+ i
], 0);
10883 if (isl_tab_rollback(tab
, snap
) < 0)
10886 signs
[i
] = empty
? -1 : 0;
10890 isl_vec_free(bound
);
10891 return isl_stat_ok
;
10894 isl_vec_free(bound
);
10895 return isl_stat_error
;
10898 isl_stat
isl_basic_set_dims_get_sign(__isl_keep isl_basic_set
*bset
,
10899 enum isl_dim_type type
, unsigned first
, unsigned n
, int *signs
)
10901 if (!bset
|| !signs
)
10902 return isl_stat_error
;
10903 isl_assert(bset
->ctx
, first
+ n
<= isl_basic_set_dim(bset
, type
),
10904 return isl_stat_error
);
10906 first
+= pos(bset
->dim
, type
) - 1;
10907 return isl_basic_set_vars_get_sign(bset
, first
, n
, signs
);
10910 /* Is it possible for the integer division "div" to depend (possibly
10911 * indirectly) on any output dimensions?
10913 * If the div is undefined, then we conservatively assume that it
10914 * may depend on them.
10915 * Otherwise, we check if it actually depends on them or on any integer
10916 * divisions that may depend on them.
10918 static isl_bool
div_may_involve_output(__isl_keep isl_basic_map
*bmap
, int div
)
10921 unsigned n_out
, o_out
;
10922 unsigned n_div
, o_div
;
10924 if (isl_int_is_zero(bmap
->div
[div
][0]))
10925 return isl_bool_true
;
10927 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
10928 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
10930 if (isl_seq_first_non_zero(bmap
->div
[div
] + 1 + o_out
, n_out
) != -1)
10931 return isl_bool_true
;
10933 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
10934 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
10936 for (i
= 0; i
< n_div
; ++i
) {
10937 isl_bool may_involve
;
10939 if (isl_int_is_zero(bmap
->div
[div
][1 + o_div
+ i
]))
10941 may_involve
= div_may_involve_output(bmap
, i
);
10942 if (may_involve
< 0 || may_involve
)
10943 return may_involve
;
10946 return isl_bool_false
;
10949 /* Return the first integer division of "bmap" in the range
10950 * [first, first + n[ that may depend on any output dimensions and
10951 * that has a non-zero coefficient in "c" (where the first coefficient
10952 * in "c" corresponds to integer division "first").
10954 static int first_div_may_involve_output(__isl_keep isl_basic_map
*bmap
,
10955 isl_int
*c
, int first
, int n
)
10962 for (k
= first
; k
< first
+ n
; ++k
) {
10963 isl_bool may_involve
;
10965 if (isl_int_is_zero(c
[k
]))
10967 may_involve
= div_may_involve_output(bmap
, k
);
10968 if (may_involve
< 0)
10977 /* Look for a pair of inequality constraints in "bmap" of the form
10979 * -l + i >= 0 or i >= l
10981 * n + l - i >= 0 or i <= l + n
10983 * with n < "m" and i the output dimension at position "pos".
10984 * (Note that n >= 0 as otherwise the two constraints would conflict.)
10985 * Furthermore, "l" is only allowed to involve parameters, input dimensions
10986 * and earlier output dimensions, as well as integer divisions that do
10987 * not involve any of the output dimensions.
10989 * Return the index of the first inequality constraint or bmap->n_ineq
10990 * if no such pair can be found.
10992 static int find_modulo_constraint_pair(__isl_keep isl_basic_map
*bmap
,
10993 int pos
, isl_int m
)
10998 unsigned n_div
, o_div
;
10999 unsigned n_out
, o_out
;
11005 ctx
= isl_basic_map_get_ctx(bmap
);
11006 total
= isl_basic_map_total_dim(bmap
);
11007 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11008 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
11009 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
11010 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
11011 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
11012 if (!isl_int_abs_eq(bmap
->ineq
[i
][o_out
+ pos
], ctx
->one
))
11014 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + o_out
+ pos
+ 1,
11015 n_out
- (pos
+ 1)) != -1)
11017 if (first_div_may_involve_output(bmap
, bmap
->ineq
[i
] + o_div
,
11020 for (j
= i
+ 1; j
< bmap
->n_ineq
; ++j
) {
11021 if (!isl_int_abs_eq(bmap
->ineq
[j
][o_out
+ pos
],
11024 if (!isl_seq_is_neg(bmap
->ineq
[i
] + 1,
11025 bmap
->ineq
[j
] + 1, total
))
11029 if (j
>= bmap
->n_ineq
)
11031 isl_int_add(bmap
->ineq
[i
][0],
11032 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
11033 less
= isl_int_abs_lt(bmap
->ineq
[i
][0], m
);
11034 isl_int_sub(bmap
->ineq
[i
][0],
11035 bmap
->ineq
[i
][0], bmap
->ineq
[j
][0]);
11038 if (isl_int_is_one(bmap
->ineq
[i
][o_out
+ pos
]))
11044 return bmap
->n_ineq
;
11047 /* Return the index of the equality of "bmap" that defines
11048 * the output dimension "pos" in terms of earlier dimensions.
11049 * The equality may also involve integer divisions, as long
11050 * as those integer divisions are defined in terms of
11051 * parameters or input dimensions.
11052 * In this case, *div is set to the number of integer divisions and
11053 * *ineq is set to the number of inequality constraints (provided
11054 * div and ineq are not NULL).
11056 * The equality may also involve a single integer division involving
11057 * the output dimensions (typically only output dimension "pos") as
11058 * long as the coefficient of output dimension "pos" is 1 or -1 and
11059 * there is a pair of constraints i >= l and i <= l + n, with i referring
11060 * to output dimension "pos", l an expression involving only earlier
11061 * dimensions and n smaller than the coefficient of the integer division
11062 * in the equality. In this case, the output dimension can be defined
11063 * in terms of a modulo expression that does not involve the integer division.
11064 * *div is then set to this single integer division and
11065 * *ineq is set to the index of constraint i >= l.
11067 * Return bmap->n_eq if there is no such equality.
11068 * Return -1 on error.
11070 int isl_basic_map_output_defining_equality(__isl_keep isl_basic_map
*bmap
,
11071 int pos
, int *div
, int *ineq
)
11074 unsigned n_out
, o_out
;
11075 unsigned n_div
, o_div
;
11080 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11081 o_out
= isl_basic_map_offset(bmap
, isl_dim_out
);
11082 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
11083 o_div
= isl_basic_map_offset(bmap
, isl_dim_div
);
11086 *ineq
= bmap
->n_ineq
;
11089 for (j
= 0; j
< bmap
->n_eq
; ++j
) {
11090 if (isl_int_is_zero(bmap
->eq
[j
][o_out
+ pos
]))
11092 if (isl_seq_first_non_zero(bmap
->eq
[j
] + o_out
+ pos
+ 1,
11093 n_out
- (pos
+ 1)) != -1)
11095 k
= first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11099 if (!isl_int_is_one(bmap
->eq
[j
][o_out
+ pos
]) &&
11100 !isl_int_is_negone(bmap
->eq
[j
][o_out
+ pos
]))
11102 if (first_div_may_involve_output(bmap
, bmap
->eq
[j
] + o_div
,
11103 k
+ 1, n_div
- (k
+1)) < n_div
)
11105 l
= find_modulo_constraint_pair(bmap
, pos
,
11106 bmap
->eq
[j
][o_div
+ k
]);
11109 if (l
>= bmap
->n_ineq
)
11121 /* Check if the given basic map is obviously single-valued.
11122 * In particular, for each output dimension, check that there is
11123 * an equality that defines the output dimension in terms of
11124 * earlier dimensions.
11126 isl_bool
isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11132 return isl_bool_error
;
11134 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
11136 for (i
= 0; i
< n_out
; ++i
) {
11139 eq
= isl_basic_map_output_defining_equality(bmap
, i
,
11142 return isl_bool_error
;
11143 if (eq
>= bmap
->n_eq
)
11144 return isl_bool_false
;
11147 return isl_bool_true
;
11150 /* Check if the given basic map is single-valued.
11151 * We simply compute
11155 * and check if the result is a subset of the identity mapping.
11157 isl_bool
isl_basic_map_is_single_valued(__isl_keep isl_basic_map
*bmap
)
11160 isl_basic_map
*test
;
11164 sv
= isl_basic_map_plain_is_single_valued(bmap
);
11168 test
= isl_basic_map_reverse(isl_basic_map_copy(bmap
));
11169 test
= isl_basic_map_apply_range(test
, isl_basic_map_copy(bmap
));
11171 space
= isl_basic_map_get_space(bmap
);
11172 space
= isl_space_map_from_set(isl_space_range(space
));
11173 id
= isl_basic_map_identity(space
);
11175 sv
= isl_basic_map_is_subset(test
, id
);
11177 isl_basic_map_free(test
);
11178 isl_basic_map_free(id
);
11183 /* Check if the given map is obviously single-valued.
11185 isl_bool
isl_map_plain_is_single_valued(__isl_keep isl_map
*map
)
11188 return isl_bool_error
;
11190 return isl_bool_true
;
11192 return isl_bool_false
;
11194 return isl_basic_map_plain_is_single_valued(map
->p
[0]);
11197 /* Check if the given map is single-valued.
11198 * We simply compute
11202 * and check if the result is a subset of the identity mapping.
11204 isl_bool
isl_map_is_single_valued(__isl_keep isl_map
*map
)
11211 sv
= isl_map_plain_is_single_valued(map
);
11215 test
= isl_map_reverse(isl_map_copy(map
));
11216 test
= isl_map_apply_range(test
, isl_map_copy(map
));
11218 dim
= isl_space_map_from_set(isl_space_range(isl_map_get_space(map
)));
11219 id
= isl_map_identity(dim
);
11221 sv
= isl_map_is_subset(test
, id
);
11223 isl_map_free(test
);
11229 isl_bool
isl_map_is_injective(__isl_keep isl_map
*map
)
11233 map
= isl_map_copy(map
);
11234 map
= isl_map_reverse(map
);
11235 in
= isl_map_is_single_valued(map
);
11241 /* Check if the given map is obviously injective.
11243 isl_bool
isl_map_plain_is_injective(__isl_keep isl_map
*map
)
11247 map
= isl_map_copy(map
);
11248 map
= isl_map_reverse(map
);
11249 in
= isl_map_plain_is_single_valued(map
);
11255 isl_bool
isl_map_is_bijective(__isl_keep isl_map
*map
)
11259 sv
= isl_map_is_single_valued(map
);
11263 return isl_map_is_injective(map
);
11266 isl_bool
isl_set_is_singleton(__isl_keep isl_set
*set
)
11268 return isl_map_is_single_valued(set_to_map(set
));
11271 /* Does "map" only map elements to themselves?
11273 * If the domain and range spaces are different, then "map"
11274 * is considered not to be an identity relation, even if it is empty.
11275 * Otherwise, construct the maximal identity relation and
11276 * check whether "map" is a subset of this relation.
11278 isl_bool
isl_map_is_identity(__isl_keep isl_map
*map
)
11282 isl_bool equal
, is_identity
;
11284 space
= isl_map_get_space(map
);
11285 equal
= isl_space_tuple_is_equal(space
, isl_dim_in
, space
, isl_dim_out
);
11286 isl_space_free(space
);
11287 if (equal
< 0 || !equal
)
11290 id
= isl_map_identity(isl_map_get_space(map
));
11291 is_identity
= isl_map_is_subset(map
, id
);
11294 return is_identity
;
11297 int isl_map_is_translation(__isl_keep isl_map
*map
)
11302 delta
= isl_map_deltas(isl_map_copy(map
));
11303 ok
= isl_set_is_singleton(delta
);
11304 isl_set_free(delta
);
11309 static int unique(isl_int
*p
, unsigned pos
, unsigned len
)
11311 if (isl_seq_first_non_zero(p
, pos
) != -1)
11313 if (isl_seq_first_non_zero(p
+ pos
+ 1, len
- pos
- 1) != -1)
11318 isl_bool
isl_basic_set_is_box(__isl_keep isl_basic_set
*bset
)
11325 return isl_bool_error
;
11327 if (isl_basic_set_dim(bset
, isl_dim_div
) != 0)
11328 return isl_bool_false
;
11330 nvar
= isl_basic_set_dim(bset
, isl_dim_set
);
11331 ovar
= isl_space_offset(bset
->dim
, isl_dim_set
);
11332 for (j
= 0; j
< nvar
; ++j
) {
11333 int lower
= 0, upper
= 0;
11334 for (i
= 0; i
< bset
->n_eq
; ++i
) {
11335 if (isl_int_is_zero(bset
->eq
[i
][1 + ovar
+ j
]))
11337 if (!unique(bset
->eq
[i
] + 1 + ovar
, j
, nvar
))
11338 return isl_bool_false
;
11341 if (i
< bset
->n_eq
)
11343 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
11344 if (isl_int_is_zero(bset
->ineq
[i
][1 + ovar
+ j
]))
11346 if (!unique(bset
->ineq
[i
] + 1 + ovar
, j
, nvar
))
11347 return isl_bool_false
;
11348 if (isl_int_is_pos(bset
->ineq
[i
][1 + ovar
+ j
]))
11353 if (!lower
|| !upper
)
11354 return isl_bool_false
;
11357 return isl_bool_true
;
11360 isl_bool
isl_set_is_box(__isl_keep isl_set
*set
)
11363 return isl_bool_error
;
11365 return isl_bool_false
;
11367 return isl_basic_set_is_box(set
->p
[0]);
11370 isl_bool
isl_basic_set_is_wrapping(__isl_keep isl_basic_set
*bset
)
11373 return isl_bool_error
;
11375 return isl_space_is_wrapping(bset
->dim
);
11378 isl_bool
isl_set_is_wrapping(__isl_keep isl_set
*set
)
11381 return isl_bool_error
;
11383 return isl_space_is_wrapping(set
->dim
);
11386 /* Modify the space of "map" through a call to "change".
11387 * If "can_change" is set (not NULL), then first call it to check
11388 * if the modification is allowed, printing the error message "cannot_change"
11391 static __isl_give isl_map
*isl_map_change_space(__isl_take isl_map
*map
,
11392 isl_bool (*can_change
)(__isl_keep isl_map
*map
),
11393 const char *cannot_change
,
11394 __isl_give isl_space
*(*change
)(__isl_take isl_space
*space
))
11402 ok
= can_change
? can_change(map
) : isl_bool_true
;
11404 return isl_map_free(map
);
11406 isl_die(isl_map_get_ctx(map
), isl_error_invalid
, cannot_change
,
11407 return isl_map_free(map
));
11409 space
= change(isl_map_get_space(map
));
11410 map
= isl_map_reset_space(map
, space
);
11415 /* Is the domain of "map" a wrapped relation?
11417 isl_bool
isl_map_domain_is_wrapping(__isl_keep isl_map
*map
)
11420 return isl_bool_error
;
11422 return isl_space_domain_is_wrapping(map
->dim
);
11425 /* Does "map" have a wrapped relation in both domain and range?
11427 isl_bool
isl_map_is_product(__isl_keep isl_map
*map
)
11429 return isl_space_is_product(isl_map_peek_space(map
));
11432 /* Is the range of "map" a wrapped relation?
11434 isl_bool
isl_map_range_is_wrapping(__isl_keep isl_map
*map
)
11437 return isl_bool_error
;
11439 return isl_space_range_is_wrapping(map
->dim
);
11442 __isl_give isl_basic_set
*isl_basic_map_wrap(__isl_take isl_basic_map
*bmap
)
11444 bmap
= isl_basic_map_cow(bmap
);
11448 bmap
->dim
= isl_space_wrap(bmap
->dim
);
11452 bmap
= isl_basic_map_finalize(bmap
);
11454 return bset_from_bmap(bmap
);
11456 isl_basic_map_free(bmap
);
11460 /* Given a map A -> B, return the set (A -> B).
11462 __isl_give isl_set
*isl_map_wrap(__isl_take isl_map
*map
)
11464 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_wrap
);
11467 __isl_give isl_basic_map
*isl_basic_set_unwrap(__isl_take isl_basic_set
*bset
)
11469 bset
= isl_basic_set_cow(bset
);
11473 bset
->dim
= isl_space_unwrap(bset
->dim
);
11477 bset
= isl_basic_set_finalize(bset
);
11479 return bset_to_bmap(bset
);
11481 isl_basic_set_free(bset
);
11485 /* Given a set (A -> B), return the map A -> B.
11486 * Error out if "set" is not of the form (A -> B).
11488 __isl_give isl_map
*isl_set_unwrap(__isl_take isl_set
*set
)
11490 return isl_map_change_space(set
, &isl_set_is_wrapping
,
11491 "not a wrapping set", &isl_space_unwrap
);
11494 __isl_give isl_basic_map
*isl_basic_map_reset(__isl_take isl_basic_map
*bmap
,
11495 enum isl_dim_type type
)
11500 if (!isl_space_is_named_or_nested(bmap
->dim
, type
))
11503 bmap
= isl_basic_map_cow(bmap
);
11507 bmap
->dim
= isl_space_reset(bmap
->dim
, type
);
11511 bmap
= isl_basic_map_finalize(bmap
);
11515 isl_basic_map_free(bmap
);
11519 __isl_give isl_map
*isl_map_reset(__isl_take isl_map
*map
,
11520 enum isl_dim_type type
)
11527 if (!isl_space_is_named_or_nested(map
->dim
, type
))
11530 map
= isl_map_cow(map
);
11534 for (i
= 0; i
< map
->n
; ++i
) {
11535 map
->p
[i
] = isl_basic_map_reset(map
->p
[i
], type
);
11539 map
->dim
= isl_space_reset(map
->dim
, type
);
11549 __isl_give isl_basic_map
*isl_basic_map_flatten(__isl_take isl_basic_map
*bmap
)
11554 if (!bmap
->dim
->nested
[0] && !bmap
->dim
->nested
[1])
11557 bmap
= isl_basic_map_cow(bmap
);
11561 bmap
->dim
= isl_space_flatten(bmap
->dim
);
11565 bmap
= isl_basic_map_finalize(bmap
);
11569 isl_basic_map_free(bmap
);
11573 __isl_give isl_basic_set
*isl_basic_set_flatten(__isl_take isl_basic_set
*bset
)
11575 return bset_from_bmap(isl_basic_map_flatten(bset_to_bmap(bset
)));
11578 __isl_give isl_basic_map
*isl_basic_map_flatten_domain(
11579 __isl_take isl_basic_map
*bmap
)
11584 if (!bmap
->dim
->nested
[0])
11587 bmap
= isl_basic_map_cow(bmap
);
11591 bmap
->dim
= isl_space_flatten_domain(bmap
->dim
);
11595 bmap
= isl_basic_map_finalize(bmap
);
11599 isl_basic_map_free(bmap
);
11603 __isl_give isl_basic_map
*isl_basic_map_flatten_range(
11604 __isl_take isl_basic_map
*bmap
)
11609 if (!bmap
->dim
->nested
[1])
11612 bmap
= isl_basic_map_cow(bmap
);
11616 bmap
->dim
= isl_space_flatten_range(bmap
->dim
);
11620 bmap
= isl_basic_map_finalize(bmap
);
11624 isl_basic_map_free(bmap
);
11628 /* Remove any internal structure from the spaces of domain and range of "map".
11630 __isl_give isl_map
*isl_map_flatten(__isl_take isl_map
*map
)
11635 if (!map
->dim
->nested
[0] && !map
->dim
->nested
[1])
11638 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten
);
11641 __isl_give isl_set
*isl_set_flatten(__isl_take isl_set
*set
)
11643 return set_from_map(isl_map_flatten(set_to_map(set
)));
11646 __isl_give isl_map
*isl_set_flatten_map(__isl_take isl_set
*set
)
11648 isl_space
*dim
, *flat_dim
;
11651 dim
= isl_set_get_space(set
);
11652 flat_dim
= isl_space_flatten(isl_space_copy(dim
));
11653 map
= isl_map_identity(isl_space_join(isl_space_reverse(dim
), flat_dim
));
11654 map
= isl_map_intersect_domain(map
, set
);
11659 /* Remove any internal structure from the space of the domain of "map".
11661 __isl_give isl_map
*isl_map_flatten_domain(__isl_take isl_map
*map
)
11666 if (!map
->dim
->nested
[0])
11669 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_domain
);
11672 /* Remove any internal structure from the space of the range of "map".
11674 __isl_give isl_map
*isl_map_flatten_range(__isl_take isl_map
*map
)
11679 if (!map
->dim
->nested
[1])
11682 return isl_map_change_space(map
, NULL
, NULL
, &isl_space_flatten_range
);
11685 /* Reorder the dimensions of "bmap" according to the given dim_map
11686 * and set the dimension specification to "space" and
11687 * perform Gaussian elimination on the result.
11689 __isl_give isl_basic_map
*isl_basic_map_realign(__isl_take isl_basic_map
*bmap
,
11690 __isl_take isl_space
*space
, __isl_take
struct isl_dim_map
*dim_map
)
11692 isl_basic_map
*res
;
11696 if (!bmap
|| !space
|| !dim_map
)
11699 flags
= bmap
->flags
;
11700 ISL_FL_CLR(flags
, ISL_BASIC_MAP_FINAL
);
11701 ISL_FL_CLR(flags
, ISL_BASIC_MAP_SORTED
);
11702 ISL_FL_CLR(flags
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
11703 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
11704 res
= isl_basic_map_alloc_space(space
, n_div
, bmap
->n_eq
, bmap
->n_ineq
);
11705 res
= isl_basic_map_add_constraints_dim_map(res
, bmap
, dim_map
);
11707 res
->flags
= flags
;
11708 res
= isl_basic_map_gauss(res
, NULL
);
11709 res
= isl_basic_map_finalize(res
);
11713 isl_basic_map_free(bmap
);
11714 isl_space_free(space
);
11718 /* Reorder the dimensions of "map" according to given reordering.
11720 __isl_give isl_map
*isl_map_realign(__isl_take isl_map
*map
,
11721 __isl_take isl_reordering
*r
)
11724 struct isl_dim_map
*dim_map
;
11726 map
= isl_map_cow(map
);
11727 dim_map
= isl_dim_map_from_reordering(r
);
11728 if (!map
|| !r
|| !dim_map
)
11731 for (i
= 0; i
< map
->n
; ++i
) {
11732 struct isl_dim_map
*dim_map_i
;
11735 dim_map_i
= isl_dim_map_extend(dim_map
, map
->p
[i
]);
11737 space
= isl_reordering_get_space(r
);
11738 map
->p
[i
] = isl_basic_map_realign(map
->p
[i
], space
, dim_map_i
);
11744 map
= isl_map_reset_space(map
, isl_reordering_get_space(r
));
11745 map
= isl_map_unmark_normalized(map
);
11747 isl_reordering_free(r
);
11753 isl_reordering_free(r
);
11757 __isl_give isl_set
*isl_set_realign(__isl_take isl_set
*set
,
11758 __isl_take isl_reordering
*r
)
11760 return set_from_map(isl_map_realign(set_to_map(set
), r
));
11763 __isl_give isl_map
*isl_map_align_params(__isl_take isl_map
*map
,
11764 __isl_take isl_space
*model
)
11769 if (!map
|| !model
)
11772 ctx
= isl_space_get_ctx(model
);
11773 if (!isl_space_has_named_params(model
))
11774 isl_die(ctx
, isl_error_invalid
,
11775 "model has unnamed parameters", goto error
);
11776 if (isl_map_check_named_params(map
) < 0)
11778 aligned
= isl_map_space_has_equal_params(map
, model
);
11782 isl_reordering
*exp
;
11784 exp
= isl_parameter_alignment_reordering(map
->dim
, model
);
11785 exp
= isl_reordering_extend_space(exp
, isl_map_get_space(map
));
11786 map
= isl_map_realign(map
, exp
);
11789 isl_space_free(model
);
11792 isl_space_free(model
);
11797 __isl_give isl_set
*isl_set_align_params(__isl_take isl_set
*set
,
11798 __isl_take isl_space
*model
)
11800 return isl_map_align_params(set
, model
);
11803 /* Align the parameters of "bmap" to those of "model", introducing
11804 * additional parameters if needed.
11806 __isl_give isl_basic_map
*isl_basic_map_align_params(
11807 __isl_take isl_basic_map
*bmap
, __isl_take isl_space
*model
)
11810 isl_bool equal_params
;
11812 if (!bmap
|| !model
)
11815 ctx
= isl_space_get_ctx(model
);
11816 if (!isl_space_has_named_params(model
))
11817 isl_die(ctx
, isl_error_invalid
,
11818 "model has unnamed parameters", goto error
);
11819 if (isl_basic_map_check_named_params(bmap
) < 0)
11821 equal_params
= isl_space_has_equal_params(bmap
->dim
, model
);
11822 if (equal_params
< 0)
11824 if (!equal_params
) {
11825 isl_reordering
*exp
;
11826 struct isl_dim_map
*dim_map
;
11828 exp
= isl_parameter_alignment_reordering(bmap
->dim
, model
);
11829 exp
= isl_reordering_extend_space(exp
,
11830 isl_basic_map_get_space(bmap
));
11831 dim_map
= isl_dim_map_from_reordering(exp
);
11832 bmap
= isl_basic_map_realign(bmap
,
11833 isl_reordering_get_space(exp
),
11834 isl_dim_map_extend(dim_map
, bmap
));
11835 isl_reordering_free(exp
);
11839 isl_space_free(model
);
11842 isl_space_free(model
);
11843 isl_basic_map_free(bmap
);
11847 /* Do "bset" and "space" have the same parameters?
11849 isl_bool
isl_basic_set_space_has_equal_params(__isl_keep isl_basic_set
*bset
,
11850 __isl_keep isl_space
*space
)
11852 isl_space
*bset_space
;
11854 bset_space
= isl_basic_set_peek_space(bset
);
11855 return isl_space_has_equal_params(bset_space
, space
);
11858 /* Do "map" and "space" have the same parameters?
11860 isl_bool
isl_map_space_has_equal_params(__isl_keep isl_map
*map
,
11861 __isl_keep isl_space
*space
)
11863 isl_space
*map_space
;
11865 map_space
= isl_map_peek_space(map
);
11866 return isl_space_has_equal_params(map_space
, space
);
11869 /* Do "set" and "space" have the same parameters?
11871 isl_bool
isl_set_space_has_equal_params(__isl_keep isl_set
*set
,
11872 __isl_keep isl_space
*space
)
11874 return isl_map_space_has_equal_params(set_to_map(set
), space
);
11877 /* Align the parameters of "bset" to those of "model", introducing
11878 * additional parameters if needed.
11880 __isl_give isl_basic_set
*isl_basic_set_align_params(
11881 __isl_take isl_basic_set
*bset
, __isl_take isl_space
*model
)
11883 return isl_basic_map_align_params(bset
, model
);
11886 /* Drop all parameters not referenced by "map".
11888 __isl_give isl_map
*isl_map_drop_unused_params(__isl_take isl_map
*map
)
11892 if (isl_map_check_named_params(map
) < 0)
11893 return isl_map_free(map
);
11895 for (i
= isl_map_dim(map
, isl_dim_param
) - 1; i
>= 0; i
--) {
11898 involves
= isl_map_involves_dims(map
, isl_dim_param
, i
, 1);
11900 return isl_map_free(map
);
11902 map
= isl_map_project_out(map
, isl_dim_param
, i
, 1);
11908 /* Drop all parameters not referenced by "set".
11910 __isl_give isl_set
*isl_set_drop_unused_params(
11911 __isl_take isl_set
*set
)
11913 return set_from_map(isl_map_drop_unused_params(set_to_map(set
)));
11916 /* Drop all parameters not referenced by "bmap".
11918 __isl_give isl_basic_map
*isl_basic_map_drop_unused_params(
11919 __isl_take isl_basic_map
*bmap
)
11923 if (isl_basic_map_check_named_params(bmap
) < 0)
11924 return isl_basic_map_free(bmap
);
11926 for (i
= isl_basic_map_dim(bmap
, isl_dim_param
) - 1; i
>= 0; i
--) {
11929 involves
= isl_basic_map_involves_dims(bmap
,
11930 isl_dim_param
, i
, 1);
11932 return isl_basic_map_free(bmap
);
11934 bmap
= isl_basic_map_drop(bmap
, isl_dim_param
, i
, 1);
11940 /* Drop all parameters not referenced by "bset".
11942 __isl_give isl_basic_set
*isl_basic_set_drop_unused_params(
11943 __isl_take isl_basic_set
*bset
)
11945 return bset_from_bmap(isl_basic_map_drop_unused_params(
11946 bset_to_bmap(bset
)));
11949 __isl_give isl_mat
*isl_basic_map_equalities_matrix(
11950 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11951 enum isl_dim_type c2
, enum isl_dim_type c3
,
11952 enum isl_dim_type c4
, enum isl_dim_type c5
)
11954 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11955 struct isl_mat
*mat
;
11961 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_eq
,
11962 isl_basic_map_total_dim(bmap
) + 1);
11965 for (i
= 0; i
< bmap
->n_eq
; ++i
)
11966 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11967 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11968 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11969 isl_int_set(mat
->row
[i
][pos
],
11970 bmap
->eq
[i
][off
+ k
]);
11978 __isl_give isl_mat
*isl_basic_map_inequalities_matrix(
11979 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type c1
,
11980 enum isl_dim_type c2
, enum isl_dim_type c3
,
11981 enum isl_dim_type c4
, enum isl_dim_type c5
)
11983 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
11984 struct isl_mat
*mat
;
11990 mat
= isl_mat_alloc(bmap
->ctx
, bmap
->n_ineq
,
11991 isl_basic_map_total_dim(bmap
) + 1);
11994 for (i
= 0; i
< bmap
->n_ineq
; ++i
)
11995 for (j
= 0, pos
= 0; j
< 5; ++j
) {
11996 int off
= isl_basic_map_offset(bmap
, c
[j
]);
11997 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
11998 isl_int_set(mat
->row
[i
][pos
],
11999 bmap
->ineq
[i
][off
+ k
]);
12007 __isl_give isl_basic_map
*isl_basic_map_from_constraint_matrices(
12008 __isl_take isl_space
*space
,
12009 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
12010 enum isl_dim_type c2
, enum isl_dim_type c3
,
12011 enum isl_dim_type c4
, enum isl_dim_type c5
)
12013 enum isl_dim_type c
[5] = { c1
, c2
, c3
, c4
, c5
};
12014 isl_basic_map
*bmap
= NULL
;
12020 if (!space
|| !eq
|| !ineq
)
12023 if (eq
->n_col
!= ineq
->n_col
)
12024 isl_die(space
->ctx
, isl_error_invalid
,
12025 "equalities and inequalities matrices should have "
12026 "same number of columns", goto error
);
12028 total
= 1 + isl_space_dim(space
, isl_dim_all
);
12030 if (eq
->n_col
< total
)
12031 isl_die(space
->ctx
, isl_error_invalid
,
12032 "number of columns too small", goto error
);
12034 extra
= eq
->n_col
- total
;
12036 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), extra
,
12037 eq
->n_row
, ineq
->n_row
);
12040 for (i
= 0; i
< extra
; ++i
) {
12041 k
= isl_basic_map_alloc_div(bmap
);
12044 isl_int_set_si(bmap
->div
[k
][0], 0);
12046 for (i
= 0; i
< eq
->n_row
; ++i
) {
12047 l
= isl_basic_map_alloc_equality(bmap
);
12050 for (j
= 0, pos
= 0; j
< 5; ++j
) {
12051 int off
= isl_basic_map_offset(bmap
, c
[j
]);
12052 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
12053 isl_int_set(bmap
->eq
[l
][off
+ k
],
12059 for (i
= 0; i
< ineq
->n_row
; ++i
) {
12060 l
= isl_basic_map_alloc_inequality(bmap
);
12063 for (j
= 0, pos
= 0; j
< 5; ++j
) {
12064 int off
= isl_basic_map_offset(bmap
, c
[j
]);
12065 for (k
= 0; k
< isl_basic_map_dim(bmap
, c
[j
]); ++k
) {
12066 isl_int_set(bmap
->ineq
[l
][off
+ k
],
12067 ineq
->row
[i
][pos
]);
12073 isl_space_free(space
);
12075 isl_mat_free(ineq
);
12077 bmap
= isl_basic_map_simplify(bmap
);
12078 return isl_basic_map_finalize(bmap
);
12080 isl_space_free(space
);
12082 isl_mat_free(ineq
);
12083 isl_basic_map_free(bmap
);
12087 __isl_give isl_mat
*isl_basic_set_equalities_matrix(
12088 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
12089 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
12091 return isl_basic_map_equalities_matrix(bset_to_bmap(bset
),
12092 c1
, c2
, c3
, c4
, isl_dim_in
);
12095 __isl_give isl_mat
*isl_basic_set_inequalities_matrix(
12096 __isl_keep isl_basic_set
*bset
, enum isl_dim_type c1
,
12097 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
12099 return isl_basic_map_inequalities_matrix(bset_to_bmap(bset
),
12100 c1
, c2
, c3
, c4
, isl_dim_in
);
12103 __isl_give isl_basic_set
*isl_basic_set_from_constraint_matrices(
12104 __isl_take isl_space
*dim
,
12105 __isl_take isl_mat
*eq
, __isl_take isl_mat
*ineq
, enum isl_dim_type c1
,
12106 enum isl_dim_type c2
, enum isl_dim_type c3
, enum isl_dim_type c4
)
12108 isl_basic_map
*bmap
;
12109 bmap
= isl_basic_map_from_constraint_matrices(dim
, eq
, ineq
,
12110 c1
, c2
, c3
, c4
, isl_dim_in
);
12111 return bset_from_bmap(bmap
);
12114 isl_bool
isl_basic_map_can_zip(__isl_keep isl_basic_map
*bmap
)
12117 return isl_bool_error
;
12119 return isl_space_can_zip(bmap
->dim
);
12122 isl_bool
isl_map_can_zip(__isl_keep isl_map
*map
)
12125 return isl_bool_error
;
12127 return isl_space_can_zip(map
->dim
);
12130 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
12131 * (A -> C) -> (B -> D).
12133 __isl_give isl_basic_map
*isl_basic_map_zip(__isl_take isl_basic_map
*bmap
)
12142 if (!isl_basic_map_can_zip(bmap
))
12143 isl_die(bmap
->ctx
, isl_error_invalid
,
12144 "basic map cannot be zipped", goto error
);
12145 pos
= isl_basic_map_offset(bmap
, isl_dim_in
) +
12146 isl_space_dim(bmap
->dim
->nested
[0], isl_dim_in
);
12147 n1
= isl_space_dim(bmap
->dim
->nested
[0], isl_dim_out
);
12148 n2
= isl_space_dim(bmap
->dim
->nested
[1], isl_dim_in
);
12149 bmap
= isl_basic_map_cow(bmap
);
12150 bmap
= isl_basic_map_swap_vars(bmap
, pos
, n1
, n2
);
12153 bmap
->dim
= isl_space_zip(bmap
->dim
);
12156 bmap
= isl_basic_map_mark_final(bmap
);
12159 isl_basic_map_free(bmap
);
12163 /* Given a map (A -> B) -> (C -> D), return the corresponding map
12164 * (A -> C) -> (B -> D).
12166 __isl_give isl_map
*isl_map_zip(__isl_take isl_map
*map
)
12173 if (!isl_map_can_zip(map
))
12174 isl_die(map
->ctx
, isl_error_invalid
, "map cannot be zipped",
12177 map
= isl_map_cow(map
);
12181 for (i
= 0; i
< map
->n
; ++i
) {
12182 map
->p
[i
] = isl_basic_map_zip(map
->p
[i
]);
12187 map
->dim
= isl_space_zip(map
->dim
);
12197 /* Can we apply isl_basic_map_curry to "bmap"?
12198 * That is, does it have a nested relation in its domain?
12200 isl_bool
isl_basic_map_can_curry(__isl_keep isl_basic_map
*bmap
)
12203 return isl_bool_error
;
12205 return isl_space_can_curry(bmap
->dim
);
12208 /* Can we apply isl_map_curry to "map"?
12209 * That is, does it have a nested relation in its domain?
12211 isl_bool
isl_map_can_curry(__isl_keep isl_map
*map
)
12214 return isl_bool_error
;
12216 return isl_space_can_curry(map
->dim
);
12219 /* Given a basic map (A -> B) -> C, return the corresponding basic map
12222 __isl_give isl_basic_map
*isl_basic_map_curry(__isl_take isl_basic_map
*bmap
)
12228 if (!isl_basic_map_can_curry(bmap
))
12229 isl_die(bmap
->ctx
, isl_error_invalid
,
12230 "basic map cannot be curried", goto error
);
12231 bmap
= isl_basic_map_cow(bmap
);
12234 bmap
->dim
= isl_space_curry(bmap
->dim
);
12237 bmap
= isl_basic_map_mark_final(bmap
);
12240 isl_basic_map_free(bmap
);
12244 /* Given a map (A -> B) -> C, return the corresponding map
12247 __isl_give isl_map
*isl_map_curry(__isl_take isl_map
*map
)
12249 return isl_map_change_space(map
, &isl_map_can_curry
,
12250 "map cannot be curried", &isl_space_curry
);
12253 /* Can isl_map_range_curry be applied to "map"?
12254 * That is, does it have a nested relation in its range,
12255 * the domain of which is itself a nested relation?
12257 isl_bool
isl_map_can_range_curry(__isl_keep isl_map
*map
)
12260 return isl_bool_error
;
12262 return isl_space_can_range_curry(map
->dim
);
12265 /* Given a map A -> ((B -> C) -> D), return the corresponding map
12266 * A -> (B -> (C -> D)).
12268 __isl_give isl_map
*isl_map_range_curry(__isl_take isl_map
*map
)
12270 return isl_map_change_space(map
, &isl_map_can_range_curry
,
12271 "map range cannot be curried",
12272 &isl_space_range_curry
);
12275 /* Can we apply isl_basic_map_uncurry to "bmap"?
12276 * That is, does it have a nested relation in its domain?
12278 isl_bool
isl_basic_map_can_uncurry(__isl_keep isl_basic_map
*bmap
)
12281 return isl_bool_error
;
12283 return isl_space_can_uncurry(bmap
->dim
);
12286 /* Can we apply isl_map_uncurry to "map"?
12287 * That is, does it have a nested relation in its domain?
12289 isl_bool
isl_map_can_uncurry(__isl_keep isl_map
*map
)
12292 return isl_bool_error
;
12294 return isl_space_can_uncurry(map
->dim
);
12297 /* Given a basic map A -> (B -> C), return the corresponding basic map
12300 __isl_give isl_basic_map
*isl_basic_map_uncurry(__isl_take isl_basic_map
*bmap
)
12306 if (!isl_basic_map_can_uncurry(bmap
))
12307 isl_die(bmap
->ctx
, isl_error_invalid
,
12308 "basic map cannot be uncurried",
12309 return isl_basic_map_free(bmap
));
12310 bmap
= isl_basic_map_cow(bmap
);
12313 bmap
->dim
= isl_space_uncurry(bmap
->dim
);
12315 return isl_basic_map_free(bmap
);
12316 bmap
= isl_basic_map_mark_final(bmap
);
12320 /* Given a map A -> (B -> C), return the corresponding map
12323 __isl_give isl_map
*isl_map_uncurry(__isl_take isl_map
*map
)
12325 return isl_map_change_space(map
, &isl_map_can_uncurry
,
12326 "map cannot be uncurried", &isl_space_uncurry
);
12329 __isl_give isl_set
*isl_set_equate(__isl_take isl_set
*set
,
12330 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12332 return isl_map_equate(set
, type1
, pos1
, type2
, pos2
);
12335 /* Construct a basic map where the given dimensions are equal to each other.
12337 static __isl_give isl_basic_map
*equator(__isl_take isl_space
*space
,
12338 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12340 isl_basic_map
*bmap
= NULL
;
12346 if (pos1
>= isl_space_dim(space
, type1
))
12347 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12348 "index out of bounds", goto error
);
12349 if (pos2
>= isl_space_dim(space
, type2
))
12350 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12351 "index out of bounds", goto error
);
12353 if (type1
== type2
&& pos1
== pos2
)
12354 return isl_basic_map_universe(space
);
12356 bmap
= isl_basic_map_alloc_space(isl_space_copy(space
), 0, 1, 0);
12357 i
= isl_basic_map_alloc_equality(bmap
);
12360 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12361 pos1
+= isl_basic_map_offset(bmap
, type1
);
12362 pos2
+= isl_basic_map_offset(bmap
, type2
);
12363 isl_int_set_si(bmap
->eq
[i
][pos1
], -1);
12364 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12365 bmap
= isl_basic_map_finalize(bmap
);
12366 isl_space_free(space
);
12369 isl_space_free(space
);
12370 isl_basic_map_free(bmap
);
12374 /* Add a constraint imposing that the given two dimensions are equal.
12376 __isl_give isl_basic_map
*isl_basic_map_equate(__isl_take isl_basic_map
*bmap
,
12377 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12381 eq
= equator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12383 bmap
= isl_basic_map_intersect(bmap
, eq
);
12388 /* Add a constraint imposing that the given two dimensions are equal.
12390 __isl_give isl_map
*isl_map_equate(__isl_take isl_map
*map
,
12391 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12393 isl_basic_map
*bmap
;
12395 bmap
= equator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12397 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12402 /* Add a constraint imposing that the given two dimensions have opposite values.
12404 __isl_give isl_map
*isl_map_oppose(__isl_take isl_map
*map
,
12405 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12407 isl_basic_map
*bmap
= NULL
;
12413 if (pos1
>= isl_map_dim(map
, type1
))
12414 isl_die(map
->ctx
, isl_error_invalid
,
12415 "index out of bounds", goto error
);
12416 if (pos2
>= isl_map_dim(map
, type2
))
12417 isl_die(map
->ctx
, isl_error_invalid
,
12418 "index out of bounds", goto error
);
12420 bmap
= isl_basic_map_alloc_space(isl_map_get_space(map
), 0, 1, 0);
12421 i
= isl_basic_map_alloc_equality(bmap
);
12424 isl_seq_clr(bmap
->eq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12425 pos1
+= isl_basic_map_offset(bmap
, type1
);
12426 pos2
+= isl_basic_map_offset(bmap
, type2
);
12427 isl_int_set_si(bmap
->eq
[i
][pos1
], 1);
12428 isl_int_set_si(bmap
->eq
[i
][pos2
], 1);
12429 bmap
= isl_basic_map_finalize(bmap
);
12431 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12435 isl_basic_map_free(bmap
);
12440 /* Construct a constraint imposing that the value of the first dimension is
12441 * greater than or equal to that of the second.
12443 static __isl_give isl_constraint
*constraint_order_ge(
12444 __isl_take isl_space
*space
, enum isl_dim_type type1
, int pos1
,
12445 enum isl_dim_type type2
, int pos2
)
12452 c
= isl_constraint_alloc_inequality(isl_local_space_from_space(space
));
12454 if (pos1
>= isl_constraint_dim(c
, type1
))
12455 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12456 "index out of bounds", return isl_constraint_free(c
));
12457 if (pos2
>= isl_constraint_dim(c
, type2
))
12458 isl_die(isl_constraint_get_ctx(c
), isl_error_invalid
,
12459 "index out of bounds", return isl_constraint_free(c
));
12461 if (type1
== type2
&& pos1
== pos2
)
12464 c
= isl_constraint_set_coefficient_si(c
, type1
, pos1
, 1);
12465 c
= isl_constraint_set_coefficient_si(c
, type2
, pos2
, -1);
12470 /* Add a constraint imposing that the value of the first dimension is
12471 * greater than or equal to that of the second.
12473 __isl_give isl_basic_map
*isl_basic_map_order_ge(__isl_take isl_basic_map
*bmap
,
12474 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12479 if (type1
== type2
&& pos1
== pos2
)
12481 space
= isl_basic_map_get_space(bmap
);
12482 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12483 bmap
= isl_basic_map_add_constraint(bmap
, c
);
12488 /* Add a constraint imposing that the value of the first dimension is
12489 * greater than or equal to that of the second.
12491 __isl_give isl_map
*isl_map_order_ge(__isl_take isl_map
*map
,
12492 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12497 if (type1
== type2
&& pos1
== pos2
)
12499 space
= isl_map_get_space(map
);
12500 c
= constraint_order_ge(space
, type1
, pos1
, type2
, pos2
);
12501 map
= isl_map_add_constraint(map
, c
);
12506 /* Add a constraint imposing that the value of the first dimension is
12507 * less than or equal to that of the second.
12509 __isl_give isl_map
*isl_map_order_le(__isl_take isl_map
*map
,
12510 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12512 return isl_map_order_ge(map
, type2
, pos2
, type1
, pos1
);
12515 /* Construct a basic map where the value of the first dimension is
12516 * greater than that of the second.
12518 static __isl_give isl_basic_map
*greator(__isl_take isl_space
*space
,
12519 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12521 isl_basic_map
*bmap
= NULL
;
12527 if (pos1
>= isl_space_dim(space
, type1
))
12528 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12529 "index out of bounds", goto error
);
12530 if (pos2
>= isl_space_dim(space
, type2
))
12531 isl_die(isl_space_get_ctx(space
), isl_error_invalid
,
12532 "index out of bounds", goto error
);
12534 if (type1
== type2
&& pos1
== pos2
)
12535 return isl_basic_map_empty(space
);
12537 bmap
= isl_basic_map_alloc_space(space
, 0, 0, 1);
12538 i
= isl_basic_map_alloc_inequality(bmap
);
12540 return isl_basic_map_free(bmap
);
12541 isl_seq_clr(bmap
->ineq
[i
], 1 + isl_basic_map_total_dim(bmap
));
12542 pos1
+= isl_basic_map_offset(bmap
, type1
);
12543 pos2
+= isl_basic_map_offset(bmap
, type2
);
12544 isl_int_set_si(bmap
->ineq
[i
][pos1
], 1);
12545 isl_int_set_si(bmap
->ineq
[i
][pos2
], -1);
12546 isl_int_set_si(bmap
->ineq
[i
][0], -1);
12547 bmap
= isl_basic_map_finalize(bmap
);
12551 isl_space_free(space
);
12552 isl_basic_map_free(bmap
);
12556 /* Add a constraint imposing that the value of the first dimension is
12557 * greater than that of the second.
12559 __isl_give isl_basic_map
*isl_basic_map_order_gt(__isl_take isl_basic_map
*bmap
,
12560 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12564 gt
= greator(isl_basic_map_get_space(bmap
), type1
, pos1
, type2
, pos2
);
12566 bmap
= isl_basic_map_intersect(bmap
, gt
);
12571 /* Add a constraint imposing that the value of the first dimension is
12572 * greater than that of the second.
12574 __isl_give isl_map
*isl_map_order_gt(__isl_take isl_map
*map
,
12575 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12577 isl_basic_map
*bmap
;
12579 bmap
= greator(isl_map_get_space(map
), type1
, pos1
, type2
, pos2
);
12581 map
= isl_map_intersect(map
, isl_map_from_basic_map(bmap
));
12586 /* Add a constraint imposing that the value of the first dimension is
12587 * smaller than that of the second.
12589 __isl_give isl_map
*isl_map_order_lt(__isl_take isl_map
*map
,
12590 enum isl_dim_type type1
, int pos1
, enum isl_dim_type type2
, int pos2
)
12592 return isl_map_order_gt(map
, type2
, pos2
, type1
, pos1
);
12595 __isl_give isl_aff
*isl_basic_map_get_div(__isl_keep isl_basic_map
*bmap
,
12599 isl_local_space
*ls
;
12604 if (!isl_basic_map_divs_known(bmap
))
12605 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12606 "some divs are unknown", return NULL
);
12608 ls
= isl_basic_map_get_local_space(bmap
);
12609 div
= isl_local_space_get_div(ls
, pos
);
12610 isl_local_space_free(ls
);
12615 __isl_give isl_aff
*isl_basic_set_get_div(__isl_keep isl_basic_set
*bset
,
12618 return isl_basic_map_get_div(bset
, pos
);
12621 /* Plug in "subs" for dimension "type", "pos" of "bset".
12623 * Let i be the dimension to replace and let "subs" be of the form
12627 * Any integer division with a non-zero coefficient for i,
12629 * floor((a i + g)/m)
12633 * floor((a f + d g)/(m d))
12635 * Constraints of the form
12643 * We currently require that "subs" is an integral expression.
12644 * Handling rational expressions may require us to add stride constraints
12645 * as we do in isl_basic_set_preimage_multi_aff.
12647 __isl_give isl_basic_set
*isl_basic_set_substitute(
12648 __isl_take isl_basic_set
*bset
,
12649 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12655 if (bset
&& isl_basic_set_plain_is_empty(bset
))
12658 bset
= isl_basic_set_cow(bset
);
12659 if (!bset
|| !subs
)
12662 ctx
= isl_basic_set_get_ctx(bset
);
12663 if (!isl_space_is_equal(bset
->dim
, subs
->ls
->dim
))
12664 isl_die(ctx
, isl_error_invalid
,
12665 "spaces don't match", goto error
);
12666 if (isl_local_space_dim(subs
->ls
, isl_dim_div
) != 0)
12667 isl_die(ctx
, isl_error_unsupported
,
12668 "cannot handle divs yet", goto error
);
12669 if (!isl_int_is_one(subs
->v
->el
[0]))
12670 isl_die(ctx
, isl_error_invalid
,
12671 "can only substitute integer expressions", goto error
);
12673 pos
+= isl_basic_set_offset(bset
, type
);
12677 for (i
= 0; i
< bset
->n_eq
; ++i
) {
12678 if (isl_int_is_zero(bset
->eq
[i
][pos
]))
12680 isl_int_set(v
, bset
->eq
[i
][pos
]);
12681 isl_int_set_si(bset
->eq
[i
][pos
], 0);
12682 isl_seq_combine(bset
->eq
[i
], subs
->v
->el
[0], bset
->eq
[i
],
12683 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12686 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
12687 if (isl_int_is_zero(bset
->ineq
[i
][pos
]))
12689 isl_int_set(v
, bset
->ineq
[i
][pos
]);
12690 isl_int_set_si(bset
->ineq
[i
][pos
], 0);
12691 isl_seq_combine(bset
->ineq
[i
], subs
->v
->el
[0], bset
->ineq
[i
],
12692 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12695 for (i
= 0; i
< bset
->n_div
; ++i
) {
12696 if (isl_int_is_zero(bset
->div
[i
][1 + pos
]))
12698 isl_int_set(v
, bset
->div
[i
][1 + pos
]);
12699 isl_int_set_si(bset
->div
[i
][1 + pos
], 0);
12700 isl_seq_combine(bset
->div
[i
] + 1,
12701 subs
->v
->el
[0], bset
->div
[i
] + 1,
12702 v
, subs
->v
->el
+ 1, subs
->v
->size
- 1);
12703 isl_int_mul(bset
->div
[i
][0], bset
->div
[i
][0], subs
->v
->el
[0]);
12708 bset
= isl_basic_set_simplify(bset
);
12709 return isl_basic_set_finalize(bset
);
12711 isl_basic_set_free(bset
);
12715 /* Plug in "subs" for dimension "type", "pos" of "set".
12717 __isl_give isl_set
*isl_set_substitute(__isl_take isl_set
*set
,
12718 enum isl_dim_type type
, unsigned pos
, __isl_keep isl_aff
*subs
)
12722 if (set
&& isl_set_plain_is_empty(set
))
12725 set
= isl_set_cow(set
);
12729 for (i
= set
->n
- 1; i
>= 0; --i
) {
12730 set
->p
[i
] = isl_basic_set_substitute(set
->p
[i
], type
, pos
, subs
);
12731 set
= set_from_map(remove_if_empty(set_to_map(set
), i
));
12742 /* Check if the range of "ma" is compatible with the domain or range
12743 * (depending on "type") of "bmap".
12745 static isl_stat
check_basic_map_compatible_range_multi_aff(
12746 __isl_keep isl_basic_map
*bmap
, enum isl_dim_type type
,
12747 __isl_keep isl_multi_aff
*ma
)
12750 isl_space
*ma_space
;
12752 ma_space
= isl_multi_aff_get_space(ma
);
12754 m
= isl_space_has_equal_params(bmap
->dim
, ma_space
);
12758 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12759 "parameters don't match", goto error
);
12760 m
= isl_space_tuple_is_equal(bmap
->dim
, type
, ma_space
, isl_dim_out
);
12764 isl_die(isl_basic_map_get_ctx(bmap
), isl_error_invalid
,
12765 "spaces don't match", goto error
);
12767 isl_space_free(ma_space
);
12768 return isl_stat_ok
;
12770 isl_space_free(ma_space
);
12771 return isl_stat_error
;
12774 /* Copy the divs from "ma" to "bmap", adding zeros for the "n_before"
12775 * coefficients before the transformed range of dimensions,
12776 * the "n_after" coefficients after the transformed range of dimensions
12777 * and the coefficients of the other divs in "bmap".
12779 static int set_ma_divs(__isl_keep isl_basic_map
*bmap
,
12780 __isl_keep isl_multi_aff
*ma
, int n_before
, int n_after
, int n_div
)
12785 isl_local_space
*ls
;
12790 ls
= isl_aff_get_domain_local_space(ma
->u
.p
[0]);
12794 n_param
= isl_local_space_dim(ls
, isl_dim_param
);
12795 n_set
= isl_local_space_dim(ls
, isl_dim_set
);
12796 for (i
= 0; i
< n_div
; ++i
) {
12797 int o_bmap
= 0, o_ls
= 0;
12799 isl_seq_cpy(bmap
->div
[i
], ls
->div
->row
[i
], 1 + 1 + n_param
);
12800 o_bmap
+= 1 + 1 + n_param
;
12801 o_ls
+= 1 + 1 + n_param
;
12802 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_before
);
12803 o_bmap
+= n_before
;
12804 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12805 ls
->div
->row
[i
] + o_ls
, n_set
);
12808 isl_seq_clr(bmap
->div
[i
] + o_bmap
, n_after
);
12810 isl_seq_cpy(bmap
->div
[i
] + o_bmap
,
12811 ls
->div
->row
[i
] + o_ls
, n_div
);
12814 isl_seq_clr(bmap
->div
[i
] + o_bmap
, bmap
->n_div
- n_div
);
12815 if (isl_basic_map_add_div_constraints(bmap
, i
) < 0)
12819 isl_local_space_free(ls
);
12822 isl_local_space_free(ls
);
12826 /* How many stride constraints does "ma" enforce?
12827 * That is, how many of the affine expressions have a denominator
12828 * different from one?
12830 static int multi_aff_strides(__isl_keep isl_multi_aff
*ma
)
12835 for (i
= 0; i
< ma
->n
; ++i
)
12836 if (!isl_int_is_one(ma
->u
.p
[i
]->v
->el
[0]))
12842 /* For each affine expression in ma of the form
12844 * x_i = (f_i y + h_i)/m_i
12846 * with m_i different from one, add a constraint to "bmap"
12849 * f_i y + h_i = m_i alpha_i
12851 * with alpha_i an additional existentially quantified variable.
12853 * The input variables of "ma" correspond to a subset of the variables
12854 * of "bmap". There are "n_before" variables in "bmap" before this
12855 * subset and "n_after" variables after this subset.
12856 * The integer divisions of the affine expressions in "ma" are assumed
12857 * to have been aligned. There are "n_div_ma" of them and
12858 * they appear first in "bmap", straight after the "n_after" variables.
12860 static __isl_give isl_basic_map
*add_ma_strides(
12861 __isl_take isl_basic_map
*bmap
, __isl_keep isl_multi_aff
*ma
,
12862 int n_before
, int n_after
, int n_div_ma
)
12870 total
= isl_basic_map_total_dim(bmap
);
12871 n_param
= isl_multi_aff_dim(ma
, isl_dim_param
);
12872 n_in
= isl_multi_aff_dim(ma
, isl_dim_in
);
12873 for (i
= 0; i
< ma
->n
; ++i
) {
12874 int o_bmap
= 0, o_ma
= 1;
12876 if (isl_int_is_one(ma
->u
.p
[i
]->v
->el
[0]))
12878 div
= isl_basic_map_alloc_div(bmap
);
12879 k
= isl_basic_map_alloc_equality(bmap
);
12880 if (div
< 0 || k
< 0)
12882 isl_int_set_si(bmap
->div
[div
][0], 0);
12883 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12884 ma
->u
.p
[i
]->v
->el
+ o_ma
, 1 + n_param
);
12885 o_bmap
+= 1 + n_param
;
12886 o_ma
+= 1 + n_param
;
12887 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_before
);
12888 o_bmap
+= n_before
;
12889 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12890 ma
->u
.p
[i
]->v
->el
+ o_ma
, n_in
);
12893 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, n_after
);
12895 isl_seq_cpy(bmap
->eq
[k
] + o_bmap
,
12896 ma
->u
.p
[i
]->v
->el
+ o_ma
, n_div_ma
);
12897 o_bmap
+= n_div_ma
;
12899 isl_seq_clr(bmap
->eq
[k
] + o_bmap
, 1 + total
- o_bmap
);
12900 isl_int_neg(bmap
->eq
[k
][1 + total
], ma
->u
.p
[i
]->v
->el
[0]);
12906 isl_basic_map_free(bmap
);
12910 /* Replace the domain or range space (depending on "type) of "space" by "set".
12912 static __isl_give isl_space
*isl_space_set(__isl_take isl_space
*space
,
12913 enum isl_dim_type type
, __isl_take isl_space
*set
)
12915 if (type
== isl_dim_in
) {
12916 space
= isl_space_range(space
);
12917 space
= isl_space_map_from_domain_and_range(set
, space
);
12919 space
= isl_space_domain(space
);
12920 space
= isl_space_map_from_domain_and_range(space
, set
);
12926 /* Compute the preimage of the domain or range (depending on "type")
12927 * of "bmap" under the function represented by "ma".
12928 * In other words, plug in "ma" in the domain or range of "bmap".
12929 * The result is a basic map that lives in the same space as "bmap"
12930 * except that the domain or range has been replaced by
12931 * the domain space of "ma".
12933 * If bmap is represented by
12935 * A(p) + S u + B x + T v + C(divs) >= 0,
12937 * where u and x are input and output dimensions if type == isl_dim_out
12938 * while x and v are input and output dimensions if type == isl_dim_in,
12939 * and ma is represented by
12941 * x = D(p) + F(y) + G(divs')
12943 * then the result is
12945 * A(p) + B D(p) + S u + B F(y) + T v + B G(divs') + C(divs) >= 0
12947 * The divs in the input set are similarly adjusted.
12950 * floor((a_i(p) + s u + b_i x + t v + c_i(divs))/n_i)
12954 * floor((a_i(p) + b_i D(p) + s u + b_i F(y) + t v +
12955 * B_i G(divs') + c_i(divs))/n_i)
12957 * If bmap is not a rational map and if F(y) involves any denominators
12959 * x_i = (f_i y + h_i)/m_i
12961 * then additional constraints are added to ensure that we only
12962 * map back integer points. That is we enforce
12964 * f_i y + h_i = m_i alpha_i
12966 * with alpha_i an additional existentially quantified variable.
12968 * We first copy over the divs from "ma".
12969 * Then we add the modified constraints and divs from "bmap".
12970 * Finally, we add the stride constraints, if needed.
12972 __isl_give isl_basic_map
*isl_basic_map_preimage_multi_aff(
12973 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
,
12974 __isl_take isl_multi_aff
*ma
)
12978 isl_basic_map
*res
= NULL
;
12979 int n_before
, n_after
, n_div_bmap
, n_div_ma
;
12980 isl_int f
, c1
, c2
, g
;
12989 ma
= isl_multi_aff_align_divs(ma
);
12992 if (check_basic_map_compatible_range_multi_aff(bmap
, type
, ma
) < 0)
12995 if (type
== isl_dim_in
) {
12997 n_after
= isl_basic_map_dim(bmap
, isl_dim_out
);
12999 n_before
= isl_basic_map_dim(bmap
, isl_dim_in
);
13002 n_div_bmap
= isl_basic_map_dim(bmap
, isl_dim_div
);
13003 n_div_ma
= ma
->n
? isl_aff_dim(ma
->u
.p
[0], isl_dim_div
) : 0;
13005 space
= isl_multi_aff_get_domain_space(ma
);
13006 space
= isl_space_set(isl_basic_map_get_space(bmap
), type
, space
);
13007 rational
= isl_basic_map_is_rational(bmap
);
13008 strides
= rational
? 0 : multi_aff_strides(ma
);
13009 res
= isl_basic_map_alloc_space(space
, n_div_ma
+ n_div_bmap
+ strides
,
13010 bmap
->n_eq
+ strides
, bmap
->n_ineq
+ 2 * n_div_ma
);
13012 res
= isl_basic_map_set_rational(res
);
13014 for (i
= 0; i
< n_div_ma
+ n_div_bmap
; ++i
)
13015 if (isl_basic_map_alloc_div(res
) < 0)
13018 if (set_ma_divs(res
, ma
, n_before
, n_after
, n_div_ma
) < 0)
13021 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
13022 k
= isl_basic_map_alloc_equality(res
);
13025 isl_seq_preimage(res
->eq
[k
], bmap
->eq
[i
], ma
, n_before
,
13026 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13029 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
13030 k
= isl_basic_map_alloc_inequality(res
);
13033 isl_seq_preimage(res
->ineq
[k
], bmap
->ineq
[i
], ma
, n_before
,
13034 n_after
, n_div_ma
, n_div_bmap
, f
, c1
, c2
, g
, 0);
13037 for (i
= 0; i
< bmap
->n_div
; ++i
) {
13038 if (isl_int_is_zero(bmap
->div
[i
][0])) {
13039 isl_int_set_si(res
->div
[n_div_ma
+ i
][0], 0);
13042 isl_seq_preimage(res
->div
[n_div_ma
+ i
], bmap
->div
[i
], ma
,
13043 n_before
, n_after
, n_div_ma
, n_div_bmap
,
13048 res
= add_ma_strides(res
, ma
, n_before
, n_after
, n_div_ma
);
13054 isl_basic_map_free(bmap
);
13055 isl_multi_aff_free(ma
);
13056 res
= isl_basic_map_simplify(res
);
13057 return isl_basic_map_finalize(res
);
13063 isl_basic_map_free(bmap
);
13064 isl_multi_aff_free(ma
);
13065 isl_basic_map_free(res
);
13069 /* Compute the preimage of "bset" under the function represented by "ma".
13070 * In other words, plug in "ma" in "bset". The result is a basic set
13071 * that lives in the domain space of "ma".
13073 __isl_give isl_basic_set
*isl_basic_set_preimage_multi_aff(
13074 __isl_take isl_basic_set
*bset
, __isl_take isl_multi_aff
*ma
)
13076 return isl_basic_map_preimage_multi_aff(bset
, isl_dim_set
, ma
);
13079 /* Compute the preimage of the domain of "bmap" under the function
13080 * represented by "ma".
13081 * In other words, plug in "ma" in the domain of "bmap".
13082 * The result is a basic map that lives in the same space as "bmap"
13083 * except that the domain has been replaced by the domain space of "ma".
13085 __isl_give isl_basic_map
*isl_basic_map_preimage_domain_multi_aff(
13086 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13088 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_in
, ma
);
13091 /* Compute the preimage of the range of "bmap" under the function
13092 * represented by "ma".
13093 * In other words, plug in "ma" in the range of "bmap".
13094 * The result is a basic map that lives in the same space as "bmap"
13095 * except that the range has been replaced by the domain space of "ma".
13097 __isl_give isl_basic_map
*isl_basic_map_preimage_range_multi_aff(
13098 __isl_take isl_basic_map
*bmap
, __isl_take isl_multi_aff
*ma
)
13100 return isl_basic_map_preimage_multi_aff(bmap
, isl_dim_out
, ma
);
13103 /* Check if the range of "ma" is compatible with the domain or range
13104 * (depending on "type") of "map".
13105 * Return isl_stat_error if anything is wrong.
13107 static isl_stat
check_map_compatible_range_multi_aff(
13108 __isl_keep isl_map
*map
, enum isl_dim_type type
,
13109 __isl_keep isl_multi_aff
*ma
)
13112 isl_space
*ma_space
;
13114 ma_space
= isl_multi_aff_get_space(ma
);
13115 m
= isl_space_tuple_is_equal(map
->dim
, type
, ma_space
, isl_dim_out
);
13116 isl_space_free(ma_space
);
13118 return isl_stat_error
;
13120 isl_die(isl_map_get_ctx(map
), isl_error_invalid
,
13121 "spaces don't match", return isl_stat_error
);
13122 return isl_stat_ok
;
13125 /* Compute the preimage of the domain or range (depending on "type")
13126 * of "map" under the function represented by "ma".
13127 * In other words, plug in "ma" in the domain or range of "map".
13128 * The result is a map that lives in the same space as "map"
13129 * except that the domain or range has been replaced by
13130 * the domain space of "ma".
13132 * The parameters are assumed to have been aligned.
13134 static __isl_give isl_map
*map_preimage_multi_aff(__isl_take isl_map
*map
,
13135 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13140 map
= isl_map_cow(map
);
13141 ma
= isl_multi_aff_align_divs(ma
);
13144 if (check_map_compatible_range_multi_aff(map
, type
, ma
) < 0)
13147 for (i
= 0; i
< map
->n
; ++i
) {
13148 map
->p
[i
] = isl_basic_map_preimage_multi_aff(map
->p
[i
], type
,
13149 isl_multi_aff_copy(ma
));
13154 space
= isl_multi_aff_get_domain_space(ma
);
13155 space
= isl_space_set(isl_map_get_space(map
), type
, space
);
13157 isl_space_free(map
->dim
);
13162 isl_multi_aff_free(ma
);
13164 ISL_F_CLR(map
, ISL_MAP_DISJOINT
);
13165 ISL_F_CLR(map
, ISL_SET_NORMALIZED
);
13168 isl_multi_aff_free(ma
);
13173 /* Compute the preimage of the domain or range (depending on "type")
13174 * of "map" under the function represented by "ma".
13175 * In other words, plug in "ma" in the domain or range of "map".
13176 * The result is a map that lives in the same space as "map"
13177 * except that the domain or range has been replaced by
13178 * the domain space of "ma".
13180 __isl_give isl_map
*isl_map_preimage_multi_aff(__isl_take isl_map
*map
,
13181 enum isl_dim_type type
, __isl_take isl_multi_aff
*ma
)
13188 aligned
= isl_map_space_has_equal_params(map
, ma
->space
);
13192 return map_preimage_multi_aff(map
, type
, ma
);
13194 if (isl_map_check_named_params(map
) < 0)
13196 if (!isl_space_has_named_params(ma
->space
))
13197 isl_die(map
->ctx
, isl_error_invalid
,
13198 "unaligned unnamed parameters", goto error
);
13199 map
= isl_map_align_params(map
, isl_multi_aff_get_space(ma
));
13200 ma
= isl_multi_aff_align_params(ma
, isl_map_get_space(map
));
13202 return map_preimage_multi_aff(map
, type
, ma
);
13204 isl_multi_aff_free(ma
);
13205 return isl_map_free(map
);
13208 /* Compute the preimage of "set" under the function represented by "ma".
13209 * In other words, plug in "ma" in "set". The result is a set
13210 * that lives in the domain space of "ma".
13212 __isl_give isl_set
*isl_set_preimage_multi_aff(__isl_take isl_set
*set
,
13213 __isl_take isl_multi_aff
*ma
)
13215 return isl_map_preimage_multi_aff(set
, isl_dim_set
, ma
);
13218 /* Compute the preimage of the domain of "map" under the function
13219 * represented by "ma".
13220 * In other words, plug in "ma" in the domain of "map".
13221 * The result is a map that lives in the same space as "map"
13222 * except that the domain has been replaced by the domain space of "ma".
13224 __isl_give isl_map
*isl_map_preimage_domain_multi_aff(__isl_take isl_map
*map
,
13225 __isl_take isl_multi_aff
*ma
)
13227 return isl_map_preimage_multi_aff(map
, isl_dim_in
, ma
);
13230 /* Compute the preimage of the range of "map" under the function
13231 * represented by "ma".
13232 * In other words, plug in "ma" in the range of "map".
13233 * The result is a map that lives in the same space as "map"
13234 * except that the range has been replaced by the domain space of "ma".
13236 __isl_give isl_map
*isl_map_preimage_range_multi_aff(__isl_take isl_map
*map
,
13237 __isl_take isl_multi_aff
*ma
)
13239 return isl_map_preimage_multi_aff(map
, isl_dim_out
, ma
);
13242 /* Compute the preimage of "map" under the function represented by "pma".
13243 * In other words, plug in "pma" in the domain or range of "map".
13244 * The result is a map that lives in the same space as "map",
13245 * except that the space of type "type" has been replaced by
13246 * the domain space of "pma".
13248 * The parameters of "map" and "pma" are assumed to have been aligned.
13250 static __isl_give isl_map
*isl_map_preimage_pw_multi_aff_aligned(
13251 __isl_take isl_map
*map
, enum isl_dim_type type
,
13252 __isl_take isl_pw_multi_aff
*pma
)
13261 isl_pw_multi_aff_free(pma
);
13262 res
= isl_map_empty(isl_map_get_space(map
));
13267 res
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13268 isl_multi_aff_copy(pma
->p
[0].maff
));
13269 if (type
== isl_dim_in
)
13270 res
= isl_map_intersect_domain(res
,
13271 isl_map_copy(pma
->p
[0].set
));
13273 res
= isl_map_intersect_range(res
,
13274 isl_map_copy(pma
->p
[0].set
));
13276 for (i
= 1; i
< pma
->n
; ++i
) {
13279 res_i
= isl_map_preimage_multi_aff(isl_map_copy(map
), type
,
13280 isl_multi_aff_copy(pma
->p
[i
].maff
));
13281 if (type
== isl_dim_in
)
13282 res_i
= isl_map_intersect_domain(res_i
,
13283 isl_map_copy(pma
->p
[i
].set
));
13285 res_i
= isl_map_intersect_range(res_i
,
13286 isl_map_copy(pma
->p
[i
].set
));
13287 res
= isl_map_union(res
, res_i
);
13290 isl_pw_multi_aff_free(pma
);
13294 isl_pw_multi_aff_free(pma
);
13299 /* Compute the preimage of "map" under the function represented by "pma".
13300 * In other words, plug in "pma" in the domain or range of "map".
13301 * The result is a map that lives in the same space as "map",
13302 * except that the space of type "type" has been replaced by
13303 * the domain space of "pma".
13305 __isl_give isl_map
*isl_map_preimage_pw_multi_aff(__isl_take isl_map
*map
,
13306 enum isl_dim_type type
, __isl_take isl_pw_multi_aff
*pma
)
13313 aligned
= isl_map_space_has_equal_params(map
, pma
->dim
);
13317 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13319 if (isl_map_check_named_params(map
) < 0)
13321 if (isl_pw_multi_aff_check_named_params(pma
) < 0)
13323 map
= isl_map_align_params(map
, isl_pw_multi_aff_get_space(pma
));
13324 pma
= isl_pw_multi_aff_align_params(pma
, isl_map_get_space(map
));
13326 return isl_map_preimage_pw_multi_aff_aligned(map
, type
, pma
);
13328 isl_pw_multi_aff_free(pma
);
13329 return isl_map_free(map
);
13332 /* Compute the preimage of "set" under the function represented by "pma".
13333 * In other words, plug in "pma" in "set". The result is a set
13334 * that lives in the domain space of "pma".
13336 __isl_give isl_set
*isl_set_preimage_pw_multi_aff(__isl_take isl_set
*set
,
13337 __isl_take isl_pw_multi_aff
*pma
)
13339 return isl_map_preimage_pw_multi_aff(set
, isl_dim_set
, pma
);
13342 /* Compute the preimage of the domain of "map" under the function
13343 * represented by "pma".
13344 * In other words, plug in "pma" in the domain of "map".
13345 * The result is a map that lives in the same space as "map",
13346 * except that domain space has been replaced by the domain space of "pma".
13348 __isl_give isl_map
*isl_map_preimage_domain_pw_multi_aff(
13349 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13351 return isl_map_preimage_pw_multi_aff(map
, isl_dim_in
, pma
);
13354 /* Compute the preimage of the range of "map" under the function
13355 * represented by "pma".
13356 * In other words, plug in "pma" in the range of "map".
13357 * The result is a map that lives in the same space as "map",
13358 * except that range space has been replaced by the domain space of "pma".
13360 __isl_give isl_map
*isl_map_preimage_range_pw_multi_aff(
13361 __isl_take isl_map
*map
, __isl_take isl_pw_multi_aff
*pma
)
13363 return isl_map_preimage_pw_multi_aff(map
, isl_dim_out
, pma
);
13366 /* Compute the preimage of "map" under the function represented by "mpa".
13367 * In other words, plug in "mpa" in the domain or range of "map".
13368 * The result is a map that lives in the same space as "map",
13369 * except that the space of type "type" has been replaced by
13370 * the domain space of "mpa".
13372 * If the map does not involve any constraints that refer to the
13373 * dimensions of the substituted space, then the only possible
13374 * effect of "mpa" on the map is to map the space to a different space.
13375 * We create a separate isl_multi_aff to effectuate this change
13376 * in order to avoid spurious splitting of the map along the pieces
13378 * If "mpa" has a non-trivial explicit domain, however,
13379 * then the full substitution should be performed.
13381 __isl_give isl_map
*isl_map_preimage_multi_pw_aff(__isl_take isl_map
*map
,
13382 enum isl_dim_type type
, __isl_take isl_multi_pw_aff
*mpa
)
13386 isl_pw_multi_aff
*pma
;
13391 n
= isl_map_dim(map
, type
);
13392 full
= isl_map_involves_dims(map
, type
, 0, n
);
13393 if (full
>= 0 && !full
)
13394 full
= isl_multi_pw_aff_has_non_trivial_domain(mpa
);
13401 space
= isl_multi_pw_aff_get_space(mpa
);
13402 isl_multi_pw_aff_free(mpa
);
13403 ma
= isl_multi_aff_zero(space
);
13404 return isl_map_preimage_multi_aff(map
, type
, ma
);
13407 pma
= isl_pw_multi_aff_from_multi_pw_aff(mpa
);
13408 return isl_map_preimage_pw_multi_aff(map
, type
, pma
);
13411 isl_multi_pw_aff_free(mpa
);
13415 /* Compute the preimage of "map" under the function represented by "mpa".
13416 * In other words, plug in "mpa" in the domain "map".
13417 * The result is a map that lives in the same space as "map",
13418 * except that domain space has been replaced by the domain space of "mpa".
13420 __isl_give isl_map
*isl_map_preimage_domain_multi_pw_aff(
13421 __isl_take isl_map
*map
, __isl_take isl_multi_pw_aff
*mpa
)
13423 return isl_map_preimage_multi_pw_aff(map
, isl_dim_in
, mpa
);
13426 /* Compute the preimage of "set" by the function represented by "mpa".
13427 * In other words, plug in "mpa" in "set".
13429 __isl_give isl_set
*isl_set_preimage_multi_pw_aff(__isl_take isl_set
*set
,
13430 __isl_take isl_multi_pw_aff
*mpa
)
13432 return isl_map_preimage_multi_pw_aff(set
, isl_dim_set
, mpa
);
13435 /* Return a copy of the equality constraints of "bset" as a matrix.
13437 __isl_give isl_mat
*isl_basic_set_extract_equalities(
13438 __isl_keep isl_basic_set
*bset
)
13446 ctx
= isl_basic_set_get_ctx(bset
);
13447 total
= 1 + isl_basic_set_dim(bset
, isl_dim_all
);
13448 return isl_mat_sub_alloc6(ctx
, bset
->eq
, 0, bset
->n_eq
, 0, total
);
13451 /* Are the "n" "coefficients" starting at "first" of the integer division
13452 * expressions at position "pos1" in "bmap1" and "pos2" in "bmap2" equal
13454 * The "coefficient" at position 0 is the denominator.
13455 * The "coefficient" at position 1 is the constant term.
13457 isl_bool
isl_basic_map_equal_div_expr_part(__isl_keep isl_basic_map
*bmap1
,
13458 int pos1
, __isl_keep isl_basic_map
*bmap2
, int pos2
,
13459 unsigned first
, unsigned n
)
13461 if (isl_basic_map_check_range(bmap1
, isl_dim_div
, pos1
, 1) < 0)
13462 return isl_bool_error
;
13463 if (isl_basic_map_check_range(bmap2
, isl_dim_div
, pos2
, 1) < 0)
13464 return isl_bool_error
;
13465 return isl_seq_eq(bmap1
->div
[pos1
] + first
,
13466 bmap2
->div
[pos2
] + first
, n
);
13469 /* Are the integer division expressions at position "pos1" in "bmap1" and
13470 * "pos2" in "bmap2" equal to each other, except that the constant terms
13473 isl_bool
isl_basic_map_equal_div_expr_except_constant(
13474 __isl_keep isl_basic_map
*bmap1
, int pos1
,
13475 __isl_keep isl_basic_map
*bmap2
, int pos2
)
13480 if (!bmap1
|| !bmap2
)
13481 return isl_bool_error
;
13482 total
= isl_basic_map_total_dim(bmap1
);
13483 if (total
!= isl_basic_map_total_dim(bmap2
))
13484 isl_die(isl_basic_map_get_ctx(bmap1
), isl_error_invalid
,
13485 "incomparable div expressions", return isl_bool_error
);
13486 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13488 if (equal
< 0 || !equal
)
13490 equal
= isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13492 if (equal
< 0 || equal
)
13493 return isl_bool_not(equal
);
13494 return isl_basic_map_equal_div_expr_part(bmap1
, pos1
, bmap2
, pos2
,
13498 /* Replace the numerator of the constant term of the integer division
13499 * expression at position "div" in "bmap" by "value".
13500 * The caller guarantees that this does not change the meaning
13503 __isl_give isl_basic_map
*isl_basic_map_set_div_expr_constant_num_si_inplace(
13504 __isl_take isl_basic_map
*bmap
, int div
, int value
)
13506 if (isl_basic_map_check_range(bmap
, isl_dim_div
, div
, 1) < 0)
13507 return isl_basic_map_free(bmap
);
13509 isl_int_set_si(bmap
->div
[div
][1], value
);
13514 /* Is the point "inner" internal to inequality constraint "ineq"
13516 * The point is considered to be internal to the inequality constraint,
13517 * if it strictly lies on the positive side of the inequality constraint,
13518 * or if it lies on the constraint and the constraint is lexico-positive.
13520 static isl_bool
is_internal(__isl_keep isl_vec
*inner
,
13521 __isl_keep isl_basic_set
*bset
, int ineq
)
13527 if (!inner
|| !bset
)
13528 return isl_bool_error
;
13530 ctx
= isl_basic_set_get_ctx(bset
);
13531 isl_seq_inner_product(inner
->el
, bset
->ineq
[ineq
], inner
->size
,
13532 &ctx
->normalize_gcd
);
13533 if (!isl_int_is_zero(ctx
->normalize_gcd
))
13534 return isl_int_is_nonneg(ctx
->normalize_gcd
);
13536 total
= isl_basic_set_dim(bset
, isl_dim_all
);
13537 pos
= isl_seq_first_non_zero(bset
->ineq
[ineq
] + 1, total
);
13538 return isl_int_is_pos(bset
->ineq
[ineq
][1 + pos
]);
13541 /* Tighten the inequality constraints of "bset" that are outward with respect
13542 * to the point "vec".
13543 * That is, tighten the constraints that are not satisfied by "vec".
13545 * "vec" is a point internal to some superset S of "bset" that is used
13546 * to make the subsets of S disjoint, by tightening one half of the constraints
13547 * that separate two subsets. In particular, the constraints of S
13548 * are all satisfied by "vec" and should not be tightened.
13549 * Of the internal constraints, those that have "vec" on the outside
13550 * are tightened. The shared facet is included in the adjacent subset
13551 * with the opposite constraint.
13552 * For constraints that saturate "vec", this criterion cannot be used
13553 * to determine which of the two sides should be tightened.
13554 * Instead, the sign of the first non-zero coefficient is used
13555 * to make this choice. Note that this second criterion is never used
13556 * on the constraints of S since "vec" is interior to "S".
13558 __isl_give isl_basic_set
*isl_basic_set_tighten_outward(
13559 __isl_take isl_basic_set
*bset
, __isl_keep isl_vec
*vec
)
13563 bset
= isl_basic_set_cow(bset
);
13566 for (j
= 0; j
< bset
->n_ineq
; ++j
) {
13569 internal
= is_internal(vec
, bset
, j
);
13571 return isl_basic_set_free(bset
);
13574 isl_int_sub_ui(bset
->ineq
[j
][0], bset
->ineq
[j
][0], 1);
13580 /* Replace the variables x of type "type" starting at "first" in "bmap"
13581 * by x' with x = M x' with M the matrix trans.
13582 * That is, replace the corresponding coefficients c by c M.
13584 * The transformation matrix should be a square matrix.
13586 __isl_give isl_basic_map
*isl_basic_map_transform_dims(
13587 __isl_take isl_basic_map
*bmap
, enum isl_dim_type type
, unsigned first
,
13588 __isl_take isl_mat
*trans
)
13592 bmap
= isl_basic_map_cow(bmap
);
13593 if (!bmap
|| !trans
)
13596 if (trans
->n_row
!= trans
->n_col
)
13597 isl_die(trans
->ctx
, isl_error_invalid
,
13598 "expecting square transformation matrix", goto error
);
13599 if (first
+ trans
->n_row
> isl_basic_map_dim(bmap
, type
))
13600 isl_die(trans
->ctx
, isl_error_invalid
,
13601 "oversized transformation matrix", goto error
);
13603 pos
= isl_basic_map_offset(bmap
, type
) + first
;
13605 if (isl_mat_sub_transform(bmap
->eq
, bmap
->n_eq
, pos
,
13606 isl_mat_copy(trans
)) < 0)
13608 if (isl_mat_sub_transform(bmap
->ineq
, bmap
->n_ineq
, pos
,
13609 isl_mat_copy(trans
)) < 0)
13611 if (isl_mat_sub_transform(bmap
->div
, bmap
->n_div
, 1 + pos
,
13612 isl_mat_copy(trans
)) < 0)
13615 ISL_F_CLR(bmap
, ISL_BASIC_MAP_SORTED
);
13616 ISL_F_CLR(bmap
, ISL_BASIC_MAP_NORMALIZED_DIVS
);
13618 isl_mat_free(trans
);
13621 isl_mat_free(trans
);
13622 isl_basic_map_free(bmap
);
13626 /* Replace the variables x of type "type" starting at "first" in "bset"
13627 * by x' with x = M x' with M the matrix trans.
13628 * That is, replace the corresponding coefficients c by c M.
13630 * The transformation matrix should be a square matrix.
13632 __isl_give isl_basic_set
*isl_basic_set_transform_dims(
13633 __isl_take isl_basic_set
*bset
, enum isl_dim_type type
, unsigned first
,
13634 __isl_take isl_mat
*trans
)
13636 return isl_basic_map_transform_dims(bset
, type
, first
, trans
);