configure.ac: link against same LLVM components as libclang.so
[isl.git] / isl_map.c
blobd238b6acc0b54b65925ea5299be4b553b8176e71
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
4 * Copyright 2012 Ecole Normale Superieure
6 * Use of this software is governed by the GNU LGPLv2.1 license
8 * Written by Sven Verdoolaege, K.U.Leuven, Departement
9 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
11 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
12 * and Ecole Normale Superieure, 45 rue d’Ulm, 75230 Paris, France
15 #include <string.h>
16 #include <isl_ctx_private.h>
17 #include <isl_map_private.h>
18 #include <isl/blk.h>
19 #include "isl_space_private.h"
20 #include "isl_equalities.h"
21 #include <isl_list_private.h>
22 #include <isl/lp.h>
23 #include <isl/seq.h>
24 #include <isl/set.h>
25 #include <isl/map.h>
26 #include "isl_map_piplib.h"
27 #include <isl_reordering.h>
28 #include "isl_sample.h"
29 #include "isl_tab.h"
30 #include <isl/vec.h>
31 #include <isl_mat_private.h>
32 #include <isl_dim_map.h>
33 #include <isl_local_space_private.h>
34 #include <isl_aff_private.h>
35 #include <isl_options_private.h>
37 static unsigned n(__isl_keep isl_space *dim, enum isl_dim_type type)
39 switch (type) {
40 case isl_dim_param: return dim->nparam;
41 case isl_dim_in: return dim->n_in;
42 case isl_dim_out: return dim->n_out;
43 case isl_dim_all: return dim->nparam + dim->n_in + dim->n_out;
44 default: return 0;
48 static unsigned pos(__isl_keep isl_space *dim, enum isl_dim_type type)
50 switch (type) {
51 case isl_dim_param: return 1;
52 case isl_dim_in: return 1 + dim->nparam;
53 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
54 default: return 0;
58 unsigned isl_basic_map_dim(__isl_keep isl_basic_map *bmap,
59 enum isl_dim_type type)
61 if (!bmap)
62 return 0;
63 switch (type) {
64 case isl_dim_cst: return 1;
65 case isl_dim_param:
66 case isl_dim_in:
67 case isl_dim_out: return isl_space_dim(bmap->dim, type);
68 case isl_dim_div: return bmap->n_div;
69 case isl_dim_all: return isl_basic_map_total_dim(bmap);
70 default: return 0;
74 unsigned isl_map_dim(__isl_keep isl_map *map, enum isl_dim_type type)
76 return map ? n(map->dim, type) : 0;
79 unsigned isl_set_dim(__isl_keep isl_set *set, enum isl_dim_type type)
81 return set ? n(set->dim, type) : 0;
84 unsigned isl_basic_map_offset(struct isl_basic_map *bmap,
85 enum isl_dim_type type)
87 isl_space *dim = bmap->dim;
88 switch (type) {
89 case isl_dim_cst: return 0;
90 case isl_dim_param: return 1;
91 case isl_dim_in: return 1 + dim->nparam;
92 case isl_dim_out: return 1 + dim->nparam + dim->n_in;
93 case isl_dim_div: return 1 + dim->nparam + dim->n_in + dim->n_out;
94 default: return 0;
98 unsigned isl_basic_set_offset(struct isl_basic_set *bset,
99 enum isl_dim_type type)
101 return isl_basic_map_offset(bset, type);
104 static unsigned map_offset(struct isl_map *map, enum isl_dim_type type)
106 return pos(map->dim, type);
109 unsigned isl_basic_set_dim(__isl_keep isl_basic_set *bset,
110 enum isl_dim_type type)
112 return isl_basic_map_dim(bset, type);
115 unsigned isl_basic_set_n_dim(__isl_keep isl_basic_set *bset)
117 return isl_basic_set_dim(bset, isl_dim_set);
120 unsigned isl_basic_set_n_param(__isl_keep isl_basic_set *bset)
122 return isl_basic_set_dim(bset, isl_dim_param);
125 unsigned isl_basic_set_total_dim(const struct isl_basic_set *bset)
127 if (!bset)
128 return 0;
129 return isl_space_dim(bset->dim, isl_dim_all) + bset->n_div;
132 unsigned isl_set_n_dim(__isl_keep isl_set *set)
134 return isl_set_dim(set, isl_dim_set);
137 unsigned isl_set_n_param(__isl_keep isl_set *set)
139 return isl_set_dim(set, isl_dim_param);
142 unsigned isl_basic_map_n_in(const struct isl_basic_map *bmap)
144 return bmap ? bmap->dim->n_in : 0;
147 unsigned isl_basic_map_n_out(const struct isl_basic_map *bmap)
149 return bmap ? bmap->dim->n_out : 0;
152 unsigned isl_basic_map_n_param(const struct isl_basic_map *bmap)
154 return bmap ? bmap->dim->nparam : 0;
157 unsigned isl_basic_map_n_div(const struct isl_basic_map *bmap)
159 return bmap ? bmap->n_div : 0;
162 unsigned isl_basic_map_total_dim(const struct isl_basic_map *bmap)
164 return bmap ? isl_space_dim(bmap->dim, isl_dim_all) + bmap->n_div : 0;
167 unsigned isl_map_n_in(const struct isl_map *map)
169 return map ? map->dim->n_in : 0;
172 unsigned isl_map_n_out(const struct isl_map *map)
174 return map ? map->dim->n_out : 0;
177 unsigned isl_map_n_param(const struct isl_map *map)
179 return map ? map->dim->nparam : 0;
182 int isl_map_compatible_domain(struct isl_map *map, struct isl_set *set)
184 int m;
185 if (!map || !set)
186 return -1;
187 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
188 if (m < 0 || !m)
189 return m;
190 return isl_space_tuple_match(map->dim, isl_dim_in, set->dim, isl_dim_set);
193 int isl_basic_map_compatible_domain(struct isl_basic_map *bmap,
194 struct isl_basic_set *bset)
196 int m;
197 if (!bmap || !bset)
198 return -1;
199 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
200 if (m < 0 || !m)
201 return m;
202 return isl_space_tuple_match(bmap->dim, isl_dim_in, bset->dim, isl_dim_set);
205 int isl_map_compatible_range(__isl_keep isl_map *map, __isl_keep isl_set *set)
207 int m;
208 if (!map || !set)
209 return -1;
210 m = isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param);
211 if (m < 0 || !m)
212 return m;
213 return isl_space_tuple_match(map->dim, isl_dim_out, set->dim, isl_dim_set);
216 int isl_basic_map_compatible_range(struct isl_basic_map *bmap,
217 struct isl_basic_set *bset)
219 int m;
220 if (!bmap || !bset)
221 return -1;
222 m = isl_space_match(bmap->dim, isl_dim_param, bset->dim, isl_dim_param);
223 if (m < 0 || !m)
224 return m;
225 return isl_space_tuple_match(bmap->dim, isl_dim_out, bset->dim, isl_dim_set);
228 isl_ctx *isl_basic_map_get_ctx(__isl_keep isl_basic_map *bmap)
230 return bmap ? bmap->ctx : NULL;
233 isl_ctx *isl_basic_set_get_ctx(__isl_keep isl_basic_set *bset)
235 return bset ? bset->ctx : NULL;
238 isl_ctx *isl_map_get_ctx(__isl_keep isl_map *map)
240 return map ? map->ctx : NULL;
243 isl_ctx *isl_set_get_ctx(__isl_keep isl_set *set)
245 return set ? set->ctx : NULL;
248 __isl_give isl_space *isl_basic_map_get_space(__isl_keep isl_basic_map *bmap)
250 if (!bmap)
251 return NULL;
252 return isl_space_copy(bmap->dim);
255 __isl_give isl_space *isl_basic_set_get_space(__isl_keep isl_basic_set *bset)
257 if (!bset)
258 return NULL;
259 return isl_space_copy(bset->dim);
262 /* Extract the divs in "bmap" as a matrix.
264 __isl_give isl_mat *isl_basic_map_get_divs(__isl_keep isl_basic_map *bmap)
266 int i;
267 isl_ctx *ctx;
268 isl_mat *div;
269 unsigned total;
270 unsigned cols;
272 if (!bmap)
273 return NULL;
275 ctx = isl_basic_map_get_ctx(bmap);
276 total = isl_space_dim(bmap->dim, isl_dim_all);
277 cols = 1 + 1 + total + bmap->n_div;
278 div = isl_mat_alloc(ctx, bmap->n_div, cols);
279 if (!div)
280 return NULL;
282 for (i = 0; i < bmap->n_div; ++i)
283 isl_seq_cpy(div->row[i], bmap->div[i], cols);
285 return div;
288 __isl_give isl_local_space *isl_basic_map_get_local_space(
289 __isl_keep isl_basic_map *bmap)
291 isl_mat *div;
293 if (!bmap)
294 return NULL;
296 div = isl_basic_map_get_divs(bmap);
297 return isl_local_space_alloc_div(isl_space_copy(bmap->dim), div);
300 __isl_give isl_local_space *isl_basic_set_get_local_space(
301 __isl_keep isl_basic_set *bset)
303 return isl_basic_map_get_local_space(bset);
306 __isl_give isl_basic_map *isl_basic_map_from_local_space(
307 __isl_take isl_local_space *ls)
309 int i;
310 int n_div;
311 isl_basic_map *bmap;
313 if (!ls)
314 return NULL;
316 n_div = isl_local_space_dim(ls, isl_dim_div);
317 bmap = isl_basic_map_alloc_space(isl_local_space_get_space(ls),
318 n_div, 0, 2 * n_div);
320 for (i = 0; i < n_div; ++i)
321 if (isl_basic_map_alloc_div(bmap) < 0)
322 goto error;
324 for (i = 0; i < n_div; ++i) {
325 isl_seq_cpy(bmap->div[i], ls->div->row[i], ls->div->n_col);
326 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
327 goto error;
330 isl_local_space_free(ls);
331 return bmap;
332 error:
333 isl_local_space_free(ls);
334 isl_basic_map_free(bmap);
335 return NULL;
338 __isl_give isl_basic_set *isl_basic_set_from_local_space(
339 __isl_take isl_local_space *ls)
341 return isl_basic_map_from_local_space(ls);
344 __isl_give isl_space *isl_map_get_space(__isl_keep isl_map *map)
346 if (!map)
347 return NULL;
348 return isl_space_copy(map->dim);
351 __isl_give isl_space *isl_set_get_space(__isl_keep isl_set *set)
353 if (!set)
354 return NULL;
355 return isl_space_copy(set->dim);
358 __isl_give isl_basic_map *isl_basic_map_set_tuple_name(
359 __isl_take isl_basic_map *bmap, enum isl_dim_type type, const char *s)
361 bmap = isl_basic_map_cow(bmap);
362 if (!bmap)
363 return NULL;
364 bmap->dim = isl_space_set_tuple_name(bmap->dim, type, s);
365 if (!bmap->dim)
366 goto error;
367 bmap = isl_basic_map_finalize(bmap);
368 return bmap;
369 error:
370 isl_basic_map_free(bmap);
371 return NULL;
374 __isl_give isl_basic_set *isl_basic_set_set_tuple_name(
375 __isl_take isl_basic_set *bset, const char *s)
377 return isl_basic_map_set_tuple_name(bset, isl_dim_set, s);
380 const char *isl_basic_map_get_tuple_name(__isl_keep isl_basic_map *bmap,
381 enum isl_dim_type type)
383 return bmap ? isl_space_get_tuple_name(bmap->dim, type) : NULL;
386 __isl_give isl_map *isl_map_set_tuple_name(__isl_take isl_map *map,
387 enum isl_dim_type type, const char *s)
389 int i;
391 map = isl_map_cow(map);
392 if (!map)
393 return NULL;
395 map->dim = isl_space_set_tuple_name(map->dim, type, s);
396 if (!map->dim)
397 goto error;
399 for (i = 0; i < map->n; ++i) {
400 map->p[i] = isl_basic_map_set_tuple_name(map->p[i], type, s);
401 if (!map->p[i])
402 goto error;
405 return map;
406 error:
407 isl_map_free(map);
408 return NULL;
411 /* Does the input or output tuple have a name?
413 int isl_map_has_tuple_name(__isl_keep isl_map *map, enum isl_dim_type type)
415 return map ? isl_space_has_tuple_name(map->dim, type) : -1;
418 const char *isl_map_get_tuple_name(__isl_keep isl_map *map,
419 enum isl_dim_type type)
421 return map ? isl_space_get_tuple_name(map->dim, type) : NULL;
424 __isl_give isl_set *isl_set_set_tuple_name(__isl_take isl_set *set,
425 const char *s)
427 return (isl_set *)isl_map_set_tuple_name((isl_map *)set, isl_dim_set, s);
430 __isl_give isl_map *isl_map_set_tuple_id(__isl_take isl_map *map,
431 enum isl_dim_type type, __isl_take isl_id *id)
433 map = isl_map_cow(map);
434 if (!map)
435 return isl_id_free(id);
437 map->dim = isl_space_set_tuple_id(map->dim, type, id);
439 return isl_map_reset_space(map, isl_space_copy(map->dim));
442 __isl_give isl_set *isl_set_set_tuple_id(__isl_take isl_set *set,
443 __isl_take isl_id *id)
445 return isl_map_set_tuple_id(set, isl_dim_set, id);
448 __isl_give isl_map *isl_map_reset_tuple_id(__isl_take isl_map *map,
449 enum isl_dim_type type)
451 map = isl_map_cow(map);
452 if (!map)
453 return NULL;
455 map->dim = isl_space_reset_tuple_id(map->dim, type);
457 return isl_map_reset_space(map, isl_space_copy(map->dim));
460 __isl_give isl_set *isl_set_reset_tuple_id(__isl_take isl_set *set)
462 return isl_map_reset_tuple_id(set, isl_dim_set);
465 int isl_map_has_tuple_id(__isl_keep isl_map *map, enum isl_dim_type type)
467 return map ? isl_space_has_tuple_id(map->dim, type) : -1;
470 __isl_give isl_id *isl_map_get_tuple_id(__isl_keep isl_map *map,
471 enum isl_dim_type type)
473 return map ? isl_space_get_tuple_id(map->dim, type) : NULL;
476 int isl_set_has_tuple_id(__isl_keep isl_set *set)
478 return isl_map_has_tuple_id(set, isl_dim_set);
481 __isl_give isl_id *isl_set_get_tuple_id(__isl_keep isl_set *set)
483 return isl_map_get_tuple_id(set, isl_dim_set);
486 /* Does the set tuple have a name?
488 int isl_set_has_tuple_name(__isl_keep isl_set *set)
490 return set ? isl_space_has_tuple_name(set->dim, isl_dim_set) : -1;
494 const char *isl_basic_set_get_tuple_name(__isl_keep isl_basic_set *bset)
496 return bset ? isl_space_get_tuple_name(bset->dim, isl_dim_set) : NULL;
499 const char *isl_set_get_tuple_name(__isl_keep isl_set *set)
501 return set ? isl_space_get_tuple_name(set->dim, isl_dim_set) : NULL;
504 const char *isl_basic_map_get_dim_name(__isl_keep isl_basic_map *bmap,
505 enum isl_dim_type type, unsigned pos)
507 return bmap ? isl_space_get_dim_name(bmap->dim, type, pos) : NULL;
510 const char *isl_basic_set_get_dim_name(__isl_keep isl_basic_set *bset,
511 enum isl_dim_type type, unsigned pos)
513 return bset ? isl_space_get_dim_name(bset->dim, type, pos) : NULL;
516 /* Does the given dimension have a name?
518 int isl_map_has_dim_name(__isl_keep isl_map *map,
519 enum isl_dim_type type, unsigned pos)
521 return map ? isl_space_has_dim_name(map->dim, type, pos) : -1;
524 const char *isl_map_get_dim_name(__isl_keep isl_map *map,
525 enum isl_dim_type type, unsigned pos)
527 return map ? isl_space_get_dim_name(map->dim, type, pos) : NULL;
530 const char *isl_set_get_dim_name(__isl_keep isl_set *set,
531 enum isl_dim_type type, unsigned pos)
533 return set ? isl_space_get_dim_name(set->dim, type, pos) : NULL;
536 /* Does the given dimension have a name?
538 int isl_set_has_dim_name(__isl_keep isl_set *set,
539 enum isl_dim_type type, unsigned pos)
541 return set ? isl_space_has_dim_name(set->dim, type, pos) : -1;
544 __isl_give isl_basic_map *isl_basic_map_set_dim_name(
545 __isl_take isl_basic_map *bmap,
546 enum isl_dim_type type, unsigned pos, const char *s)
548 bmap = isl_basic_map_cow(bmap);
549 if (!bmap)
550 return NULL;
551 bmap->dim = isl_space_set_dim_name(bmap->dim, type, pos, s);
552 if (!bmap->dim)
553 goto error;
554 return isl_basic_map_finalize(bmap);
555 error:
556 isl_basic_map_free(bmap);
557 return NULL;
560 __isl_give isl_map *isl_map_set_dim_name(__isl_take isl_map *map,
561 enum isl_dim_type type, unsigned pos, const char *s)
563 int i;
565 map = isl_map_cow(map);
566 if (!map)
567 return NULL;
569 map->dim = isl_space_set_dim_name(map->dim, type, pos, s);
570 if (!map->dim)
571 goto error;
573 for (i = 0; i < map->n; ++i) {
574 map->p[i] = isl_basic_map_set_dim_name(map->p[i], type, pos, s);
575 if (!map->p[i])
576 goto error;
579 return map;
580 error:
581 isl_map_free(map);
582 return NULL;
585 __isl_give isl_basic_set *isl_basic_set_set_dim_name(
586 __isl_take isl_basic_set *bset,
587 enum isl_dim_type type, unsigned pos, const char *s)
589 return (isl_basic_set *)isl_basic_map_set_dim_name(
590 (isl_basic_map *)bset, type, pos, s);
593 __isl_give isl_set *isl_set_set_dim_name(__isl_take isl_set *set,
594 enum isl_dim_type type, unsigned pos, const char *s)
596 return (isl_set *)isl_map_set_dim_name((isl_map *)set, type, pos, s);
599 int isl_basic_map_has_dim_id(__isl_keep isl_basic_map *bmap,
600 enum isl_dim_type type, unsigned pos)
602 return bmap ? isl_space_has_dim_id(bmap->dim, type, pos) : -1;
605 __isl_give isl_id *isl_basic_set_get_dim_id(__isl_keep isl_basic_set *bset,
606 enum isl_dim_type type, unsigned pos)
608 return bset ? isl_space_get_dim_id(bset->dim, type, pos) : NULL;
611 int isl_map_has_dim_id(__isl_keep isl_map *map,
612 enum isl_dim_type type, unsigned pos)
614 return map ? isl_space_has_dim_id(map->dim, type, pos) : -1;
617 __isl_give isl_id *isl_map_get_dim_id(__isl_keep isl_map *map,
618 enum isl_dim_type type, unsigned pos)
620 return map ? isl_space_get_dim_id(map->dim, type, pos) : NULL;
623 int isl_set_has_dim_id(__isl_keep isl_set *set,
624 enum isl_dim_type type, unsigned pos)
626 return isl_map_has_dim_id(set, type, pos);
629 __isl_give isl_id *isl_set_get_dim_id(__isl_keep isl_set *set,
630 enum isl_dim_type type, unsigned pos)
632 return isl_map_get_dim_id(set, type, pos);
635 __isl_give isl_map *isl_map_set_dim_id(__isl_take isl_map *map,
636 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
638 map = isl_map_cow(map);
639 if (!map)
640 return isl_id_free(id);
642 map->dim = isl_space_set_dim_id(map->dim, type, pos, id);
644 return isl_map_reset_space(map, isl_space_copy(map->dim));
647 __isl_give isl_set *isl_set_set_dim_id(__isl_take isl_set *set,
648 enum isl_dim_type type, unsigned pos, __isl_take isl_id *id)
650 return isl_map_set_dim_id(set, type, pos, id);
653 int isl_map_find_dim_by_id(__isl_keep isl_map *map, enum isl_dim_type type,
654 __isl_keep isl_id *id)
656 if (!map)
657 return -1;
658 return isl_space_find_dim_by_id(map->dim, type, id);
661 int isl_set_find_dim_by_id(__isl_keep isl_set *set, enum isl_dim_type type,
662 __isl_keep isl_id *id)
664 return isl_map_find_dim_by_id(set, type, id);
667 int isl_map_find_dim_by_name(__isl_keep isl_map *map, enum isl_dim_type type,
668 const char *name)
670 if (!map)
671 return -1;
672 return isl_space_find_dim_by_name(map->dim, type, name);
675 int isl_set_find_dim_by_name(__isl_keep isl_set *set, enum isl_dim_type type,
676 const char *name)
678 return isl_map_find_dim_by_name(set, type, name);
681 int isl_basic_map_is_rational(__isl_keep isl_basic_map *bmap)
683 if (!bmap)
684 return -1;
685 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
688 int isl_basic_set_is_rational(__isl_keep isl_basic_set *bset)
690 return isl_basic_map_is_rational(bset);
693 /* Is this basic set a parameter domain?
695 int isl_basic_set_is_params(__isl_keep isl_basic_set *bset)
697 if (!bset)
698 return -1;
699 return isl_space_is_params(bset->dim);
702 /* Is this set a parameter domain?
704 int isl_set_is_params(__isl_keep isl_set *set)
706 if (!set)
707 return -1;
708 return isl_space_is_params(set->dim);
711 /* Is this map actually a parameter domain?
712 * Users should never call this function. Outside of isl,
713 * a map can never be a parameter domain.
715 int isl_map_is_params(__isl_keep isl_map *map)
717 if (!map)
718 return -1;
719 return isl_space_is_params(map->dim);
722 static struct isl_basic_map *basic_map_init(struct isl_ctx *ctx,
723 struct isl_basic_map *bmap, unsigned extra,
724 unsigned n_eq, unsigned n_ineq)
726 int i;
727 size_t row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + extra;
729 bmap->ctx = ctx;
730 isl_ctx_ref(ctx);
732 bmap->block = isl_blk_alloc(ctx, (n_ineq + n_eq) * row_size);
733 if (isl_blk_is_error(bmap->block))
734 goto error;
736 bmap->ineq = isl_alloc_array(ctx, isl_int *, n_ineq + n_eq);
737 if (!bmap->ineq)
738 goto error;
740 if (extra == 0) {
741 bmap->block2 = isl_blk_empty();
742 bmap->div = NULL;
743 } else {
744 bmap->block2 = isl_blk_alloc(ctx, extra * (1 + row_size));
745 if (isl_blk_is_error(bmap->block2))
746 goto error;
748 bmap->div = isl_alloc_array(ctx, isl_int *, extra);
749 if (!bmap->div)
750 goto error;
753 for (i = 0; i < n_ineq + n_eq; ++i)
754 bmap->ineq[i] = bmap->block.data + i * row_size;
756 for (i = 0; i < extra; ++i)
757 bmap->div[i] = bmap->block2.data + i * (1 + row_size);
759 bmap->ref = 1;
760 bmap->flags = 0;
761 bmap->c_size = n_eq + n_ineq;
762 bmap->eq = bmap->ineq + n_ineq;
763 bmap->extra = extra;
764 bmap->n_eq = 0;
765 bmap->n_ineq = 0;
766 bmap->n_div = 0;
767 bmap->sample = NULL;
769 return bmap;
770 error:
771 isl_basic_map_free(bmap);
772 return NULL;
775 struct isl_basic_set *isl_basic_set_alloc(struct isl_ctx *ctx,
776 unsigned nparam, unsigned dim, unsigned extra,
777 unsigned n_eq, unsigned n_ineq)
779 struct isl_basic_map *bmap;
780 isl_space *space;
782 space = isl_space_set_alloc(ctx, nparam, dim);
783 if (!space)
784 return NULL;
786 bmap = isl_basic_map_alloc_space(space, extra, n_eq, n_ineq);
787 return (struct isl_basic_set *)bmap;
790 struct isl_basic_set *isl_basic_set_alloc_space(__isl_take isl_space *dim,
791 unsigned extra, unsigned n_eq, unsigned n_ineq)
793 struct isl_basic_map *bmap;
794 if (!dim)
795 return NULL;
796 isl_assert(dim->ctx, dim->n_in == 0, goto error);
797 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
798 return (struct isl_basic_set *)bmap;
799 error:
800 isl_space_free(dim);
801 return NULL;
804 struct isl_basic_map *isl_basic_map_alloc_space(__isl_take isl_space *dim,
805 unsigned extra, unsigned n_eq, unsigned n_ineq)
807 struct isl_basic_map *bmap;
809 if (!dim)
810 return NULL;
811 bmap = isl_calloc_type(dim->ctx, struct isl_basic_map);
812 if (!bmap)
813 goto error;
814 bmap->dim = dim;
816 return basic_map_init(dim->ctx, bmap, extra, n_eq, n_ineq);
817 error:
818 isl_space_free(dim);
819 return NULL;
822 struct isl_basic_map *isl_basic_map_alloc(struct isl_ctx *ctx,
823 unsigned nparam, unsigned in, unsigned out, unsigned extra,
824 unsigned n_eq, unsigned n_ineq)
826 struct isl_basic_map *bmap;
827 isl_space *dim;
829 dim = isl_space_alloc(ctx, nparam, in, out);
830 if (!dim)
831 return NULL;
833 bmap = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
834 return bmap;
837 static void dup_constraints(
838 struct isl_basic_map *dst, struct isl_basic_map *src)
840 int i;
841 unsigned total = isl_basic_map_total_dim(src);
843 for (i = 0; i < src->n_eq; ++i) {
844 int j = isl_basic_map_alloc_equality(dst);
845 isl_seq_cpy(dst->eq[j], src->eq[i], 1+total);
848 for (i = 0; i < src->n_ineq; ++i) {
849 int j = isl_basic_map_alloc_inequality(dst);
850 isl_seq_cpy(dst->ineq[j], src->ineq[i], 1+total);
853 for (i = 0; i < src->n_div; ++i) {
854 int j = isl_basic_map_alloc_div(dst);
855 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total);
857 ISL_F_SET(dst, ISL_BASIC_SET_FINAL);
860 struct isl_basic_map *isl_basic_map_dup(struct isl_basic_map *bmap)
862 struct isl_basic_map *dup;
864 if (!bmap)
865 return NULL;
866 dup = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
867 bmap->n_div, bmap->n_eq, bmap->n_ineq);
868 if (!dup)
869 return NULL;
870 dup_constraints(dup, bmap);
871 dup->flags = bmap->flags;
872 dup->sample = isl_vec_copy(bmap->sample);
873 return dup;
876 struct isl_basic_set *isl_basic_set_dup(struct isl_basic_set *bset)
878 struct isl_basic_map *dup;
880 dup = isl_basic_map_dup((struct isl_basic_map *)bset);
881 return (struct isl_basic_set *)dup;
884 struct isl_basic_set *isl_basic_set_copy(struct isl_basic_set *bset)
886 if (!bset)
887 return NULL;
889 if (ISL_F_ISSET(bset, ISL_BASIC_SET_FINAL)) {
890 bset->ref++;
891 return bset;
893 return isl_basic_set_dup(bset);
896 struct isl_set *isl_set_copy(struct isl_set *set)
898 if (!set)
899 return NULL;
901 set->ref++;
902 return set;
905 struct isl_basic_map *isl_basic_map_copy(struct isl_basic_map *bmap)
907 if (!bmap)
908 return NULL;
910 if (ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL)) {
911 bmap->ref++;
912 return bmap;
914 bmap = isl_basic_map_dup(bmap);
915 if (bmap)
916 ISL_F_SET(bmap, ISL_BASIC_SET_FINAL);
917 return bmap;
920 struct isl_map *isl_map_copy(struct isl_map *map)
922 if (!map)
923 return NULL;
925 map->ref++;
926 return map;
929 void isl_basic_map_free(struct isl_basic_map *bmap)
931 if (!bmap)
932 return;
934 if (--bmap->ref > 0)
935 return;
937 isl_ctx_deref(bmap->ctx);
938 free(bmap->div);
939 isl_blk_free(bmap->ctx, bmap->block2);
940 free(bmap->ineq);
941 isl_blk_free(bmap->ctx, bmap->block);
942 isl_vec_free(bmap->sample);
943 isl_space_free(bmap->dim);
944 free(bmap);
947 void isl_basic_set_free(struct isl_basic_set *bset)
949 isl_basic_map_free((struct isl_basic_map *)bset);
952 static int room_for_con(struct isl_basic_map *bmap, unsigned n)
954 return bmap->n_eq + bmap->n_ineq + n <= bmap->c_size;
957 __isl_give isl_map *isl_map_align_params_map_map_and(
958 __isl_take isl_map *map1, __isl_take isl_map *map2,
959 __isl_give isl_map *(*fn)(__isl_take isl_map *map1,
960 __isl_take isl_map *map2))
962 if (!map1 || !map2)
963 goto error;
964 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
965 return fn(map1, map2);
966 if (!isl_space_has_named_params(map1->dim) ||
967 !isl_space_has_named_params(map2->dim))
968 isl_die(map1->ctx, isl_error_invalid,
969 "unaligned unnamed parameters", goto error);
970 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
971 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
972 return fn(map1, map2);
973 error:
974 isl_map_free(map1);
975 isl_map_free(map2);
976 return NULL;
979 int isl_map_align_params_map_map_and_test(__isl_keep isl_map *map1,
980 __isl_keep isl_map *map2,
981 int (*fn)(__isl_keep isl_map *map1, __isl_keep isl_map *map2))
983 int r;
985 if (!map1 || !map2)
986 return -1;
987 if (isl_space_match(map1->dim, isl_dim_param, map2->dim, isl_dim_param))
988 return fn(map1, map2);
989 if (!isl_space_has_named_params(map1->dim) ||
990 !isl_space_has_named_params(map2->dim))
991 isl_die(map1->ctx, isl_error_invalid,
992 "unaligned unnamed parameters", return -1);
993 map1 = isl_map_copy(map1);
994 map2 = isl_map_copy(map2);
995 map1 = isl_map_align_params(map1, isl_map_get_space(map2));
996 map2 = isl_map_align_params(map2, isl_map_get_space(map1));
997 r = fn(map1, map2);
998 isl_map_free(map1);
999 isl_map_free(map2);
1000 return r;
1003 int isl_basic_map_alloc_equality(struct isl_basic_map *bmap)
1005 struct isl_ctx *ctx;
1006 if (!bmap)
1007 return -1;
1008 ctx = bmap->ctx;
1009 isl_assert(ctx, room_for_con(bmap, 1), return -1);
1010 isl_assert(ctx, (bmap->eq - bmap->ineq) + bmap->n_eq <= bmap->c_size,
1011 return -1);
1012 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1013 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1014 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1015 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1016 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1017 if ((bmap->eq - bmap->ineq) + bmap->n_eq == bmap->c_size) {
1018 isl_int *t;
1019 int j = isl_basic_map_alloc_inequality(bmap);
1020 if (j < 0)
1021 return -1;
1022 t = bmap->ineq[j];
1023 bmap->ineq[j] = bmap->ineq[bmap->n_ineq - 1];
1024 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1025 bmap->eq[-1] = t;
1026 bmap->n_eq++;
1027 bmap->n_ineq--;
1028 bmap->eq--;
1029 return 0;
1031 isl_seq_clr(bmap->eq[bmap->n_eq] + 1 + isl_basic_map_total_dim(bmap),
1032 bmap->extra - bmap->n_div);
1033 return bmap->n_eq++;
1036 int isl_basic_set_alloc_equality(struct isl_basic_set *bset)
1038 return isl_basic_map_alloc_equality((struct isl_basic_map *)bset);
1041 int isl_basic_map_free_equality(struct isl_basic_map *bmap, unsigned n)
1043 if (!bmap)
1044 return -1;
1045 isl_assert(bmap->ctx, n <= bmap->n_eq, return -1);
1046 bmap->n_eq -= n;
1047 return 0;
1050 int isl_basic_set_free_equality(struct isl_basic_set *bset, unsigned n)
1052 return isl_basic_map_free_equality((struct isl_basic_map *)bset, n);
1055 int isl_basic_map_drop_equality(struct isl_basic_map *bmap, unsigned pos)
1057 isl_int *t;
1058 if (!bmap)
1059 return -1;
1060 isl_assert(bmap->ctx, pos < bmap->n_eq, return -1);
1062 if (pos != bmap->n_eq - 1) {
1063 t = bmap->eq[pos];
1064 bmap->eq[pos] = bmap->eq[bmap->n_eq - 1];
1065 bmap->eq[bmap->n_eq - 1] = t;
1067 bmap->n_eq--;
1068 return 0;
1071 int isl_basic_set_drop_equality(struct isl_basic_set *bset, unsigned pos)
1073 return isl_basic_map_drop_equality((struct isl_basic_map *)bset, pos);
1076 void isl_basic_map_inequality_to_equality(
1077 struct isl_basic_map *bmap, unsigned pos)
1079 isl_int *t;
1081 t = bmap->ineq[pos];
1082 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1083 bmap->ineq[bmap->n_ineq - 1] = bmap->eq[-1];
1084 bmap->eq[-1] = t;
1085 bmap->n_eq++;
1086 bmap->n_ineq--;
1087 bmap->eq--;
1088 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1089 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1090 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1091 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1094 static int room_for_ineq(struct isl_basic_map *bmap, unsigned n)
1096 return bmap->n_ineq + n <= bmap->eq - bmap->ineq;
1099 int isl_basic_map_alloc_inequality(struct isl_basic_map *bmap)
1101 struct isl_ctx *ctx;
1102 if (!bmap)
1103 return -1;
1104 ctx = bmap->ctx;
1105 isl_assert(ctx, room_for_ineq(bmap, 1), return -1);
1106 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_IMPLICIT);
1107 ISL_F_CLR(bmap, ISL_BASIC_MAP_NO_REDUNDANT);
1108 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1109 ISL_F_CLR(bmap, ISL_BASIC_MAP_ALL_EQUALITIES);
1110 isl_seq_clr(bmap->ineq[bmap->n_ineq] +
1111 1 + isl_basic_map_total_dim(bmap),
1112 bmap->extra - bmap->n_div);
1113 return bmap->n_ineq++;
1116 int isl_basic_set_alloc_inequality(struct isl_basic_set *bset)
1118 return isl_basic_map_alloc_inequality((struct isl_basic_map *)bset);
1121 int isl_basic_map_free_inequality(struct isl_basic_map *bmap, unsigned n)
1123 if (!bmap)
1124 return -1;
1125 isl_assert(bmap->ctx, n <= bmap->n_ineq, return -1);
1126 bmap->n_ineq -= n;
1127 return 0;
1130 int isl_basic_set_free_inequality(struct isl_basic_set *bset, unsigned n)
1132 return isl_basic_map_free_inequality((struct isl_basic_map *)bset, n);
1135 int isl_basic_map_drop_inequality(struct isl_basic_map *bmap, unsigned pos)
1137 isl_int *t;
1138 if (!bmap)
1139 return -1;
1140 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
1142 if (pos != bmap->n_ineq - 1) {
1143 t = bmap->ineq[pos];
1144 bmap->ineq[pos] = bmap->ineq[bmap->n_ineq - 1];
1145 bmap->ineq[bmap->n_ineq - 1] = t;
1146 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1148 bmap->n_ineq--;
1149 return 0;
1152 int isl_basic_set_drop_inequality(struct isl_basic_set *bset, unsigned pos)
1154 return isl_basic_map_drop_inequality((struct isl_basic_map *)bset, pos);
1157 __isl_give isl_basic_map *isl_basic_map_add_eq(__isl_take isl_basic_map *bmap,
1158 isl_int *eq)
1160 int k;
1162 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
1163 if (!bmap)
1164 return NULL;
1165 k = isl_basic_map_alloc_equality(bmap);
1166 if (k < 0)
1167 goto error;
1168 isl_seq_cpy(bmap->eq[k], eq, 1 + isl_basic_map_total_dim(bmap));
1169 return bmap;
1170 error:
1171 isl_basic_map_free(bmap);
1172 return NULL;
1175 __isl_give isl_basic_set *isl_basic_set_add_eq(__isl_take isl_basic_set *bset,
1176 isl_int *eq)
1178 return (isl_basic_set *)
1179 isl_basic_map_add_eq((isl_basic_map *)bset, eq);
1182 __isl_give isl_basic_map *isl_basic_map_add_ineq(__isl_take isl_basic_map *bmap,
1183 isl_int *ineq)
1185 int k;
1187 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
1188 if (!bmap)
1189 return NULL;
1190 k = isl_basic_map_alloc_inequality(bmap);
1191 if (k < 0)
1192 goto error;
1193 isl_seq_cpy(bmap->ineq[k], ineq, 1 + isl_basic_map_total_dim(bmap));
1194 return bmap;
1195 error:
1196 isl_basic_map_free(bmap);
1197 return NULL;
1200 __isl_give isl_basic_set *isl_basic_set_add_ineq(__isl_take isl_basic_set *bset,
1201 isl_int *ineq)
1203 return (isl_basic_set *)
1204 isl_basic_map_add_ineq((isl_basic_map *)bset, ineq);
1207 int isl_basic_map_alloc_div(struct isl_basic_map *bmap)
1209 if (!bmap)
1210 return -1;
1211 isl_assert(bmap->ctx, bmap->n_div < bmap->extra, return -1);
1212 isl_seq_clr(bmap->div[bmap->n_div] +
1213 1 + 1 + isl_basic_map_total_dim(bmap),
1214 bmap->extra - bmap->n_div);
1215 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED_DIVS);
1216 return bmap->n_div++;
1219 int isl_basic_set_alloc_div(struct isl_basic_set *bset)
1221 return isl_basic_map_alloc_div((struct isl_basic_map *)bset);
1224 int isl_basic_map_free_div(struct isl_basic_map *bmap, unsigned n)
1226 if (!bmap)
1227 return -1;
1228 isl_assert(bmap->ctx, n <= bmap->n_div, return -1);
1229 bmap->n_div -= n;
1230 return 0;
1233 int isl_basic_set_free_div(struct isl_basic_set *bset, unsigned n)
1235 return isl_basic_map_free_div((struct isl_basic_map *)bset, n);
1238 /* Copy constraint from src to dst, putting the vars of src at offset
1239 * dim_off in dst and the divs of src at offset div_off in dst.
1240 * If both sets are actually map, then dim_off applies to the input
1241 * variables.
1243 static void copy_constraint(struct isl_basic_map *dst_map, isl_int *dst,
1244 struct isl_basic_map *src_map, isl_int *src,
1245 unsigned in_off, unsigned out_off, unsigned div_off)
1247 unsigned src_nparam = isl_basic_map_n_param(src_map);
1248 unsigned dst_nparam = isl_basic_map_n_param(dst_map);
1249 unsigned src_in = isl_basic_map_n_in(src_map);
1250 unsigned dst_in = isl_basic_map_n_in(dst_map);
1251 unsigned src_out = isl_basic_map_n_out(src_map);
1252 unsigned dst_out = isl_basic_map_n_out(dst_map);
1253 isl_int_set(dst[0], src[0]);
1254 isl_seq_cpy(dst+1, src+1, isl_min(dst_nparam, src_nparam));
1255 if (dst_nparam > src_nparam)
1256 isl_seq_clr(dst+1+src_nparam,
1257 dst_nparam - src_nparam);
1258 isl_seq_clr(dst+1+dst_nparam, in_off);
1259 isl_seq_cpy(dst+1+dst_nparam+in_off,
1260 src+1+src_nparam,
1261 isl_min(dst_in-in_off, src_in));
1262 if (dst_in-in_off > src_in)
1263 isl_seq_clr(dst+1+dst_nparam+in_off+src_in,
1264 dst_in - in_off - src_in);
1265 isl_seq_clr(dst+1+dst_nparam+dst_in, out_off);
1266 isl_seq_cpy(dst+1+dst_nparam+dst_in+out_off,
1267 src+1+src_nparam+src_in,
1268 isl_min(dst_out-out_off, src_out));
1269 if (dst_out-out_off > src_out)
1270 isl_seq_clr(dst+1+dst_nparam+dst_in+out_off+src_out,
1271 dst_out - out_off - src_out);
1272 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out, div_off);
1273 isl_seq_cpy(dst+1+dst_nparam+dst_in+dst_out+div_off,
1274 src+1+src_nparam+src_in+src_out,
1275 isl_min(dst_map->extra-div_off, src_map->n_div));
1276 if (dst_map->n_div-div_off > src_map->n_div)
1277 isl_seq_clr(dst+1+dst_nparam+dst_in+dst_out+
1278 div_off+src_map->n_div,
1279 dst_map->n_div - div_off - src_map->n_div);
1282 static void copy_div(struct isl_basic_map *dst_map, isl_int *dst,
1283 struct isl_basic_map *src_map, isl_int *src,
1284 unsigned in_off, unsigned out_off, unsigned div_off)
1286 isl_int_set(dst[0], src[0]);
1287 copy_constraint(dst_map, dst+1, src_map, src+1, in_off, out_off, div_off);
1290 static struct isl_basic_map *add_constraints(struct isl_basic_map *bmap1,
1291 struct isl_basic_map *bmap2, unsigned i_pos, unsigned o_pos)
1293 int i;
1294 unsigned div_off;
1296 if (!bmap1 || !bmap2)
1297 goto error;
1299 div_off = bmap1->n_div;
1301 for (i = 0; i < bmap2->n_eq; ++i) {
1302 int i1 = isl_basic_map_alloc_equality(bmap1);
1303 if (i1 < 0)
1304 goto error;
1305 copy_constraint(bmap1, bmap1->eq[i1], bmap2, bmap2->eq[i],
1306 i_pos, o_pos, div_off);
1309 for (i = 0; i < bmap2->n_ineq; ++i) {
1310 int i1 = isl_basic_map_alloc_inequality(bmap1);
1311 if (i1 < 0)
1312 goto error;
1313 copy_constraint(bmap1, bmap1->ineq[i1], bmap2, bmap2->ineq[i],
1314 i_pos, o_pos, div_off);
1317 for (i = 0; i < bmap2->n_div; ++i) {
1318 int i1 = isl_basic_map_alloc_div(bmap1);
1319 if (i1 < 0)
1320 goto error;
1321 copy_div(bmap1, bmap1->div[i1], bmap2, bmap2->div[i],
1322 i_pos, o_pos, div_off);
1325 isl_basic_map_free(bmap2);
1327 return bmap1;
1329 error:
1330 isl_basic_map_free(bmap1);
1331 isl_basic_map_free(bmap2);
1332 return NULL;
1335 struct isl_basic_set *isl_basic_set_add_constraints(struct isl_basic_set *bset1,
1336 struct isl_basic_set *bset2, unsigned pos)
1338 return (struct isl_basic_set *)
1339 add_constraints((struct isl_basic_map *)bset1,
1340 (struct isl_basic_map *)bset2, 0, pos);
1343 struct isl_basic_map *isl_basic_map_extend_space(struct isl_basic_map *base,
1344 __isl_take isl_space *dim, unsigned extra,
1345 unsigned n_eq, unsigned n_ineq)
1347 struct isl_basic_map *ext;
1348 unsigned flags;
1349 int dims_ok;
1351 if (!dim)
1352 goto error;
1354 if (!base)
1355 goto error;
1357 dims_ok = isl_space_is_equal(base->dim, dim) &&
1358 base->extra >= base->n_div + extra;
1360 if (dims_ok && room_for_con(base, n_eq + n_ineq) &&
1361 room_for_ineq(base, n_ineq)) {
1362 isl_space_free(dim);
1363 return base;
1366 isl_assert(base->ctx, base->dim->nparam <= dim->nparam, goto error);
1367 isl_assert(base->ctx, base->dim->n_in <= dim->n_in, goto error);
1368 isl_assert(base->ctx, base->dim->n_out <= dim->n_out, goto error);
1369 extra += base->extra;
1370 n_eq += base->n_eq;
1371 n_ineq += base->n_ineq;
1373 ext = isl_basic_map_alloc_space(dim, extra, n_eq, n_ineq);
1374 dim = NULL;
1375 if (!ext)
1376 goto error;
1378 if (dims_ok)
1379 ext->sample = isl_vec_copy(base->sample);
1380 flags = base->flags;
1381 ext = add_constraints(ext, base, 0, 0);
1382 if (ext) {
1383 ext->flags = flags;
1384 ISL_F_CLR(ext, ISL_BASIC_SET_FINAL);
1387 return ext;
1389 error:
1390 isl_space_free(dim);
1391 isl_basic_map_free(base);
1392 return NULL;
1395 struct isl_basic_set *isl_basic_set_extend_space(struct isl_basic_set *base,
1396 __isl_take isl_space *dim, unsigned extra,
1397 unsigned n_eq, unsigned n_ineq)
1399 return (struct isl_basic_set *)
1400 isl_basic_map_extend_space((struct isl_basic_map *)base, dim,
1401 extra, n_eq, n_ineq);
1404 struct isl_basic_map *isl_basic_map_extend_constraints(
1405 struct isl_basic_map *base, unsigned n_eq, unsigned n_ineq)
1407 if (!base)
1408 return NULL;
1409 return isl_basic_map_extend_space(base, isl_space_copy(base->dim),
1410 0, n_eq, n_ineq);
1413 struct isl_basic_map *isl_basic_map_extend(struct isl_basic_map *base,
1414 unsigned nparam, unsigned n_in, unsigned n_out, unsigned extra,
1415 unsigned n_eq, unsigned n_ineq)
1417 struct isl_basic_map *bmap;
1418 isl_space *dim;
1420 if (!base)
1421 return NULL;
1422 dim = isl_space_alloc(base->ctx, nparam, n_in, n_out);
1423 if (!dim)
1424 goto error;
1426 bmap = isl_basic_map_extend_space(base, dim, extra, n_eq, n_ineq);
1427 return bmap;
1428 error:
1429 isl_basic_map_free(base);
1430 return NULL;
1433 struct isl_basic_set *isl_basic_set_extend(struct isl_basic_set *base,
1434 unsigned nparam, unsigned dim, unsigned extra,
1435 unsigned n_eq, unsigned n_ineq)
1437 return (struct isl_basic_set *)
1438 isl_basic_map_extend((struct isl_basic_map *)base,
1439 nparam, 0, dim, extra, n_eq, n_ineq);
1442 struct isl_basic_set *isl_basic_set_extend_constraints(
1443 struct isl_basic_set *base, unsigned n_eq, unsigned n_ineq)
1445 return (struct isl_basic_set *)
1446 isl_basic_map_extend_constraints((struct isl_basic_map *)base,
1447 n_eq, n_ineq);
1450 struct isl_basic_set *isl_basic_set_cow(struct isl_basic_set *bset)
1452 return (struct isl_basic_set *)
1453 isl_basic_map_cow((struct isl_basic_map *)bset);
1456 struct isl_basic_map *isl_basic_map_cow(struct isl_basic_map *bmap)
1458 if (!bmap)
1459 return NULL;
1461 if (bmap->ref > 1) {
1462 bmap->ref--;
1463 bmap = isl_basic_map_dup(bmap);
1465 if (bmap)
1466 ISL_F_CLR(bmap, ISL_BASIC_SET_FINAL);
1467 return bmap;
1470 struct isl_set *isl_set_cow(struct isl_set *set)
1472 if (!set)
1473 return NULL;
1475 if (set->ref == 1)
1476 return set;
1477 set->ref--;
1478 return isl_set_dup(set);
1481 struct isl_map *isl_map_cow(struct isl_map *map)
1483 if (!map)
1484 return NULL;
1486 if (map->ref == 1)
1487 return map;
1488 map->ref--;
1489 return isl_map_dup(map);
1492 static void swap_vars(struct isl_blk blk, isl_int *a,
1493 unsigned a_len, unsigned b_len)
1495 isl_seq_cpy(blk.data, a+a_len, b_len);
1496 isl_seq_cpy(blk.data+b_len, a, a_len);
1497 isl_seq_cpy(a, blk.data, b_len+a_len);
1500 static __isl_give isl_basic_map *isl_basic_map_swap_vars(
1501 __isl_take isl_basic_map *bmap, unsigned pos, unsigned n1, unsigned n2)
1503 int i;
1504 struct isl_blk blk;
1506 if (!bmap)
1507 goto error;
1509 isl_assert(bmap->ctx,
1510 pos + n1 + n2 <= 1 + isl_basic_map_total_dim(bmap), goto error);
1512 if (n1 == 0 || n2 == 0)
1513 return bmap;
1515 bmap = isl_basic_map_cow(bmap);
1516 if (!bmap)
1517 return NULL;
1519 blk = isl_blk_alloc(bmap->ctx, n1 + n2);
1520 if (isl_blk_is_error(blk))
1521 goto error;
1523 for (i = 0; i < bmap->n_eq; ++i)
1524 swap_vars(blk,
1525 bmap->eq[i] + pos, n1, n2);
1527 for (i = 0; i < bmap->n_ineq; ++i)
1528 swap_vars(blk,
1529 bmap->ineq[i] + pos, n1, n2);
1531 for (i = 0; i < bmap->n_div; ++i)
1532 swap_vars(blk,
1533 bmap->div[i]+1 + pos, n1, n2);
1535 isl_blk_free(bmap->ctx, blk);
1537 ISL_F_CLR(bmap, ISL_BASIC_SET_NORMALIZED);
1538 bmap = isl_basic_map_gauss(bmap, NULL);
1539 return isl_basic_map_finalize(bmap);
1540 error:
1541 isl_basic_map_free(bmap);
1542 return NULL;
1545 static __isl_give isl_basic_set *isl_basic_set_swap_vars(
1546 __isl_take isl_basic_set *bset, unsigned n)
1548 unsigned dim;
1549 unsigned nparam;
1551 nparam = isl_basic_set_n_param(bset);
1552 dim = isl_basic_set_n_dim(bset);
1553 isl_assert(bset->ctx, n <= dim, goto error);
1555 return isl_basic_map_swap_vars(bset, 1 + nparam, n, dim - n);
1556 error:
1557 isl_basic_set_free(bset);
1558 return NULL;
1561 struct isl_basic_map *isl_basic_map_set_to_empty(struct isl_basic_map *bmap)
1563 int i = 0;
1564 unsigned total;
1565 if (!bmap)
1566 goto error;
1567 total = isl_basic_map_total_dim(bmap);
1568 isl_basic_map_free_div(bmap, bmap->n_div);
1569 isl_basic_map_free_inequality(bmap, bmap->n_ineq);
1570 if (bmap->n_eq > 0)
1571 isl_basic_map_free_equality(bmap, bmap->n_eq-1);
1572 else {
1573 i = isl_basic_map_alloc_equality(bmap);
1574 if (i < 0)
1575 goto error;
1577 isl_int_set_si(bmap->eq[i][0], 1);
1578 isl_seq_clr(bmap->eq[i]+1, total);
1579 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
1580 isl_vec_free(bmap->sample);
1581 bmap->sample = NULL;
1582 return isl_basic_map_finalize(bmap);
1583 error:
1584 isl_basic_map_free(bmap);
1585 return NULL;
1588 struct isl_basic_set *isl_basic_set_set_to_empty(struct isl_basic_set *bset)
1590 return (struct isl_basic_set *)
1591 isl_basic_map_set_to_empty((struct isl_basic_map *)bset);
1594 void isl_basic_map_swap_div(struct isl_basic_map *bmap, int a, int b)
1596 int i;
1597 unsigned off = isl_space_dim(bmap->dim, isl_dim_all);
1598 isl_int *t = bmap->div[a];
1599 bmap->div[a] = bmap->div[b];
1600 bmap->div[b] = t;
1602 for (i = 0; i < bmap->n_eq; ++i)
1603 isl_int_swap(bmap->eq[i][1+off+a], bmap->eq[i][1+off+b]);
1605 for (i = 0; i < bmap->n_ineq; ++i)
1606 isl_int_swap(bmap->ineq[i][1+off+a], bmap->ineq[i][1+off+b]);
1608 for (i = 0; i < bmap->n_div; ++i)
1609 isl_int_swap(bmap->div[i][1+1+off+a], bmap->div[i][1+1+off+b]);
1610 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
1613 /* Eliminate the specified n dimensions starting at first from the
1614 * constraints, without removing the dimensions from the space.
1615 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1617 __isl_give isl_map *isl_map_eliminate(__isl_take isl_map *map,
1618 enum isl_dim_type type, unsigned first, unsigned n)
1620 int i;
1622 if (!map)
1623 return NULL;
1624 if (n == 0)
1625 return map;
1627 if (first + n > isl_map_dim(map, type) || first + n < first)
1628 isl_die(map->ctx, isl_error_invalid,
1629 "index out of bounds", goto error);
1631 map = isl_map_cow(map);
1632 if (!map)
1633 return NULL;
1635 for (i = 0; i < map->n; ++i) {
1636 map->p[i] = isl_basic_map_eliminate(map->p[i], type, first, n);
1637 if (!map->p[i])
1638 goto error;
1640 return map;
1641 error:
1642 isl_map_free(map);
1643 return NULL;
1646 /* Eliminate the specified n dimensions starting at first from the
1647 * constraints, without removing the dimensions from the space.
1648 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1650 __isl_give isl_set *isl_set_eliminate(__isl_take isl_set *set,
1651 enum isl_dim_type type, unsigned first, unsigned n)
1653 return (isl_set *)isl_map_eliminate((isl_map *)set, type, first, n);
1656 /* Eliminate the specified n dimensions starting at first from the
1657 * constraints, without removing the dimensions from the space.
1658 * If the set is rational, the dimensions are eliminated using Fourier-Motzkin.
1660 __isl_give isl_set *isl_set_eliminate_dims(__isl_take isl_set *set,
1661 unsigned first, unsigned n)
1663 return isl_set_eliminate(set, isl_dim_set, first, n);
1666 __isl_give isl_basic_map *isl_basic_map_remove_divs(
1667 __isl_take isl_basic_map *bmap)
1669 if (!bmap)
1670 return NULL;
1671 bmap = isl_basic_map_eliminate_vars(bmap,
1672 isl_space_dim(bmap->dim, isl_dim_all), bmap->n_div);
1673 if (!bmap)
1674 return NULL;
1675 bmap->n_div = 0;
1676 return isl_basic_map_finalize(bmap);
1679 __isl_give isl_basic_set *isl_basic_set_remove_divs(
1680 __isl_take isl_basic_set *bset)
1682 return (struct isl_basic_set *)isl_basic_map_remove_divs(
1683 (struct isl_basic_map *)bset);
1686 __isl_give isl_map *isl_map_remove_divs(__isl_take isl_map *map)
1688 int i;
1690 if (!map)
1691 return NULL;
1692 if (map->n == 0)
1693 return map;
1695 map = isl_map_cow(map);
1696 if (!map)
1697 return NULL;
1699 for (i = 0; i < map->n; ++i) {
1700 map->p[i] = isl_basic_map_remove_divs(map->p[i]);
1701 if (!map->p[i])
1702 goto error;
1704 return map;
1705 error:
1706 isl_map_free(map);
1707 return NULL;
1710 __isl_give isl_set *isl_set_remove_divs(__isl_take isl_set *set)
1712 return isl_map_remove_divs(set);
1715 struct isl_basic_map *isl_basic_map_remove_dims(struct isl_basic_map *bmap,
1716 enum isl_dim_type type, unsigned first, unsigned n)
1718 if (!bmap)
1719 return NULL;
1720 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
1721 goto error);
1722 if (n == 0 && !isl_space_is_named_or_nested(bmap->dim, type))
1723 return bmap;
1724 bmap = isl_basic_map_eliminate_vars(bmap,
1725 isl_basic_map_offset(bmap, type) - 1 + first, n);
1726 if (!bmap)
1727 return bmap;
1728 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY) && type == isl_dim_div)
1729 return bmap;
1730 bmap = isl_basic_map_drop(bmap, type, first, n);
1731 return bmap;
1732 error:
1733 isl_basic_map_free(bmap);
1734 return NULL;
1737 /* Return true if the definition of the given div (recursively) involves
1738 * any of the given variables.
1740 static int div_involves_vars(__isl_keep isl_basic_map *bmap, int div,
1741 unsigned first, unsigned n)
1743 int i;
1744 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
1746 if (isl_int_is_zero(bmap->div[div][0]))
1747 return 0;
1748 if (isl_seq_first_non_zero(bmap->div[div] + 1 + first, n) >= 0)
1749 return 1;
1751 for (i = bmap->n_div - 1; i >= 0; --i) {
1752 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
1753 continue;
1754 if (div_involves_vars(bmap, i, first, n))
1755 return 1;
1758 return 0;
1761 /* Try and add a lower and/or upper bound on "div" to "bmap"
1762 * based on inequality "i".
1763 * "total" is the total number of variables (excluding the divs).
1764 * "v" is a temporary object that can be used during the calculations.
1765 * If "lb" is set, then a lower bound should be constructed.
1766 * If "ub" is set, then an upper bound should be constructed.
1768 * The calling function has already checked that the inequality does not
1769 * reference "div", but we still need to check that the inequality is
1770 * of the right form. We'll consider the case where we want to construct
1771 * a lower bound. The construction of upper bounds is similar.
1773 * Let "div" be of the form
1775 * q = floor((a + f(x))/d)
1777 * We essentially check if constraint "i" is of the form
1779 * b + f(x) >= 0
1781 * so that we can use it to derive a lower bound on "div".
1782 * However, we allow a slightly more general form
1784 * b + g(x) >= 0
1786 * with the condition that the coefficients of g(x) - f(x) are all
1787 * divisible by d.
1788 * Rewriting this constraint as
1790 * 0 >= -b - g(x)
1792 * adding a + f(x) to both sides and dividing by d, we obtain
1794 * (a + f(x))/d >= (a-b)/d + (f(x)-g(x))/d
1796 * Taking the floor on both sides, we obtain
1798 * q >= floor((a-b)/d) + (f(x)-g(x))/d
1800 * or
1802 * (g(x)-f(x))/d + ceil((b-a)/d) + q >= 0
1804 * In the case of an upper bound, we construct the constraint
1806 * (g(x)+f(x))/d + floor((b+a)/d) - q >= 0
1809 static __isl_give isl_basic_map *insert_bounds_on_div_from_ineq(
1810 __isl_take isl_basic_map *bmap, int div, int i,
1811 unsigned total, isl_int v, int lb, int ub)
1813 int j;
1815 for (j = 0; (lb || ub) && j < total + bmap->n_div; ++j) {
1816 if (lb) {
1817 isl_int_sub(v, bmap->ineq[i][1 + j],
1818 bmap->div[div][1 + 1 + j]);
1819 lb = isl_int_is_divisible_by(v, bmap->div[div][0]);
1821 if (ub) {
1822 isl_int_add(v, bmap->ineq[i][1 + j],
1823 bmap->div[div][1 + 1 + j]);
1824 ub = isl_int_is_divisible_by(v, bmap->div[div][0]);
1827 if (!lb && !ub)
1828 return bmap;
1830 bmap = isl_basic_map_extend_constraints(bmap, 0, lb + ub);
1831 if (lb) {
1832 int k = isl_basic_map_alloc_inequality(bmap);
1833 if (k < 0)
1834 goto error;
1835 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
1836 isl_int_sub(bmap->ineq[k][j], bmap->ineq[i][j],
1837 bmap->div[div][1 + j]);
1838 isl_int_cdiv_q(bmap->ineq[k][j],
1839 bmap->ineq[k][j], bmap->div[div][0]);
1841 isl_int_set_si(bmap->ineq[k][1 + total + div], 1);
1843 if (ub) {
1844 int k = isl_basic_map_alloc_inequality(bmap);
1845 if (k < 0)
1846 goto error;
1847 for (j = 0; j < 1 + total + bmap->n_div; ++j) {
1848 isl_int_add(bmap->ineq[k][j], bmap->ineq[i][j],
1849 bmap->div[div][1 + j]);
1850 isl_int_fdiv_q(bmap->ineq[k][j],
1851 bmap->ineq[k][j], bmap->div[div][0]);
1853 isl_int_set_si(bmap->ineq[k][1 + total + div], -1);
1856 return bmap;
1857 error:
1858 isl_basic_map_free(bmap);
1859 return NULL;
1862 /* This function is called right before "div" is eliminated from "bmap"
1863 * using Fourier-Motzkin.
1864 * Look through the constraints of "bmap" for constraints on the argument
1865 * of the integer division and use them to construct constraints on the
1866 * integer division itself. These constraints can then be combined
1867 * during the Fourier-Motzkin elimination.
1868 * Note that it is only useful to introduce lower bounds on "div"
1869 * if "bmap" already contains upper bounds on "div" as the newly
1870 * introduce lower bounds can then be combined with the pre-existing
1871 * upper bounds. Similarly for upper bounds.
1872 * We therefore first check if "bmap" contains any lower and/or upper bounds
1873 * on "div".
1875 * It is interesting to note that the introduction of these constraints
1876 * can indeed lead to more accurate results, even when compared to
1877 * deriving constraints on the argument of "div" from constraints on "div".
1878 * Consider, for example, the set
1880 * { [i,j,k] : 3 + i + 2j >= 0 and 2 * [(i+2j)/4] <= k }
1882 * The second constraint can be rewritten as
1884 * 2 * [(-i-2j+3)/4] + k >= 0
1886 * from which we can derive
1888 * -i - 2j + 3 >= -2k
1890 * or
1892 * i + 2j <= 3 + 2k
1894 * Combined with the first constraint, we obtain
1896 * -3 <= 3 + 2k or k >= -3
1898 * If, on the other hand we derive a constraint on [(i+2j)/4] from
1899 * the first constraint, we obtain
1901 * [(i + 2j)/4] >= [-3/4] = -1
1903 * Combining this constraint with the second constraint, we obtain
1905 * k >= -2
1907 static __isl_give isl_basic_map *insert_bounds_on_div(
1908 __isl_take isl_basic_map *bmap, int div)
1910 int i;
1911 int check_lb, check_ub;
1912 isl_int v;
1913 unsigned total;
1915 if (!bmap)
1916 return NULL;
1918 if (isl_int_is_zero(bmap->div[div][0]))
1919 return bmap;
1921 total = isl_space_dim(bmap->dim, isl_dim_all);
1923 check_lb = 0;
1924 check_ub = 0;
1925 for (i = 0; (!check_lb || !check_ub) && i < bmap->n_ineq; ++i) {
1926 int s = isl_int_sgn(bmap->ineq[i][1 + total + div]);
1927 if (s > 0)
1928 check_ub = 1;
1929 if (s < 0)
1930 check_lb = 1;
1933 if (!check_lb && !check_ub)
1934 return bmap;
1936 isl_int_init(v);
1938 for (i = 0; bmap && i < bmap->n_ineq; ++i) {
1939 if (!isl_int_is_zero(bmap->ineq[i][1 + total + div]))
1940 continue;
1942 bmap = insert_bounds_on_div_from_ineq(bmap, div, i, total, v,
1943 check_lb, check_ub);
1946 isl_int_clear(v);
1948 return bmap;
1951 /* Remove all divs (recursively) involving any of the given dimensions
1952 * in their definitions.
1954 __isl_give isl_basic_map *isl_basic_map_remove_divs_involving_dims(
1955 __isl_take isl_basic_map *bmap,
1956 enum isl_dim_type type, unsigned first, unsigned n)
1958 int i;
1960 if (!bmap)
1961 return NULL;
1962 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
1963 goto error);
1964 first += isl_basic_map_offset(bmap, type);
1966 for (i = bmap->n_div - 1; i >= 0; --i) {
1967 if (!div_involves_vars(bmap, i, first, n))
1968 continue;
1969 bmap = insert_bounds_on_div(bmap, i);
1970 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
1971 if (!bmap)
1972 return NULL;
1973 i = bmap->n_div;
1976 return bmap;
1977 error:
1978 isl_basic_map_free(bmap);
1979 return NULL;
1982 __isl_give isl_basic_set *isl_basic_set_remove_divs_involving_dims(
1983 __isl_take isl_basic_set *bset,
1984 enum isl_dim_type type, unsigned first, unsigned n)
1986 return isl_basic_map_remove_divs_involving_dims(bset, type, first, n);
1989 __isl_give isl_map *isl_map_remove_divs_involving_dims(__isl_take isl_map *map,
1990 enum isl_dim_type type, unsigned first, unsigned n)
1992 int i;
1994 if (!map)
1995 return NULL;
1996 if (map->n == 0)
1997 return map;
1999 map = isl_map_cow(map);
2000 if (!map)
2001 return NULL;
2003 for (i = 0; i < map->n; ++i) {
2004 map->p[i] = isl_basic_map_remove_divs_involving_dims(map->p[i],
2005 type, first, n);
2006 if (!map->p[i])
2007 goto error;
2009 return map;
2010 error:
2011 isl_map_free(map);
2012 return NULL;
2015 __isl_give isl_set *isl_set_remove_divs_involving_dims(__isl_take isl_set *set,
2016 enum isl_dim_type type, unsigned first, unsigned n)
2018 return (isl_set *)isl_map_remove_divs_involving_dims((isl_map *)set,
2019 type, first, n);
2022 /* Does the desciption of "bmap" depend on the specified dimensions?
2023 * We also check whether the dimensions appear in any of the div definitions.
2024 * In principle there is no need for this check. If the dimensions appear
2025 * in a div definition, they also appear in the defining constraints of that
2026 * div.
2028 int isl_basic_map_involves_dims(__isl_keep isl_basic_map *bmap,
2029 enum isl_dim_type type, unsigned first, unsigned n)
2031 int i;
2033 if (!bmap)
2034 return -1;
2036 if (first + n > isl_basic_map_dim(bmap, type))
2037 isl_die(bmap->ctx, isl_error_invalid,
2038 "index out of bounds", return -1);
2040 first += isl_basic_map_offset(bmap, type);
2041 for (i = 0; i < bmap->n_eq; ++i)
2042 if (isl_seq_first_non_zero(bmap->eq[i] + first, n) >= 0)
2043 return 1;
2044 for (i = 0; i < bmap->n_ineq; ++i)
2045 if (isl_seq_first_non_zero(bmap->ineq[i] + first, n) >= 0)
2046 return 1;
2047 for (i = 0; i < bmap->n_div; ++i) {
2048 if (isl_int_is_zero(bmap->div[i][0]))
2049 continue;
2050 if (isl_seq_first_non_zero(bmap->div[i] + 1 + first, n) >= 0)
2051 return 1;
2054 return 0;
2057 int isl_map_involves_dims(__isl_keep isl_map *map,
2058 enum isl_dim_type type, unsigned first, unsigned n)
2060 int i;
2062 if (!map)
2063 return -1;
2065 if (first + n > isl_map_dim(map, type))
2066 isl_die(map->ctx, isl_error_invalid,
2067 "index out of bounds", return -1);
2069 for (i = 0; i < map->n; ++i) {
2070 int involves = isl_basic_map_involves_dims(map->p[i],
2071 type, first, n);
2072 if (involves < 0 || involves)
2073 return involves;
2076 return 0;
2079 int isl_basic_set_involves_dims(__isl_keep isl_basic_set *bset,
2080 enum isl_dim_type type, unsigned first, unsigned n)
2082 return isl_basic_map_involves_dims(bset, type, first, n);
2085 int isl_set_involves_dims(__isl_keep isl_set *set,
2086 enum isl_dim_type type, unsigned first, unsigned n)
2088 return isl_map_involves_dims(set, type, first, n);
2091 /* Return true if the definition of the given div is unknown or depends
2092 * on unknown divs.
2094 static int div_is_unknown(__isl_keep isl_basic_map *bmap, int div)
2096 int i;
2097 unsigned div_offset = isl_basic_map_offset(bmap, isl_dim_div);
2099 if (isl_int_is_zero(bmap->div[div][0]))
2100 return 1;
2102 for (i = bmap->n_div - 1; i >= 0; --i) {
2103 if (isl_int_is_zero(bmap->div[div][1 + div_offset + i]))
2104 continue;
2105 if (div_is_unknown(bmap, i))
2106 return 1;
2109 return 0;
2112 /* Remove all divs that are unknown or defined in terms of unknown divs.
2114 __isl_give isl_basic_map *isl_basic_map_remove_unknown_divs(
2115 __isl_take isl_basic_map *bmap)
2117 int i;
2119 if (!bmap)
2120 return NULL;
2122 for (i = bmap->n_div - 1; i >= 0; --i) {
2123 if (!div_is_unknown(bmap, i))
2124 continue;
2125 bmap = isl_basic_map_remove_dims(bmap, isl_dim_div, i, 1);
2126 if (!bmap)
2127 return NULL;
2128 i = bmap->n_div;
2131 return bmap;
2134 __isl_give isl_map *isl_map_remove_unknown_divs(__isl_take isl_map *map)
2136 int i;
2138 if (!map)
2139 return NULL;
2140 if (map->n == 0)
2141 return map;
2143 map = isl_map_cow(map);
2144 if (!map)
2145 return NULL;
2147 for (i = 0; i < map->n; ++i) {
2148 map->p[i] = isl_basic_map_remove_unknown_divs(map->p[i]);
2149 if (!map->p[i])
2150 goto error;
2152 return map;
2153 error:
2154 isl_map_free(map);
2155 return NULL;
2158 __isl_give isl_set *isl_set_remove_unknown_divs(__isl_take isl_set *set)
2160 return (isl_set *)isl_map_remove_unknown_divs((isl_map *)set);
2163 __isl_give isl_basic_set *isl_basic_set_remove_dims(
2164 __isl_take isl_basic_set *bset,
2165 enum isl_dim_type type, unsigned first, unsigned n)
2167 return (isl_basic_set *)
2168 isl_basic_map_remove_dims((isl_basic_map *)bset, type, first, n);
2171 struct isl_map *isl_map_remove_dims(struct isl_map *map,
2172 enum isl_dim_type type, unsigned first, unsigned n)
2174 int i;
2176 if (n == 0)
2177 return map;
2179 map = isl_map_cow(map);
2180 if (!map)
2181 return NULL;
2182 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
2184 for (i = 0; i < map->n; ++i) {
2185 map->p[i] = isl_basic_map_eliminate_vars(map->p[i],
2186 isl_basic_map_offset(map->p[i], type) - 1 + first, n);
2187 if (!map->p[i])
2188 goto error;
2190 map = isl_map_drop(map, type, first, n);
2191 return map;
2192 error:
2193 isl_map_free(map);
2194 return NULL;
2197 __isl_give isl_set *isl_set_remove_dims(__isl_take isl_set *bset,
2198 enum isl_dim_type type, unsigned first, unsigned n)
2200 return (isl_set *)isl_map_remove_dims((isl_map *)bset, type, first, n);
2203 /* Project out n inputs starting at first using Fourier-Motzkin */
2204 struct isl_map *isl_map_remove_inputs(struct isl_map *map,
2205 unsigned first, unsigned n)
2207 return isl_map_remove_dims(map, isl_dim_in, first, n);
2210 static void dump_term(struct isl_basic_map *bmap,
2211 isl_int c, int pos, FILE *out)
2213 const char *name;
2214 unsigned in = isl_basic_map_n_in(bmap);
2215 unsigned dim = in + isl_basic_map_n_out(bmap);
2216 unsigned nparam = isl_basic_map_n_param(bmap);
2217 if (!pos)
2218 isl_int_print(out, c, 0);
2219 else {
2220 if (!isl_int_is_one(c))
2221 isl_int_print(out, c, 0);
2222 if (pos < 1 + nparam) {
2223 name = isl_space_get_dim_name(bmap->dim,
2224 isl_dim_param, pos - 1);
2225 if (name)
2226 fprintf(out, "%s", name);
2227 else
2228 fprintf(out, "p%d", pos - 1);
2229 } else if (pos < 1 + nparam + in)
2230 fprintf(out, "i%d", pos - 1 - nparam);
2231 else if (pos < 1 + nparam + dim)
2232 fprintf(out, "o%d", pos - 1 - nparam - in);
2233 else
2234 fprintf(out, "e%d", pos - 1 - nparam - dim);
2238 static void dump_constraint_sign(struct isl_basic_map *bmap, isl_int *c,
2239 int sign, FILE *out)
2241 int i;
2242 int first;
2243 unsigned len = 1 + isl_basic_map_total_dim(bmap);
2244 isl_int v;
2246 isl_int_init(v);
2247 for (i = 0, first = 1; i < len; ++i) {
2248 if (isl_int_sgn(c[i]) * sign <= 0)
2249 continue;
2250 if (!first)
2251 fprintf(out, " + ");
2252 first = 0;
2253 isl_int_abs(v, c[i]);
2254 dump_term(bmap, v, i, out);
2256 isl_int_clear(v);
2257 if (first)
2258 fprintf(out, "0");
2261 static void dump_constraint(struct isl_basic_map *bmap, isl_int *c,
2262 const char *op, FILE *out, int indent)
2264 int i;
2266 fprintf(out, "%*s", indent, "");
2268 dump_constraint_sign(bmap, c, 1, out);
2269 fprintf(out, " %s ", op);
2270 dump_constraint_sign(bmap, c, -1, out);
2272 fprintf(out, "\n");
2274 for (i = bmap->n_div; i < bmap->extra; ++i) {
2275 if (isl_int_is_zero(c[1+isl_space_dim(bmap->dim, isl_dim_all)+i]))
2276 continue;
2277 fprintf(out, "%*s", indent, "");
2278 fprintf(out, "ERROR: unused div coefficient not zero\n");
2279 abort();
2283 static void dump_constraints(struct isl_basic_map *bmap,
2284 isl_int **c, unsigned n,
2285 const char *op, FILE *out, int indent)
2287 int i;
2289 for (i = 0; i < n; ++i)
2290 dump_constraint(bmap, c[i], op, out, indent);
2293 static void dump_affine(struct isl_basic_map *bmap, isl_int *exp, FILE *out)
2295 int j;
2296 int first = 1;
2297 unsigned total = isl_basic_map_total_dim(bmap);
2299 for (j = 0; j < 1 + total; ++j) {
2300 if (isl_int_is_zero(exp[j]))
2301 continue;
2302 if (!first && isl_int_is_pos(exp[j]))
2303 fprintf(out, "+");
2304 dump_term(bmap, exp[j], j, out);
2305 first = 0;
2309 static void dump(struct isl_basic_map *bmap, FILE *out, int indent)
2311 int i;
2313 dump_constraints(bmap, bmap->eq, bmap->n_eq, "=", out, indent);
2314 dump_constraints(bmap, bmap->ineq, bmap->n_ineq, ">=", out, indent);
2316 for (i = 0; i < bmap->n_div; ++i) {
2317 fprintf(out, "%*s", indent, "");
2318 fprintf(out, "e%d = [(", i);
2319 dump_affine(bmap, bmap->div[i]+1, out);
2320 fprintf(out, ")/");
2321 isl_int_print(out, bmap->div[i][0], 0);
2322 fprintf(out, "]\n");
2326 void isl_basic_set_print_internal(struct isl_basic_set *bset,
2327 FILE *out, int indent)
2329 if (!bset) {
2330 fprintf(out, "null basic set\n");
2331 return;
2334 fprintf(out, "%*s", indent, "");
2335 fprintf(out, "ref: %d, nparam: %d, dim: %d, extra: %d, flags: %x\n",
2336 bset->ref, bset->dim->nparam, bset->dim->n_out,
2337 bset->extra, bset->flags);
2338 dump((struct isl_basic_map *)bset, out, indent);
2341 void isl_basic_map_print_internal(struct isl_basic_map *bmap,
2342 FILE *out, int indent)
2344 if (!bmap) {
2345 fprintf(out, "null basic map\n");
2346 return;
2349 fprintf(out, "%*s", indent, "");
2350 fprintf(out, "ref: %d, nparam: %d, in: %d, out: %d, extra: %d, "
2351 "flags: %x, n_name: %d\n",
2352 bmap->ref,
2353 bmap->dim->nparam, bmap->dim->n_in, bmap->dim->n_out,
2354 bmap->extra, bmap->flags, bmap->dim->n_id);
2355 dump(bmap, out, indent);
2358 int isl_inequality_negate(struct isl_basic_map *bmap, unsigned pos)
2360 unsigned total;
2361 if (!bmap)
2362 return -1;
2363 total = isl_basic_map_total_dim(bmap);
2364 isl_assert(bmap->ctx, pos < bmap->n_ineq, return -1);
2365 isl_seq_neg(bmap->ineq[pos], bmap->ineq[pos], 1 + total);
2366 isl_int_sub_ui(bmap->ineq[pos][0], bmap->ineq[pos][0], 1);
2367 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
2368 return 0;
2371 __isl_give isl_set *isl_set_alloc_space(__isl_take isl_space *dim, int n,
2372 unsigned flags)
2374 struct isl_set *set;
2376 if (!dim)
2377 return NULL;
2378 isl_assert(dim->ctx, dim->n_in == 0, goto error);
2379 isl_assert(dim->ctx, n >= 0, goto error);
2380 set = isl_alloc(dim->ctx, struct isl_set,
2381 sizeof(struct isl_set) +
2382 (n - 1) * sizeof(struct isl_basic_set *));
2383 if (!set)
2384 goto error;
2386 set->ctx = dim->ctx;
2387 isl_ctx_ref(set->ctx);
2388 set->ref = 1;
2389 set->size = n;
2390 set->n = 0;
2391 set->dim = dim;
2392 set->flags = flags;
2393 return set;
2394 error:
2395 isl_space_free(dim);
2396 return NULL;
2399 struct isl_set *isl_set_alloc(struct isl_ctx *ctx,
2400 unsigned nparam, unsigned dim, int n, unsigned flags)
2402 struct isl_set *set;
2403 isl_space *dims;
2405 dims = isl_space_alloc(ctx, nparam, 0, dim);
2406 if (!dims)
2407 return NULL;
2409 set = isl_set_alloc_space(dims, n, flags);
2410 return set;
2413 /* Make sure "map" has room for at least "n" more basic maps.
2415 struct isl_map *isl_map_grow(struct isl_map *map, int n)
2417 int i;
2418 struct isl_map *grown = NULL;
2420 if (!map)
2421 return NULL;
2422 isl_assert(map->ctx, n >= 0, goto error);
2423 if (map->n + n <= map->size)
2424 return map;
2425 grown = isl_map_alloc_space(isl_map_get_space(map), map->n + n, map->flags);
2426 if (!grown)
2427 goto error;
2428 for (i = 0; i < map->n; ++i) {
2429 grown->p[i] = isl_basic_map_copy(map->p[i]);
2430 if (!grown->p[i])
2431 goto error;
2432 grown->n++;
2434 isl_map_free(map);
2435 return grown;
2436 error:
2437 isl_map_free(grown);
2438 isl_map_free(map);
2439 return NULL;
2442 /* Make sure "set" has room for at least "n" more basic sets.
2444 struct isl_set *isl_set_grow(struct isl_set *set, int n)
2446 return (struct isl_set *)isl_map_grow((struct isl_map *)set, n);
2449 struct isl_set *isl_set_dup(struct isl_set *set)
2451 int i;
2452 struct isl_set *dup;
2454 if (!set)
2455 return NULL;
2457 dup = isl_set_alloc_space(isl_space_copy(set->dim), set->n, set->flags);
2458 if (!dup)
2459 return NULL;
2460 for (i = 0; i < set->n; ++i)
2461 dup = isl_set_add_basic_set(dup, isl_basic_set_copy(set->p[i]));
2462 return dup;
2465 struct isl_set *isl_set_from_basic_set(struct isl_basic_set *bset)
2467 return isl_map_from_basic_map(bset);
2470 struct isl_map *isl_map_from_basic_map(struct isl_basic_map *bmap)
2472 struct isl_map *map;
2474 if (!bmap)
2475 return NULL;
2477 map = isl_map_alloc_space(isl_space_copy(bmap->dim), 1, ISL_MAP_DISJOINT);
2478 return isl_map_add_basic_map(map, bmap);
2481 __isl_give isl_set *isl_set_add_basic_set(__isl_take isl_set *set,
2482 __isl_take isl_basic_set *bset)
2484 return (struct isl_set *)isl_map_add_basic_map((struct isl_map *)set,
2485 (struct isl_basic_map *)bset);
2488 void *isl_set_free(__isl_take isl_set *set)
2490 int i;
2492 if (!set)
2493 return NULL;
2495 if (--set->ref > 0)
2496 return NULL;
2498 isl_ctx_deref(set->ctx);
2499 for (i = 0; i < set->n; ++i)
2500 isl_basic_set_free(set->p[i]);
2501 isl_space_free(set->dim);
2502 free(set);
2504 return NULL;
2507 void isl_set_print_internal(struct isl_set *set, FILE *out, int indent)
2509 int i;
2511 if (!set) {
2512 fprintf(out, "null set\n");
2513 return;
2516 fprintf(out, "%*s", indent, "");
2517 fprintf(out, "ref: %d, n: %d, nparam: %d, dim: %d, flags: %x\n",
2518 set->ref, set->n, set->dim->nparam, set->dim->n_out,
2519 set->flags);
2520 for (i = 0; i < set->n; ++i) {
2521 fprintf(out, "%*s", indent, "");
2522 fprintf(out, "basic set %d:\n", i);
2523 isl_basic_set_print_internal(set->p[i], out, indent+4);
2527 void isl_map_print_internal(struct isl_map *map, FILE *out, int indent)
2529 int i;
2531 if (!map) {
2532 fprintf(out, "null map\n");
2533 return;
2536 fprintf(out, "%*s", indent, "");
2537 fprintf(out, "ref: %d, n: %d, nparam: %d, in: %d, out: %d, "
2538 "flags: %x, n_name: %d\n",
2539 map->ref, map->n, map->dim->nparam, map->dim->n_in,
2540 map->dim->n_out, map->flags, map->dim->n_id);
2541 for (i = 0; i < map->n; ++i) {
2542 fprintf(out, "%*s", indent, "");
2543 fprintf(out, "basic map %d:\n", i);
2544 isl_basic_map_print_internal(map->p[i], out, indent+4);
2548 struct isl_basic_map *isl_basic_map_intersect_domain(
2549 struct isl_basic_map *bmap, struct isl_basic_set *bset)
2551 struct isl_basic_map *bmap_domain;
2553 if (!bmap || !bset)
2554 goto error;
2556 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
2557 bset->dim, isl_dim_param), goto error);
2559 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
2560 isl_assert(bset->ctx,
2561 isl_basic_map_compatible_domain(bmap, bset), goto error);
2563 bmap = isl_basic_map_cow(bmap);
2564 if (!bmap)
2565 goto error;
2566 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
2567 bset->n_div, bset->n_eq, bset->n_ineq);
2568 bmap_domain = isl_basic_map_from_domain(bset);
2569 bmap = add_constraints(bmap, bmap_domain, 0, 0);
2571 bmap = isl_basic_map_simplify(bmap);
2572 return isl_basic_map_finalize(bmap);
2573 error:
2574 isl_basic_map_free(bmap);
2575 isl_basic_set_free(bset);
2576 return NULL;
2579 struct isl_basic_map *isl_basic_map_intersect_range(
2580 struct isl_basic_map *bmap, struct isl_basic_set *bset)
2582 struct isl_basic_map *bmap_range;
2584 if (!bmap || !bset)
2585 goto error;
2587 isl_assert(bset->ctx, isl_space_match(bmap->dim, isl_dim_param,
2588 bset->dim, isl_dim_param), goto error);
2590 if (isl_space_dim(bset->dim, isl_dim_set) != 0)
2591 isl_assert(bset->ctx,
2592 isl_basic_map_compatible_range(bmap, bset), goto error);
2594 if (isl_basic_set_is_universe(bset)) {
2595 isl_basic_set_free(bset);
2596 return bmap;
2599 bmap = isl_basic_map_cow(bmap);
2600 if (!bmap)
2601 goto error;
2602 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
2603 bset->n_div, bset->n_eq, bset->n_ineq);
2604 bmap_range = isl_basic_map_from_basic_set(bset, isl_space_copy(bset->dim));
2605 bmap = add_constraints(bmap, bmap_range, 0, 0);
2607 bmap = isl_basic_map_simplify(bmap);
2608 return isl_basic_map_finalize(bmap);
2609 error:
2610 isl_basic_map_free(bmap);
2611 isl_basic_set_free(bset);
2612 return NULL;
2615 int isl_basic_map_contains(struct isl_basic_map *bmap, struct isl_vec *vec)
2617 int i;
2618 unsigned total;
2619 isl_int s;
2621 total = 1 + isl_basic_map_total_dim(bmap);
2622 if (total != vec->size)
2623 return -1;
2625 isl_int_init(s);
2627 for (i = 0; i < bmap->n_eq; ++i) {
2628 isl_seq_inner_product(vec->el, bmap->eq[i], total, &s);
2629 if (!isl_int_is_zero(s)) {
2630 isl_int_clear(s);
2631 return 0;
2635 for (i = 0; i < bmap->n_ineq; ++i) {
2636 isl_seq_inner_product(vec->el, bmap->ineq[i], total, &s);
2637 if (isl_int_is_neg(s)) {
2638 isl_int_clear(s);
2639 return 0;
2643 isl_int_clear(s);
2645 return 1;
2648 int isl_basic_set_contains(struct isl_basic_set *bset, struct isl_vec *vec)
2650 return isl_basic_map_contains((struct isl_basic_map *)bset, vec);
2653 struct isl_basic_map *isl_basic_map_intersect(
2654 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
2656 struct isl_vec *sample = NULL;
2658 if (!bmap1 || !bmap2)
2659 goto error;
2661 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
2662 bmap2->dim, isl_dim_param), goto error);
2663 if (isl_space_dim(bmap1->dim, isl_dim_all) ==
2664 isl_space_dim(bmap1->dim, isl_dim_param) &&
2665 isl_space_dim(bmap2->dim, isl_dim_all) !=
2666 isl_space_dim(bmap2->dim, isl_dim_param))
2667 return isl_basic_map_intersect(bmap2, bmap1);
2669 if (isl_space_dim(bmap2->dim, isl_dim_all) !=
2670 isl_space_dim(bmap2->dim, isl_dim_param))
2671 isl_assert(bmap1->ctx,
2672 isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
2674 if (bmap1->sample &&
2675 isl_basic_map_contains(bmap1, bmap1->sample) > 0 &&
2676 isl_basic_map_contains(bmap2, bmap1->sample) > 0)
2677 sample = isl_vec_copy(bmap1->sample);
2678 else if (bmap2->sample &&
2679 isl_basic_map_contains(bmap1, bmap2->sample) > 0 &&
2680 isl_basic_map_contains(bmap2, bmap2->sample) > 0)
2681 sample = isl_vec_copy(bmap2->sample);
2683 bmap1 = isl_basic_map_cow(bmap1);
2684 if (!bmap1)
2685 goto error;
2686 bmap1 = isl_basic_map_extend_space(bmap1, isl_space_copy(bmap1->dim),
2687 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
2688 bmap1 = add_constraints(bmap1, bmap2, 0, 0);
2690 if (!bmap1)
2691 isl_vec_free(sample);
2692 else if (sample) {
2693 isl_vec_free(bmap1->sample);
2694 bmap1->sample = sample;
2697 bmap1 = isl_basic_map_simplify(bmap1);
2698 return isl_basic_map_finalize(bmap1);
2699 error:
2700 if (sample)
2701 isl_vec_free(sample);
2702 isl_basic_map_free(bmap1);
2703 isl_basic_map_free(bmap2);
2704 return NULL;
2707 struct isl_basic_set *isl_basic_set_intersect(
2708 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
2710 return (struct isl_basic_set *)
2711 isl_basic_map_intersect(
2712 (struct isl_basic_map *)bset1,
2713 (struct isl_basic_map *)bset2);
2716 __isl_give isl_basic_set *isl_basic_set_intersect_params(
2717 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
2719 return isl_basic_set_intersect(bset1, bset2);
2722 /* Special case of isl_map_intersect, where both map1 and map2
2723 * are convex, without any divs and such that either map1 or map2
2724 * contains a single constraint. This constraint is then simply
2725 * added to the other map.
2727 static __isl_give isl_map *map_intersect_add_constraint(
2728 __isl_take isl_map *map1, __isl_take isl_map *map2)
2730 isl_assert(map1->ctx, map1->n == 1, goto error);
2731 isl_assert(map2->ctx, map1->n == 1, goto error);
2732 isl_assert(map1->ctx, map1->p[0]->n_div == 0, goto error);
2733 isl_assert(map2->ctx, map1->p[0]->n_div == 0, goto error);
2735 if (map2->p[0]->n_eq + map2->p[0]->n_ineq != 1)
2736 return isl_map_intersect(map2, map1);
2738 isl_assert(map2->ctx,
2739 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1, goto error);
2741 map1 = isl_map_cow(map1);
2742 if (!map1)
2743 goto error;
2744 if (isl_map_plain_is_empty(map1)) {
2745 isl_map_free(map2);
2746 return map1;
2748 map1->p[0] = isl_basic_map_cow(map1->p[0]);
2749 if (map2->p[0]->n_eq == 1)
2750 map1->p[0] = isl_basic_map_add_eq(map1->p[0], map2->p[0]->eq[0]);
2751 else
2752 map1->p[0] = isl_basic_map_add_ineq(map1->p[0],
2753 map2->p[0]->ineq[0]);
2755 map1->p[0] = isl_basic_map_simplify(map1->p[0]);
2756 map1->p[0] = isl_basic_map_finalize(map1->p[0]);
2757 if (!map1->p[0])
2758 goto error;
2760 if (isl_basic_map_plain_is_empty(map1->p[0])) {
2761 isl_basic_map_free(map1->p[0]);
2762 map1->n = 0;
2765 isl_map_free(map2);
2767 return map1;
2768 error:
2769 isl_map_free(map1);
2770 isl_map_free(map2);
2771 return NULL;
2774 /* map2 may be either a parameter domain or a map living in the same
2775 * space as map1.
2777 static __isl_give isl_map *map_intersect_internal(__isl_take isl_map *map1,
2778 __isl_take isl_map *map2)
2780 unsigned flags = 0;
2781 struct isl_map *result;
2782 int i, j;
2784 if (!map1 || !map2)
2785 goto error;
2787 if (isl_map_plain_is_empty(map1) &&
2788 isl_space_is_equal(map1->dim, map2->dim)) {
2789 isl_map_free(map2);
2790 return map1;
2792 if (isl_map_plain_is_empty(map2) &&
2793 isl_space_is_equal(map1->dim, map2->dim)) {
2794 isl_map_free(map1);
2795 return map2;
2798 if (map1->n == 1 && map2->n == 1 &&
2799 map1->p[0]->n_div == 0 && map2->p[0]->n_div == 0 &&
2800 isl_space_is_equal(map1->dim, map2->dim) &&
2801 (map1->p[0]->n_eq + map1->p[0]->n_ineq == 1 ||
2802 map2->p[0]->n_eq + map2->p[0]->n_ineq == 1))
2803 return map_intersect_add_constraint(map1, map2);
2805 if (isl_space_dim(map2->dim, isl_dim_all) !=
2806 isl_space_dim(map2->dim, isl_dim_param))
2807 isl_assert(map1->ctx,
2808 isl_space_is_equal(map1->dim, map2->dim), goto error);
2810 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
2811 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
2812 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
2814 result = isl_map_alloc_space(isl_space_copy(map1->dim),
2815 map1->n * map2->n, flags);
2816 if (!result)
2817 goto error;
2818 for (i = 0; i < map1->n; ++i)
2819 for (j = 0; j < map2->n; ++j) {
2820 struct isl_basic_map *part;
2821 part = isl_basic_map_intersect(
2822 isl_basic_map_copy(map1->p[i]),
2823 isl_basic_map_copy(map2->p[j]));
2824 if (isl_basic_map_is_empty(part) < 0)
2825 goto error;
2826 result = isl_map_add_basic_map(result, part);
2827 if (!result)
2828 goto error;
2830 isl_map_free(map1);
2831 isl_map_free(map2);
2832 return result;
2833 error:
2834 isl_map_free(map1);
2835 isl_map_free(map2);
2836 return NULL;
2839 static __isl_give isl_map *map_intersect(__isl_take isl_map *map1,
2840 __isl_take isl_map *map2)
2842 if (!map1 || !map2)
2843 goto error;
2844 if (!isl_space_is_equal(map1->dim, map2->dim))
2845 isl_die(isl_map_get_ctx(map1), isl_error_invalid,
2846 "spaces don't match", goto error);
2847 return map_intersect_internal(map1, map2);
2848 error:
2849 isl_map_free(map1);
2850 isl_map_free(map2);
2851 return NULL;
2854 __isl_give isl_map *isl_map_intersect(__isl_take isl_map *map1,
2855 __isl_take isl_map *map2)
2857 return isl_map_align_params_map_map_and(map1, map2, &map_intersect);
2860 struct isl_set *isl_set_intersect(struct isl_set *set1, struct isl_set *set2)
2862 return (struct isl_set *)
2863 isl_map_intersect((struct isl_map *)set1,
2864 (struct isl_map *)set2);
2867 /* map_intersect_internal accepts intersections
2868 * with parameter domains, so we can just call that function.
2870 static __isl_give isl_map *map_intersect_params(__isl_take isl_map *map,
2871 __isl_take isl_set *params)
2873 return map_intersect_internal(map, params);
2876 __isl_give isl_map *isl_map_intersect_params(__isl_take isl_map *map1,
2877 __isl_take isl_map *map2)
2879 return isl_map_align_params_map_map_and(map1, map2, &map_intersect_params);
2882 __isl_give isl_set *isl_set_intersect_params(__isl_take isl_set *set,
2883 __isl_take isl_set *params)
2885 return isl_map_intersect_params(set, params);
2888 struct isl_basic_map *isl_basic_map_reverse(struct isl_basic_map *bmap)
2890 isl_space *dim;
2891 struct isl_basic_set *bset;
2892 unsigned in;
2894 if (!bmap)
2895 return NULL;
2896 bmap = isl_basic_map_cow(bmap);
2897 if (!bmap)
2898 return NULL;
2899 dim = isl_space_reverse(isl_space_copy(bmap->dim));
2900 in = isl_basic_map_n_in(bmap);
2901 bset = isl_basic_set_from_basic_map(bmap);
2902 bset = isl_basic_set_swap_vars(bset, in);
2903 return isl_basic_map_from_basic_set(bset, dim);
2906 static __isl_give isl_basic_map *basic_map_space_reset(
2907 __isl_take isl_basic_map *bmap, enum isl_dim_type type)
2909 isl_space *space;
2911 if (!isl_space_is_named_or_nested(bmap->dim, type))
2912 return bmap;
2914 space = isl_basic_map_get_space(bmap);
2915 space = isl_space_reset(space, type);
2916 bmap = isl_basic_map_reset_space(bmap, space);
2917 return bmap;
2920 __isl_give isl_basic_map *isl_basic_map_insert_dims(
2921 __isl_take isl_basic_map *bmap, enum isl_dim_type type,
2922 unsigned pos, unsigned n)
2924 isl_space *res_dim;
2925 struct isl_basic_map *res;
2926 struct isl_dim_map *dim_map;
2927 unsigned total, off;
2928 enum isl_dim_type t;
2930 if (n == 0)
2931 return basic_map_space_reset(bmap, type);
2933 if (!bmap)
2934 return NULL;
2936 res_dim = isl_space_insert_dims(isl_basic_map_get_space(bmap), type, pos, n);
2938 total = isl_basic_map_total_dim(bmap) + n;
2939 dim_map = isl_dim_map_alloc(bmap->ctx, total);
2940 off = 0;
2941 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
2942 if (t != type) {
2943 isl_dim_map_dim(dim_map, bmap->dim, t, off);
2944 } else {
2945 unsigned size = isl_basic_map_dim(bmap, t);
2946 isl_dim_map_dim_range(dim_map, bmap->dim, t,
2947 0, pos, off);
2948 isl_dim_map_dim_range(dim_map, bmap->dim, t,
2949 pos, size - pos, off + pos + n);
2951 off += isl_space_dim(res_dim, t);
2953 isl_dim_map_div(dim_map, bmap, off);
2955 res = isl_basic_map_alloc_space(res_dim,
2956 bmap->n_div, bmap->n_eq, bmap->n_ineq);
2957 if (isl_basic_map_is_rational(bmap))
2958 res = isl_basic_map_set_rational(res);
2959 if (isl_basic_map_plain_is_empty(bmap)) {
2960 isl_basic_map_free(bmap);
2961 return isl_basic_map_set_to_empty(res);
2963 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
2964 return isl_basic_map_finalize(res);
2967 __isl_give isl_basic_set *isl_basic_set_insert_dims(
2968 __isl_take isl_basic_set *bset,
2969 enum isl_dim_type type, unsigned pos, unsigned n)
2971 return isl_basic_map_insert_dims(bset, type, pos, n);
2974 __isl_give isl_basic_map *isl_basic_map_add(__isl_take isl_basic_map *bmap,
2975 enum isl_dim_type type, unsigned n)
2977 if (!bmap)
2978 return NULL;
2979 return isl_basic_map_insert_dims(bmap, type,
2980 isl_basic_map_dim(bmap, type), n);
2983 __isl_give isl_basic_set *isl_basic_set_add(__isl_take isl_basic_set *bset,
2984 enum isl_dim_type type, unsigned n)
2986 if (!bset)
2987 return NULL;
2988 isl_assert(bset->ctx, type != isl_dim_in, goto error);
2989 return (isl_basic_set *)isl_basic_map_add((isl_basic_map *)bset, type, n);
2990 error:
2991 isl_basic_set_free(bset);
2992 return NULL;
2995 static __isl_give isl_map *map_space_reset(__isl_take isl_map *map,
2996 enum isl_dim_type type)
2998 isl_space *space;
3000 if (!map || !isl_space_is_named_or_nested(map->dim, type))
3001 return map;
3003 space = isl_map_get_space(map);
3004 space = isl_space_reset(space, type);
3005 map = isl_map_reset_space(map, space);
3006 return map;
3009 __isl_give isl_map *isl_map_insert_dims(__isl_take isl_map *map,
3010 enum isl_dim_type type, unsigned pos, unsigned n)
3012 int i;
3014 if (n == 0)
3015 return map_space_reset(map, type);
3017 map = isl_map_cow(map);
3018 if (!map)
3019 return NULL;
3021 map->dim = isl_space_insert_dims(map->dim, type, pos, n);
3022 if (!map->dim)
3023 goto error;
3025 for (i = 0; i < map->n; ++i) {
3026 map->p[i] = isl_basic_map_insert_dims(map->p[i], type, pos, n);
3027 if (!map->p[i])
3028 goto error;
3031 return map;
3032 error:
3033 isl_map_free(map);
3034 return NULL;
3037 __isl_give isl_set *isl_set_insert_dims(__isl_take isl_set *set,
3038 enum isl_dim_type type, unsigned pos, unsigned n)
3040 return isl_map_insert_dims(set, type, pos, n);
3043 __isl_give isl_map *isl_map_add_dims(__isl_take isl_map *map,
3044 enum isl_dim_type type, unsigned n)
3046 if (!map)
3047 return NULL;
3048 return isl_map_insert_dims(map, type, isl_map_dim(map, type), n);
3051 __isl_give isl_set *isl_set_add_dims(__isl_take isl_set *set,
3052 enum isl_dim_type type, unsigned n)
3054 if (!set)
3055 return NULL;
3056 isl_assert(set->ctx, type != isl_dim_in, goto error);
3057 return (isl_set *)isl_map_add_dims((isl_map *)set, type, n);
3058 error:
3059 isl_set_free(set);
3060 return NULL;
3063 __isl_give isl_basic_map *isl_basic_map_move_dims(
3064 __isl_take isl_basic_map *bmap,
3065 enum isl_dim_type dst_type, unsigned dst_pos,
3066 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3068 struct isl_dim_map *dim_map;
3069 struct isl_basic_map *res;
3070 enum isl_dim_type t;
3071 unsigned total, off;
3073 if (!bmap)
3074 return NULL;
3075 if (n == 0)
3076 return bmap;
3078 isl_assert(bmap->ctx, src_pos + n <= isl_basic_map_dim(bmap, src_type),
3079 goto error);
3081 if (dst_type == src_type && dst_pos == src_pos)
3082 return bmap;
3084 isl_assert(bmap->ctx, dst_type != src_type, goto error);
3086 if (pos(bmap->dim, dst_type) + dst_pos ==
3087 pos(bmap->dim, src_type) + src_pos +
3088 ((src_type < dst_type) ? n : 0)) {
3089 bmap = isl_basic_map_cow(bmap);
3090 if (!bmap)
3091 return NULL;
3093 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3094 src_type, src_pos, n);
3095 if (!bmap->dim)
3096 goto error;
3098 bmap = isl_basic_map_finalize(bmap);
3100 return bmap;
3103 total = isl_basic_map_total_dim(bmap);
3104 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3106 off = 0;
3107 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3108 unsigned size = isl_space_dim(bmap->dim, t);
3109 if (t == dst_type) {
3110 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3111 0, dst_pos, off);
3112 off += dst_pos;
3113 isl_dim_map_dim_range(dim_map, bmap->dim, src_type,
3114 src_pos, n, off);
3115 off += n;
3116 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3117 dst_pos, size - dst_pos, off);
3118 off += size - dst_pos;
3119 } else if (t == src_type) {
3120 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3121 0, src_pos, off);
3122 off += src_pos;
3123 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3124 src_pos + n, size - src_pos - n, off);
3125 off += size - src_pos - n;
3126 } else {
3127 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3128 off += size;
3131 isl_dim_map_div(dim_map, bmap, off);
3133 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3134 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3135 bmap = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3137 bmap->dim = isl_space_move_dims(bmap->dim, dst_type, dst_pos,
3138 src_type, src_pos, n);
3139 if (!bmap->dim)
3140 goto error;
3142 ISL_F_CLR(bmap, ISL_BASIC_MAP_NORMALIZED);
3143 bmap = isl_basic_map_gauss(bmap, NULL);
3144 bmap = isl_basic_map_finalize(bmap);
3146 return bmap;
3147 error:
3148 isl_basic_map_free(bmap);
3149 return NULL;
3152 __isl_give isl_basic_set *isl_basic_set_move_dims(__isl_take isl_basic_set *bset,
3153 enum isl_dim_type dst_type, unsigned dst_pos,
3154 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3156 return (isl_basic_set *)isl_basic_map_move_dims(
3157 (isl_basic_map *)bset, dst_type, dst_pos, src_type, src_pos, n);
3160 __isl_give isl_set *isl_set_move_dims(__isl_take isl_set *set,
3161 enum isl_dim_type dst_type, unsigned dst_pos,
3162 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3164 if (!set)
3165 return NULL;
3166 isl_assert(set->ctx, dst_type != isl_dim_in, goto error);
3167 return (isl_set *)isl_map_move_dims((isl_map *)set, dst_type, dst_pos,
3168 src_type, src_pos, n);
3169 error:
3170 isl_set_free(set);
3171 return NULL;
3174 __isl_give isl_map *isl_map_move_dims(__isl_take isl_map *map,
3175 enum isl_dim_type dst_type, unsigned dst_pos,
3176 enum isl_dim_type src_type, unsigned src_pos, unsigned n)
3178 int i;
3180 if (!map)
3181 return NULL;
3182 if (n == 0)
3183 return map;
3185 isl_assert(map->ctx, src_pos + n <= isl_map_dim(map, src_type),
3186 goto error);
3188 if (dst_type == src_type && dst_pos == src_pos)
3189 return map;
3191 isl_assert(map->ctx, dst_type != src_type, goto error);
3193 map = isl_map_cow(map);
3194 if (!map)
3195 return NULL;
3197 map->dim = isl_space_move_dims(map->dim, dst_type, dst_pos, src_type, src_pos, n);
3198 if (!map->dim)
3199 goto error;
3201 for (i = 0; i < map->n; ++i) {
3202 map->p[i] = isl_basic_map_move_dims(map->p[i],
3203 dst_type, dst_pos,
3204 src_type, src_pos, n);
3205 if (!map->p[i])
3206 goto error;
3209 return map;
3210 error:
3211 isl_map_free(map);
3212 return NULL;
3215 /* Move the specified dimensions to the last columns right before
3216 * the divs. Don't change the dimension specification of bmap.
3217 * That's the responsibility of the caller.
3219 static __isl_give isl_basic_map *move_last(__isl_take isl_basic_map *bmap,
3220 enum isl_dim_type type, unsigned first, unsigned n)
3222 struct isl_dim_map *dim_map;
3223 struct isl_basic_map *res;
3224 enum isl_dim_type t;
3225 unsigned total, off;
3227 if (!bmap)
3228 return NULL;
3229 if (pos(bmap->dim, type) + first + n ==
3230 1 + isl_space_dim(bmap->dim, isl_dim_all))
3231 return bmap;
3233 total = isl_basic_map_total_dim(bmap);
3234 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3236 off = 0;
3237 for (t = isl_dim_param; t <= isl_dim_out; ++t) {
3238 unsigned size = isl_space_dim(bmap->dim, t);
3239 if (t == type) {
3240 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3241 0, first, off);
3242 off += first;
3243 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3244 first, n, total - bmap->n_div - n);
3245 isl_dim_map_dim_range(dim_map, bmap->dim, t,
3246 first + n, size - (first + n), off);
3247 off += size - (first + n);
3248 } else {
3249 isl_dim_map_dim(dim_map, bmap->dim, t, off);
3250 off += size;
3253 isl_dim_map_div(dim_map, bmap, off + n);
3255 res = isl_basic_map_alloc_space(isl_basic_map_get_space(bmap),
3256 bmap->n_div, bmap->n_eq, bmap->n_ineq);
3257 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
3258 return res;
3261 /* Turn the n dimensions of type type, starting at first
3262 * into existentially quantified variables.
3264 __isl_give isl_basic_map *isl_basic_map_project_out(
3265 __isl_take isl_basic_map *bmap,
3266 enum isl_dim_type type, unsigned first, unsigned n)
3268 int i;
3269 size_t row_size;
3270 isl_int **new_div;
3271 isl_int *old;
3273 if (n == 0)
3274 return basic_map_space_reset(bmap, type);
3276 if (!bmap)
3277 return NULL;
3279 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL))
3280 return isl_basic_map_remove_dims(bmap, type, first, n);
3282 isl_assert(bmap->ctx, first + n <= isl_basic_map_dim(bmap, type),
3283 goto error);
3285 bmap = move_last(bmap, type, first, n);
3286 bmap = isl_basic_map_cow(bmap);
3287 if (!bmap)
3288 return NULL;
3290 row_size = 1 + isl_space_dim(bmap->dim, isl_dim_all) + bmap->extra;
3291 old = bmap->block2.data;
3292 bmap->block2 = isl_blk_extend(bmap->ctx, bmap->block2,
3293 (bmap->extra + n) * (1 + row_size));
3294 if (!bmap->block2.data)
3295 goto error;
3296 new_div = isl_alloc_array(bmap->ctx, isl_int *, bmap->extra + n);
3297 if (!new_div)
3298 goto error;
3299 for (i = 0; i < n; ++i) {
3300 new_div[i] = bmap->block2.data +
3301 (bmap->extra + i) * (1 + row_size);
3302 isl_seq_clr(new_div[i], 1 + row_size);
3304 for (i = 0; i < bmap->extra; ++i)
3305 new_div[n + i] = bmap->block2.data + (bmap->div[i] - old);
3306 free(bmap->div);
3307 bmap->div = new_div;
3308 bmap->n_div += n;
3309 bmap->extra += n;
3311 bmap->dim = isl_space_drop_dims(bmap->dim, type, first, n);
3312 if (!bmap->dim)
3313 goto error;
3314 bmap = isl_basic_map_simplify(bmap);
3315 bmap = isl_basic_map_drop_redundant_divs(bmap);
3316 return isl_basic_map_finalize(bmap);
3317 error:
3318 isl_basic_map_free(bmap);
3319 return NULL;
3322 /* Turn the n dimensions of type type, starting at first
3323 * into existentially quantified variables.
3325 struct isl_basic_set *isl_basic_set_project_out(struct isl_basic_set *bset,
3326 enum isl_dim_type type, unsigned first, unsigned n)
3328 return (isl_basic_set *)isl_basic_map_project_out(
3329 (isl_basic_map *)bset, type, first, n);
3332 /* Turn the n dimensions of type type, starting at first
3333 * into existentially quantified variables.
3335 __isl_give isl_map *isl_map_project_out(__isl_take isl_map *map,
3336 enum isl_dim_type type, unsigned first, unsigned n)
3338 int i;
3340 if (!map)
3341 return NULL;
3343 if (n == 0)
3344 return map_space_reset(map, type);
3346 isl_assert(map->ctx, first + n <= isl_map_dim(map, type), goto error);
3348 map = isl_map_cow(map);
3349 if (!map)
3350 return NULL;
3352 map->dim = isl_space_drop_dims(map->dim, type, first, n);
3353 if (!map->dim)
3354 goto error;
3356 for (i = 0; i < map->n; ++i) {
3357 map->p[i] = isl_basic_map_project_out(map->p[i], type, first, n);
3358 if (!map->p[i])
3359 goto error;
3362 return map;
3363 error:
3364 isl_map_free(map);
3365 return NULL;
3368 /* Turn the n dimensions of type type, starting at first
3369 * into existentially quantified variables.
3371 __isl_give isl_set *isl_set_project_out(__isl_take isl_set *set,
3372 enum isl_dim_type type, unsigned first, unsigned n)
3374 return (isl_set *)isl_map_project_out((isl_map *)set, type, first, n);
3377 static struct isl_basic_map *add_divs(struct isl_basic_map *bmap, unsigned n)
3379 int i, j;
3381 for (i = 0; i < n; ++i) {
3382 j = isl_basic_map_alloc_div(bmap);
3383 if (j < 0)
3384 goto error;
3385 isl_seq_clr(bmap->div[j], 1+1+isl_basic_map_total_dim(bmap));
3387 return bmap;
3388 error:
3389 isl_basic_map_free(bmap);
3390 return NULL;
3393 struct isl_basic_map *isl_basic_map_apply_range(
3394 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3396 isl_space *dim_result = NULL;
3397 struct isl_basic_map *bmap;
3398 unsigned n_in, n_out, n, nparam, total, pos;
3399 struct isl_dim_map *dim_map1, *dim_map2;
3401 if (!bmap1 || !bmap2)
3402 goto error;
3404 dim_result = isl_space_join(isl_space_copy(bmap1->dim),
3405 isl_space_copy(bmap2->dim));
3407 n_in = isl_basic_map_n_in(bmap1);
3408 n_out = isl_basic_map_n_out(bmap2);
3409 n = isl_basic_map_n_out(bmap1);
3410 nparam = isl_basic_map_n_param(bmap1);
3412 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + n;
3413 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
3414 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
3415 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
3416 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
3417 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
3418 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_in);
3419 isl_dim_map_div(dim_map1, bmap1, pos += n_out);
3420 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
3421 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
3422 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
3424 bmap = isl_basic_map_alloc_space(dim_result,
3425 bmap1->n_div + bmap2->n_div + n,
3426 bmap1->n_eq + bmap2->n_eq,
3427 bmap1->n_ineq + bmap2->n_ineq);
3428 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
3429 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
3430 bmap = add_divs(bmap, n);
3431 bmap = isl_basic_map_simplify(bmap);
3432 bmap = isl_basic_map_drop_redundant_divs(bmap);
3433 return isl_basic_map_finalize(bmap);
3434 error:
3435 isl_basic_map_free(bmap1);
3436 isl_basic_map_free(bmap2);
3437 return NULL;
3440 struct isl_basic_set *isl_basic_set_apply(
3441 struct isl_basic_set *bset, struct isl_basic_map *bmap)
3443 if (!bset || !bmap)
3444 goto error;
3446 isl_assert(bset->ctx, isl_basic_map_compatible_domain(bmap, bset),
3447 goto error);
3449 return (struct isl_basic_set *)
3450 isl_basic_map_apply_range((struct isl_basic_map *)bset, bmap);
3451 error:
3452 isl_basic_set_free(bset);
3453 isl_basic_map_free(bmap);
3454 return NULL;
3457 struct isl_basic_map *isl_basic_map_apply_domain(
3458 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3460 if (!bmap1 || !bmap2)
3461 goto error;
3463 isl_assert(bmap1->ctx,
3464 isl_basic_map_n_in(bmap1) == isl_basic_map_n_in(bmap2), goto error);
3465 isl_assert(bmap1->ctx,
3466 isl_basic_map_n_param(bmap1) == isl_basic_map_n_param(bmap2),
3467 goto error);
3469 bmap1 = isl_basic_map_reverse(bmap1);
3470 bmap1 = isl_basic_map_apply_range(bmap1, bmap2);
3471 return isl_basic_map_reverse(bmap1);
3472 error:
3473 isl_basic_map_free(bmap1);
3474 isl_basic_map_free(bmap2);
3475 return NULL;
3478 /* Given two basic maps A -> f(A) and B -> g(B), construct a basic map
3479 * A \cap B -> f(A) + f(B)
3481 struct isl_basic_map *isl_basic_map_sum(
3482 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
3484 unsigned n_in, n_out, nparam, total, pos;
3485 struct isl_basic_map *bmap = NULL;
3486 struct isl_dim_map *dim_map1, *dim_map2;
3487 int i;
3489 if (!bmap1 || !bmap2)
3490 goto error;
3492 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim),
3493 goto error);
3495 nparam = isl_basic_map_n_param(bmap1);
3496 n_in = isl_basic_map_n_in(bmap1);
3497 n_out = isl_basic_map_n_out(bmap1);
3499 total = nparam + n_in + n_out + bmap1->n_div + bmap2->n_div + 2 * n_out;
3500 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
3501 dim_map2 = isl_dim_map_alloc(bmap2->ctx, total);
3502 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
3503 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos);
3504 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
3505 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
3506 isl_dim_map_div(dim_map1, bmap1, pos += n_in + n_out);
3507 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
3508 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += bmap2->n_div);
3509 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += n_out);
3511 bmap = isl_basic_map_alloc_space(isl_space_copy(bmap1->dim),
3512 bmap1->n_div + bmap2->n_div + 2 * n_out,
3513 bmap1->n_eq + bmap2->n_eq + n_out,
3514 bmap1->n_ineq + bmap2->n_ineq);
3515 for (i = 0; i < n_out; ++i) {
3516 int j = isl_basic_map_alloc_equality(bmap);
3517 if (j < 0)
3518 goto error;
3519 isl_seq_clr(bmap->eq[j], 1+total);
3520 isl_int_set_si(bmap->eq[j][1+nparam+n_in+i], -1);
3521 isl_int_set_si(bmap->eq[j][1+pos+i], 1);
3522 isl_int_set_si(bmap->eq[j][1+pos-n_out+i], 1);
3524 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
3525 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
3526 bmap = add_divs(bmap, 2 * n_out);
3528 bmap = isl_basic_map_simplify(bmap);
3529 return isl_basic_map_finalize(bmap);
3530 error:
3531 isl_basic_map_free(bmap);
3532 isl_basic_map_free(bmap1);
3533 isl_basic_map_free(bmap2);
3534 return NULL;
3537 /* Given two maps A -> f(A) and B -> g(B), construct a map
3538 * A \cap B -> f(A) + f(B)
3540 struct isl_map *isl_map_sum(struct isl_map *map1, struct isl_map *map2)
3542 struct isl_map *result;
3543 int i, j;
3545 if (!map1 || !map2)
3546 goto error;
3548 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
3550 result = isl_map_alloc_space(isl_space_copy(map1->dim),
3551 map1->n * map2->n, 0);
3552 if (!result)
3553 goto error;
3554 for (i = 0; i < map1->n; ++i)
3555 for (j = 0; j < map2->n; ++j) {
3556 struct isl_basic_map *part;
3557 part = isl_basic_map_sum(
3558 isl_basic_map_copy(map1->p[i]),
3559 isl_basic_map_copy(map2->p[j]));
3560 if (isl_basic_map_is_empty(part))
3561 isl_basic_map_free(part);
3562 else
3563 result = isl_map_add_basic_map(result, part);
3564 if (!result)
3565 goto error;
3567 isl_map_free(map1);
3568 isl_map_free(map2);
3569 return result;
3570 error:
3571 isl_map_free(map1);
3572 isl_map_free(map2);
3573 return NULL;
3576 __isl_give isl_set *isl_set_sum(__isl_take isl_set *set1,
3577 __isl_take isl_set *set2)
3579 return (isl_set *)isl_map_sum((isl_map *)set1, (isl_map *)set2);
3582 /* Given a basic map A -> f(A), construct A -> -f(A).
3584 struct isl_basic_map *isl_basic_map_neg(struct isl_basic_map *bmap)
3586 int i, j;
3587 unsigned off, n;
3589 bmap = isl_basic_map_cow(bmap);
3590 if (!bmap)
3591 return NULL;
3593 n = isl_basic_map_dim(bmap, isl_dim_out);
3594 off = isl_basic_map_offset(bmap, isl_dim_out);
3595 for (i = 0; i < bmap->n_eq; ++i)
3596 for (j = 0; j < n; ++j)
3597 isl_int_neg(bmap->eq[i][off+j], bmap->eq[i][off+j]);
3598 for (i = 0; i < bmap->n_ineq; ++i)
3599 for (j = 0; j < n; ++j)
3600 isl_int_neg(bmap->ineq[i][off+j], bmap->ineq[i][off+j]);
3601 for (i = 0; i < bmap->n_div; ++i)
3602 for (j = 0; j < n; ++j)
3603 isl_int_neg(bmap->div[i][1+off+j], bmap->div[i][1+off+j]);
3604 bmap = isl_basic_map_gauss(bmap, NULL);
3605 return isl_basic_map_finalize(bmap);
3608 __isl_give isl_basic_set *isl_basic_set_neg(__isl_take isl_basic_set *bset)
3610 return isl_basic_map_neg(bset);
3613 /* Given a map A -> f(A), construct A -> -f(A).
3615 struct isl_map *isl_map_neg(struct isl_map *map)
3617 int i;
3619 map = isl_map_cow(map);
3620 if (!map)
3621 return NULL;
3623 for (i = 0; i < map->n; ++i) {
3624 map->p[i] = isl_basic_map_neg(map->p[i]);
3625 if (!map->p[i])
3626 goto error;
3629 return map;
3630 error:
3631 isl_map_free(map);
3632 return NULL;
3635 __isl_give isl_set *isl_set_neg(__isl_take isl_set *set)
3637 return (isl_set *)isl_map_neg((isl_map *)set);
3640 /* Given a basic map A -> f(A) and an integer d, construct a basic map
3641 * A -> floor(f(A)/d).
3643 struct isl_basic_map *isl_basic_map_floordiv(struct isl_basic_map *bmap,
3644 isl_int d)
3646 unsigned n_in, n_out, nparam, total, pos;
3647 struct isl_basic_map *result = NULL;
3648 struct isl_dim_map *dim_map;
3649 int i;
3651 if (!bmap)
3652 return NULL;
3654 nparam = isl_basic_map_n_param(bmap);
3655 n_in = isl_basic_map_n_in(bmap);
3656 n_out = isl_basic_map_n_out(bmap);
3658 total = nparam + n_in + n_out + bmap->n_div + n_out;
3659 dim_map = isl_dim_map_alloc(bmap->ctx, total);
3660 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_param, pos = 0);
3661 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_in, pos += nparam);
3662 isl_dim_map_div(dim_map, bmap, pos += n_in + n_out);
3663 isl_dim_map_dim(dim_map, bmap->dim, isl_dim_out, pos += bmap->n_div);
3665 result = isl_basic_map_alloc_space(isl_space_copy(bmap->dim),
3666 bmap->n_div + n_out,
3667 bmap->n_eq, bmap->n_ineq + 2 * n_out);
3668 result = isl_basic_map_add_constraints_dim_map(result, bmap, dim_map);
3669 result = add_divs(result, n_out);
3670 for (i = 0; i < n_out; ++i) {
3671 int j;
3672 j = isl_basic_map_alloc_inequality(result);
3673 if (j < 0)
3674 goto error;
3675 isl_seq_clr(result->ineq[j], 1+total);
3676 isl_int_neg(result->ineq[j][1+nparam+n_in+i], d);
3677 isl_int_set_si(result->ineq[j][1+pos+i], 1);
3678 j = isl_basic_map_alloc_inequality(result);
3679 if (j < 0)
3680 goto error;
3681 isl_seq_clr(result->ineq[j], 1+total);
3682 isl_int_set(result->ineq[j][1+nparam+n_in+i], d);
3683 isl_int_set_si(result->ineq[j][1+pos+i], -1);
3684 isl_int_sub_ui(result->ineq[j][0], d, 1);
3687 result = isl_basic_map_simplify(result);
3688 return isl_basic_map_finalize(result);
3689 error:
3690 isl_basic_map_free(result);
3691 return NULL;
3694 /* Given a map A -> f(A) and an integer d, construct a map
3695 * A -> floor(f(A)/d).
3697 struct isl_map *isl_map_floordiv(struct isl_map *map, isl_int d)
3699 int i;
3701 map = isl_map_cow(map);
3702 if (!map)
3703 return NULL;
3705 ISL_F_CLR(map, ISL_MAP_DISJOINT);
3706 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
3707 for (i = 0; i < map->n; ++i) {
3708 map->p[i] = isl_basic_map_floordiv(map->p[i], d);
3709 if (!map->p[i])
3710 goto error;
3713 return map;
3714 error:
3715 isl_map_free(map);
3716 return NULL;
3719 static struct isl_basic_map *var_equal(struct isl_basic_map *bmap, unsigned pos)
3721 int i;
3722 unsigned nparam;
3723 unsigned n_in;
3725 i = isl_basic_map_alloc_equality(bmap);
3726 if (i < 0)
3727 goto error;
3728 nparam = isl_basic_map_n_param(bmap);
3729 n_in = isl_basic_map_n_in(bmap);
3730 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
3731 isl_int_set_si(bmap->eq[i][1+nparam+pos], -1);
3732 isl_int_set_si(bmap->eq[i][1+nparam+n_in+pos], 1);
3733 return isl_basic_map_finalize(bmap);
3734 error:
3735 isl_basic_map_free(bmap);
3736 return NULL;
3739 /* Add a constraints to "bmap" expressing i_pos < o_pos
3741 static struct isl_basic_map *var_less(struct isl_basic_map *bmap, unsigned pos)
3743 int i;
3744 unsigned nparam;
3745 unsigned n_in;
3747 i = isl_basic_map_alloc_inequality(bmap);
3748 if (i < 0)
3749 goto error;
3750 nparam = isl_basic_map_n_param(bmap);
3751 n_in = isl_basic_map_n_in(bmap);
3752 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
3753 isl_int_set_si(bmap->ineq[i][0], -1);
3754 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
3755 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
3756 return isl_basic_map_finalize(bmap);
3757 error:
3758 isl_basic_map_free(bmap);
3759 return NULL;
3762 /* Add a constraint to "bmap" expressing i_pos <= o_pos
3764 static __isl_give isl_basic_map *var_less_or_equal(
3765 __isl_take isl_basic_map *bmap, unsigned pos)
3767 int i;
3768 unsigned nparam;
3769 unsigned n_in;
3771 i = isl_basic_map_alloc_inequality(bmap);
3772 if (i < 0)
3773 goto error;
3774 nparam = isl_basic_map_n_param(bmap);
3775 n_in = isl_basic_map_n_in(bmap);
3776 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
3777 isl_int_set_si(bmap->ineq[i][1+nparam+pos], -1);
3778 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], 1);
3779 return isl_basic_map_finalize(bmap);
3780 error:
3781 isl_basic_map_free(bmap);
3782 return NULL;
3785 /* Add a constraints to "bmap" expressing i_pos > o_pos
3787 static struct isl_basic_map *var_more(struct isl_basic_map *bmap, unsigned pos)
3789 int i;
3790 unsigned nparam;
3791 unsigned n_in;
3793 i = isl_basic_map_alloc_inequality(bmap);
3794 if (i < 0)
3795 goto error;
3796 nparam = isl_basic_map_n_param(bmap);
3797 n_in = isl_basic_map_n_in(bmap);
3798 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
3799 isl_int_set_si(bmap->ineq[i][0], -1);
3800 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
3801 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
3802 return isl_basic_map_finalize(bmap);
3803 error:
3804 isl_basic_map_free(bmap);
3805 return NULL;
3808 /* Add a constraint to "bmap" expressing i_pos >= o_pos
3810 static __isl_give isl_basic_map *var_more_or_equal(
3811 __isl_take isl_basic_map *bmap, unsigned pos)
3813 int i;
3814 unsigned nparam;
3815 unsigned n_in;
3817 i = isl_basic_map_alloc_inequality(bmap);
3818 if (i < 0)
3819 goto error;
3820 nparam = isl_basic_map_n_param(bmap);
3821 n_in = isl_basic_map_n_in(bmap);
3822 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
3823 isl_int_set_si(bmap->ineq[i][1+nparam+pos], 1);
3824 isl_int_set_si(bmap->ineq[i][1+nparam+n_in+pos], -1);
3825 return isl_basic_map_finalize(bmap);
3826 error:
3827 isl_basic_map_free(bmap);
3828 return NULL;
3831 __isl_give isl_basic_map *isl_basic_map_equal(
3832 __isl_take isl_space *dim, unsigned n_equal)
3834 int i;
3835 struct isl_basic_map *bmap;
3836 bmap = isl_basic_map_alloc_space(dim, 0, n_equal, 0);
3837 if (!bmap)
3838 return NULL;
3839 for (i = 0; i < n_equal && bmap; ++i)
3840 bmap = var_equal(bmap, i);
3841 return isl_basic_map_finalize(bmap);
3844 /* Return a relation on of dimension "dim" expressing i_[0..pos] << o_[0..pos]
3846 __isl_give isl_basic_map *isl_basic_map_less_at(__isl_take isl_space *dim,
3847 unsigned pos)
3849 int i;
3850 struct isl_basic_map *bmap;
3851 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
3852 if (!bmap)
3853 return NULL;
3854 for (i = 0; i < pos && bmap; ++i)
3855 bmap = var_equal(bmap, i);
3856 if (bmap)
3857 bmap = var_less(bmap, pos);
3858 return isl_basic_map_finalize(bmap);
3861 /* Return a relation on of dimension "dim" expressing i_[0..pos] <<= o_[0..pos]
3863 __isl_give isl_basic_map *isl_basic_map_less_or_equal_at(
3864 __isl_take isl_space *dim, unsigned pos)
3866 int i;
3867 isl_basic_map *bmap;
3869 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
3870 for (i = 0; i < pos; ++i)
3871 bmap = var_equal(bmap, i);
3872 bmap = var_less_or_equal(bmap, pos);
3873 return isl_basic_map_finalize(bmap);
3876 /* Return a relation on pairs of sets of dimension "dim" expressing i_pos > o_pos
3878 __isl_give isl_basic_map *isl_basic_map_more_at(__isl_take isl_space *dim,
3879 unsigned pos)
3881 int i;
3882 struct isl_basic_map *bmap;
3883 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
3884 if (!bmap)
3885 return NULL;
3886 for (i = 0; i < pos && bmap; ++i)
3887 bmap = var_equal(bmap, i);
3888 if (bmap)
3889 bmap = var_more(bmap, pos);
3890 return isl_basic_map_finalize(bmap);
3893 /* Return a relation on of dimension "dim" expressing i_[0..pos] >>= o_[0..pos]
3895 __isl_give isl_basic_map *isl_basic_map_more_or_equal_at(
3896 __isl_take isl_space *dim, unsigned pos)
3898 int i;
3899 isl_basic_map *bmap;
3901 bmap = isl_basic_map_alloc_space(dim, 0, pos, 1);
3902 for (i = 0; i < pos; ++i)
3903 bmap = var_equal(bmap, i);
3904 bmap = var_more_or_equal(bmap, pos);
3905 return isl_basic_map_finalize(bmap);
3908 static __isl_give isl_map *map_lex_lte_first(__isl_take isl_space *dims,
3909 unsigned n, int equal)
3911 struct isl_map *map;
3912 int i;
3914 if (n == 0 && equal)
3915 return isl_map_universe(dims);
3917 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
3919 for (i = 0; i + 1 < n; ++i)
3920 map = isl_map_add_basic_map(map,
3921 isl_basic_map_less_at(isl_space_copy(dims), i));
3922 if (n > 0) {
3923 if (equal)
3924 map = isl_map_add_basic_map(map,
3925 isl_basic_map_less_or_equal_at(dims, n - 1));
3926 else
3927 map = isl_map_add_basic_map(map,
3928 isl_basic_map_less_at(dims, n - 1));
3929 } else
3930 isl_space_free(dims);
3932 return map;
3935 static __isl_give isl_map *map_lex_lte(__isl_take isl_space *dims, int equal)
3937 if (!dims)
3938 return NULL;
3939 return map_lex_lte_first(dims, dims->n_out, equal);
3942 __isl_give isl_map *isl_map_lex_lt_first(__isl_take isl_space *dim, unsigned n)
3944 return map_lex_lte_first(dim, n, 0);
3947 __isl_give isl_map *isl_map_lex_le_first(__isl_take isl_space *dim, unsigned n)
3949 return map_lex_lte_first(dim, n, 1);
3952 __isl_give isl_map *isl_map_lex_lt(__isl_take isl_space *set_dim)
3954 return map_lex_lte(isl_space_map_from_set(set_dim), 0);
3957 __isl_give isl_map *isl_map_lex_le(__isl_take isl_space *set_dim)
3959 return map_lex_lte(isl_space_map_from_set(set_dim), 1);
3962 static __isl_give isl_map *map_lex_gte_first(__isl_take isl_space *dims,
3963 unsigned n, int equal)
3965 struct isl_map *map;
3966 int i;
3968 if (n == 0 && equal)
3969 return isl_map_universe(dims);
3971 map = isl_map_alloc_space(isl_space_copy(dims), n, ISL_MAP_DISJOINT);
3973 for (i = 0; i + 1 < n; ++i)
3974 map = isl_map_add_basic_map(map,
3975 isl_basic_map_more_at(isl_space_copy(dims), i));
3976 if (n > 0) {
3977 if (equal)
3978 map = isl_map_add_basic_map(map,
3979 isl_basic_map_more_or_equal_at(dims, n - 1));
3980 else
3981 map = isl_map_add_basic_map(map,
3982 isl_basic_map_more_at(dims, n - 1));
3983 } else
3984 isl_space_free(dims);
3986 return map;
3989 static __isl_give isl_map *map_lex_gte(__isl_take isl_space *dims, int equal)
3991 if (!dims)
3992 return NULL;
3993 return map_lex_gte_first(dims, dims->n_out, equal);
3996 __isl_give isl_map *isl_map_lex_gt_first(__isl_take isl_space *dim, unsigned n)
3998 return map_lex_gte_first(dim, n, 0);
4001 __isl_give isl_map *isl_map_lex_ge_first(__isl_take isl_space *dim, unsigned n)
4003 return map_lex_gte_first(dim, n, 1);
4006 __isl_give isl_map *isl_map_lex_gt(__isl_take isl_space *set_dim)
4008 return map_lex_gte(isl_space_map_from_set(set_dim), 0);
4011 __isl_give isl_map *isl_map_lex_ge(__isl_take isl_space *set_dim)
4013 return map_lex_gte(isl_space_map_from_set(set_dim), 1);
4016 __isl_give isl_map *isl_set_lex_le_set(__isl_take isl_set *set1,
4017 __isl_take isl_set *set2)
4019 isl_map *map;
4020 map = isl_map_lex_le(isl_set_get_space(set1));
4021 map = isl_map_intersect_domain(map, set1);
4022 map = isl_map_intersect_range(map, set2);
4023 return map;
4026 __isl_give isl_map *isl_set_lex_lt_set(__isl_take isl_set *set1,
4027 __isl_take isl_set *set2)
4029 isl_map *map;
4030 map = isl_map_lex_lt(isl_set_get_space(set1));
4031 map = isl_map_intersect_domain(map, set1);
4032 map = isl_map_intersect_range(map, set2);
4033 return map;
4036 __isl_give isl_map *isl_set_lex_ge_set(__isl_take isl_set *set1,
4037 __isl_take isl_set *set2)
4039 isl_map *map;
4040 map = isl_map_lex_ge(isl_set_get_space(set1));
4041 map = isl_map_intersect_domain(map, set1);
4042 map = isl_map_intersect_range(map, set2);
4043 return map;
4046 __isl_give isl_map *isl_set_lex_gt_set(__isl_take isl_set *set1,
4047 __isl_take isl_set *set2)
4049 isl_map *map;
4050 map = isl_map_lex_gt(isl_set_get_space(set1));
4051 map = isl_map_intersect_domain(map, set1);
4052 map = isl_map_intersect_range(map, set2);
4053 return map;
4056 __isl_give isl_map *isl_map_lex_le_map(__isl_take isl_map *map1,
4057 __isl_take isl_map *map2)
4059 isl_map *map;
4060 map = isl_map_lex_le(isl_space_range(isl_map_get_space(map1)));
4061 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4062 map = isl_map_apply_range(map, isl_map_reverse(map2));
4063 return map;
4066 __isl_give isl_map *isl_map_lex_lt_map(__isl_take isl_map *map1,
4067 __isl_take isl_map *map2)
4069 isl_map *map;
4070 map = isl_map_lex_lt(isl_space_range(isl_map_get_space(map1)));
4071 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4072 map = isl_map_apply_range(map, isl_map_reverse(map2));
4073 return map;
4076 __isl_give isl_map *isl_map_lex_ge_map(__isl_take isl_map *map1,
4077 __isl_take isl_map *map2)
4079 isl_map *map;
4080 map = isl_map_lex_ge(isl_space_range(isl_map_get_space(map1)));
4081 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4082 map = isl_map_apply_range(map, isl_map_reverse(map2));
4083 return map;
4086 __isl_give isl_map *isl_map_lex_gt_map(__isl_take isl_map *map1,
4087 __isl_take isl_map *map2)
4089 isl_map *map;
4090 map = isl_map_lex_gt(isl_space_range(isl_map_get_space(map1)));
4091 map = isl_map_apply_domain(map, isl_map_reverse(map1));
4092 map = isl_map_apply_range(map, isl_map_reverse(map2));
4093 return map;
4096 __isl_give isl_basic_map *isl_basic_map_from_basic_set(
4097 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
4099 struct isl_basic_map *bmap;
4101 bset = isl_basic_set_cow(bset);
4102 if (!bset || !dim)
4103 goto error;
4105 isl_assert(bset->ctx, isl_space_compatible(bset->dim, dim), goto error);
4106 isl_space_free(bset->dim);
4107 bmap = (struct isl_basic_map *) bset;
4108 bmap->dim = dim;
4109 return isl_basic_map_finalize(bmap);
4110 error:
4111 isl_basic_set_free(bset);
4112 isl_space_free(dim);
4113 return NULL;
4116 struct isl_basic_set *isl_basic_set_from_basic_map(struct isl_basic_map *bmap)
4118 if (!bmap)
4119 goto error;
4120 if (bmap->dim->n_in == 0)
4121 return (struct isl_basic_set *)bmap;
4122 bmap = isl_basic_map_cow(bmap);
4123 if (!bmap)
4124 goto error;
4125 bmap->dim = isl_space_as_set_space(bmap->dim);
4126 if (!bmap->dim)
4127 goto error;
4128 bmap = isl_basic_map_finalize(bmap);
4129 return (struct isl_basic_set *)bmap;
4130 error:
4131 isl_basic_map_free(bmap);
4132 return NULL;
4135 /* For a div d = floor(f/m), add the constraints
4137 * f - m d >= 0
4138 * -(f-(n-1)) + m d >= 0
4140 * Note that the second constraint is the negation of
4142 * f - m d >= n
4144 int isl_basic_map_add_div_constraints_var(__isl_keep isl_basic_map *bmap,
4145 unsigned pos, isl_int *div)
4147 int i, j;
4148 unsigned total = isl_basic_map_total_dim(bmap);
4150 i = isl_basic_map_alloc_inequality(bmap);
4151 if (i < 0)
4152 return -1;
4153 isl_seq_cpy(bmap->ineq[i], div + 1, 1 + total);
4154 isl_int_neg(bmap->ineq[i][1 + pos], div[0]);
4156 j = isl_basic_map_alloc_inequality(bmap);
4157 if (j < 0)
4158 return -1;
4159 isl_seq_neg(bmap->ineq[j], bmap->ineq[i], 1 + total);
4160 isl_int_add(bmap->ineq[j][0], bmap->ineq[j][0], bmap->ineq[j][1 + pos]);
4161 isl_int_sub_ui(bmap->ineq[j][0], bmap->ineq[j][0], 1);
4162 return j;
4165 int isl_basic_set_add_div_constraints_var(__isl_keep isl_basic_set *bset,
4166 unsigned pos, isl_int *div)
4168 return isl_basic_map_add_div_constraints_var((isl_basic_map *)bset,
4169 pos, div);
4172 int isl_basic_map_add_div_constraints(struct isl_basic_map *bmap, unsigned div)
4174 unsigned total = isl_basic_map_total_dim(bmap);
4175 unsigned div_pos = total - bmap->n_div + div;
4177 return isl_basic_map_add_div_constraints_var(bmap, div_pos,
4178 bmap->div[div]);
4181 struct isl_basic_set *isl_basic_map_underlying_set(
4182 struct isl_basic_map *bmap)
4184 if (!bmap)
4185 goto error;
4186 if (bmap->dim->nparam == 0 && bmap->dim->n_in == 0 &&
4187 bmap->n_div == 0 &&
4188 !isl_space_is_named_or_nested(bmap->dim, isl_dim_in) &&
4189 !isl_space_is_named_or_nested(bmap->dim, isl_dim_out))
4190 return (struct isl_basic_set *)bmap;
4191 bmap = isl_basic_map_cow(bmap);
4192 if (!bmap)
4193 goto error;
4194 bmap->dim = isl_space_underlying(bmap->dim, bmap->n_div);
4195 if (!bmap->dim)
4196 goto error;
4197 bmap->extra -= bmap->n_div;
4198 bmap->n_div = 0;
4199 bmap = isl_basic_map_finalize(bmap);
4200 return (struct isl_basic_set *)bmap;
4201 error:
4202 return NULL;
4205 __isl_give isl_basic_set *isl_basic_set_underlying_set(
4206 __isl_take isl_basic_set *bset)
4208 return isl_basic_map_underlying_set((isl_basic_map *)bset);
4211 struct isl_basic_map *isl_basic_map_overlying_set(
4212 struct isl_basic_set *bset, struct isl_basic_map *like)
4214 struct isl_basic_map *bmap;
4215 struct isl_ctx *ctx;
4216 unsigned total;
4217 int i;
4219 if (!bset || !like)
4220 goto error;
4221 ctx = bset->ctx;
4222 isl_assert(ctx, bset->n_div == 0, goto error);
4223 isl_assert(ctx, isl_basic_set_n_param(bset) == 0, goto error);
4224 isl_assert(ctx, bset->dim->n_out == isl_basic_map_total_dim(like),
4225 goto error);
4226 if (isl_space_is_equal(bset->dim, like->dim) && like->n_div == 0) {
4227 isl_basic_map_free(like);
4228 return (struct isl_basic_map *)bset;
4230 bset = isl_basic_set_cow(bset);
4231 if (!bset)
4232 goto error;
4233 total = bset->dim->n_out + bset->extra;
4234 bmap = (struct isl_basic_map *)bset;
4235 isl_space_free(bmap->dim);
4236 bmap->dim = isl_space_copy(like->dim);
4237 if (!bmap->dim)
4238 goto error;
4239 bmap->n_div = like->n_div;
4240 bmap->extra += like->n_div;
4241 if (bmap->extra) {
4242 unsigned ltotal;
4243 isl_int **div;
4244 ltotal = total - bmap->extra + like->extra;
4245 if (ltotal > total)
4246 ltotal = total;
4247 bmap->block2 = isl_blk_extend(ctx, bmap->block2,
4248 bmap->extra * (1 + 1 + total));
4249 if (isl_blk_is_error(bmap->block2))
4250 goto error;
4251 div = isl_realloc_array(ctx, bmap->div, isl_int *, bmap->extra);
4252 if (!div)
4253 goto error;
4254 bmap->div = div;
4255 for (i = 0; i < bmap->extra; ++i)
4256 bmap->div[i] = bmap->block2.data + i * (1 + 1 + total);
4257 for (i = 0; i < like->n_div; ++i) {
4258 isl_seq_cpy(bmap->div[i], like->div[i], 1 + 1 + ltotal);
4259 isl_seq_clr(bmap->div[i]+1+1+ltotal, total - ltotal);
4261 bmap = isl_basic_map_extend_constraints(bmap,
4262 0, 2 * like->n_div);
4263 for (i = 0; i < like->n_div; ++i) {
4264 if (isl_int_is_zero(bmap->div[i][0]))
4265 continue;
4266 if (isl_basic_map_add_div_constraints(bmap, i) < 0)
4267 goto error;
4270 isl_basic_map_free(like);
4271 bmap = isl_basic_map_simplify(bmap);
4272 bmap = isl_basic_map_finalize(bmap);
4273 return bmap;
4274 error:
4275 isl_basic_map_free(like);
4276 isl_basic_set_free(bset);
4277 return NULL;
4280 struct isl_basic_set *isl_basic_set_from_underlying_set(
4281 struct isl_basic_set *bset, struct isl_basic_set *like)
4283 return (struct isl_basic_set *)
4284 isl_basic_map_overlying_set(bset, (struct isl_basic_map *)like);
4287 struct isl_set *isl_set_from_underlying_set(
4288 struct isl_set *set, struct isl_basic_set *like)
4290 int i;
4292 if (!set || !like)
4293 goto error;
4294 isl_assert(set->ctx, set->dim->n_out == isl_basic_set_total_dim(like),
4295 goto error);
4296 if (isl_space_is_equal(set->dim, like->dim) && like->n_div == 0) {
4297 isl_basic_set_free(like);
4298 return set;
4300 set = isl_set_cow(set);
4301 if (!set)
4302 goto error;
4303 for (i = 0; i < set->n; ++i) {
4304 set->p[i] = isl_basic_set_from_underlying_set(set->p[i],
4305 isl_basic_set_copy(like));
4306 if (!set->p[i])
4307 goto error;
4309 isl_space_free(set->dim);
4310 set->dim = isl_space_copy(like->dim);
4311 if (!set->dim)
4312 goto error;
4313 isl_basic_set_free(like);
4314 return set;
4315 error:
4316 isl_basic_set_free(like);
4317 isl_set_free(set);
4318 return NULL;
4321 struct isl_set *isl_map_underlying_set(struct isl_map *map)
4323 int i;
4325 map = isl_map_cow(map);
4326 if (!map)
4327 return NULL;
4328 map->dim = isl_space_cow(map->dim);
4329 if (!map->dim)
4330 goto error;
4332 for (i = 1; i < map->n; ++i)
4333 isl_assert(map->ctx, map->p[0]->n_div == map->p[i]->n_div,
4334 goto error);
4335 for (i = 0; i < map->n; ++i) {
4336 map->p[i] = (struct isl_basic_map *)
4337 isl_basic_map_underlying_set(map->p[i]);
4338 if (!map->p[i])
4339 goto error;
4341 if (map->n == 0)
4342 map->dim = isl_space_underlying(map->dim, 0);
4343 else {
4344 isl_space_free(map->dim);
4345 map->dim = isl_space_copy(map->p[0]->dim);
4347 if (!map->dim)
4348 goto error;
4349 return (struct isl_set *)map;
4350 error:
4351 isl_map_free(map);
4352 return NULL;
4355 struct isl_set *isl_set_to_underlying_set(struct isl_set *set)
4357 return (struct isl_set *)isl_map_underlying_set((struct isl_map *)set);
4360 __isl_give isl_basic_map *isl_basic_map_reset_space(
4361 __isl_take isl_basic_map *bmap, __isl_take isl_space *dim)
4363 bmap = isl_basic_map_cow(bmap);
4364 if (!bmap || !dim)
4365 goto error;
4367 isl_space_free(bmap->dim);
4368 bmap->dim = dim;
4370 bmap = isl_basic_map_finalize(bmap);
4372 return bmap;
4373 error:
4374 isl_basic_map_free(bmap);
4375 isl_space_free(dim);
4376 return NULL;
4379 __isl_give isl_basic_set *isl_basic_set_reset_space(
4380 __isl_take isl_basic_set *bset, __isl_take isl_space *dim)
4382 return (isl_basic_set *)isl_basic_map_reset_space((isl_basic_map *)bset,
4383 dim);
4386 __isl_give isl_map *isl_map_reset_space(__isl_take isl_map *map,
4387 __isl_take isl_space *dim)
4389 int i;
4391 map = isl_map_cow(map);
4392 if (!map || !dim)
4393 goto error;
4395 for (i = 0; i < map->n; ++i) {
4396 map->p[i] = isl_basic_map_reset_space(map->p[i],
4397 isl_space_copy(dim));
4398 if (!map->p[i])
4399 goto error;
4401 isl_space_free(map->dim);
4402 map->dim = dim;
4404 return map;
4405 error:
4406 isl_map_free(map);
4407 isl_space_free(dim);
4408 return NULL;
4411 __isl_give isl_set *isl_set_reset_space(__isl_take isl_set *set,
4412 __isl_take isl_space *dim)
4414 return (struct isl_set *) isl_map_reset_space((struct isl_map *)set, dim);
4417 /* Compute the parameter domain of the given basic set.
4419 __isl_give isl_basic_set *isl_basic_set_params(__isl_take isl_basic_set *bset)
4421 isl_space *space;
4422 unsigned n;
4424 if (isl_basic_set_is_params(bset))
4425 return bset;
4427 n = isl_basic_set_dim(bset, isl_dim_set);
4428 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, n);
4429 space = isl_basic_set_get_space(bset);
4430 space = isl_space_params(space);
4431 bset = isl_basic_set_reset_space(bset, space);
4432 return bset;
4435 /* Compute the parameter domain of the given set.
4437 __isl_give isl_set *isl_set_params(__isl_take isl_set *set)
4439 isl_space *space;
4440 unsigned n;
4442 if (isl_set_is_params(set))
4443 return set;
4445 n = isl_set_dim(set, isl_dim_set);
4446 set = isl_set_project_out(set, isl_dim_set, 0, n);
4447 space = isl_set_get_space(set);
4448 space = isl_space_params(space);
4449 set = isl_set_reset_space(set, space);
4450 return set;
4453 /* Construct a zero-dimensional set with the given parameter domain.
4455 __isl_give isl_set *isl_set_from_params(__isl_take isl_set *set)
4457 isl_space *space;
4458 space = isl_set_get_space(set);
4459 space = isl_space_set_from_params(space);
4460 set = isl_set_reset_space(set, space);
4461 return set;
4464 /* Compute the parameter domain of the given map.
4466 __isl_give isl_set *isl_map_params(__isl_take isl_map *map)
4468 isl_space *space;
4469 unsigned n;
4471 n = isl_map_dim(map, isl_dim_in);
4472 map = isl_map_project_out(map, isl_dim_in, 0, n);
4473 n = isl_map_dim(map, isl_dim_out);
4474 map = isl_map_project_out(map, isl_dim_out, 0, n);
4475 space = isl_map_get_space(map);
4476 space = isl_space_params(space);
4477 map = isl_map_reset_space(map, space);
4478 return map;
4481 struct isl_basic_set *isl_basic_map_domain(struct isl_basic_map *bmap)
4483 isl_space *dim;
4484 struct isl_basic_set *domain;
4485 unsigned n_in;
4486 unsigned n_out;
4488 if (!bmap)
4489 return NULL;
4490 dim = isl_space_domain(isl_basic_map_get_space(bmap));
4492 n_in = isl_basic_map_n_in(bmap);
4493 n_out = isl_basic_map_n_out(bmap);
4494 domain = isl_basic_set_from_basic_map(bmap);
4495 domain = isl_basic_set_project_out(domain, isl_dim_set, n_in, n_out);
4497 domain = isl_basic_set_reset_space(domain, dim);
4499 return domain;
4502 int isl_basic_map_may_be_set(__isl_keep isl_basic_map *bmap)
4504 if (!bmap)
4505 return -1;
4506 return isl_space_may_be_set(bmap->dim);
4509 /* Is this basic map actually a set?
4510 * Users should never call this function. Outside of isl,
4511 * the type should indicate whether something is a set or a map.
4513 int isl_basic_map_is_set(__isl_keep isl_basic_map *bmap)
4515 if (!bmap)
4516 return -1;
4517 return isl_space_is_set(bmap->dim);
4520 struct isl_basic_set *isl_basic_map_range(struct isl_basic_map *bmap)
4522 if (!bmap)
4523 return NULL;
4524 if (isl_basic_map_is_set(bmap))
4525 return bmap;
4526 return isl_basic_map_domain(isl_basic_map_reverse(bmap));
4529 __isl_give isl_basic_map *isl_basic_map_domain_map(
4530 __isl_take isl_basic_map *bmap)
4532 int i, k;
4533 isl_space *dim;
4534 isl_basic_map *domain;
4535 int nparam, n_in, n_out;
4536 unsigned total;
4538 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4539 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4540 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4542 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
4543 domain = isl_basic_map_universe(dim);
4545 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
4546 bmap = isl_basic_map_apply_range(bmap, domain);
4547 bmap = isl_basic_map_extend_constraints(bmap, n_in, 0);
4549 total = isl_basic_map_total_dim(bmap);
4551 for (i = 0; i < n_in; ++i) {
4552 k = isl_basic_map_alloc_equality(bmap);
4553 if (k < 0)
4554 goto error;
4555 isl_seq_clr(bmap->eq[k], 1 + total);
4556 isl_int_set_si(bmap->eq[k][1 + nparam + i], -1);
4557 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + n_out + i], 1);
4560 bmap = isl_basic_map_gauss(bmap, NULL);
4561 return isl_basic_map_finalize(bmap);
4562 error:
4563 isl_basic_map_free(bmap);
4564 return NULL;
4567 __isl_give isl_basic_map *isl_basic_map_range_map(
4568 __isl_take isl_basic_map *bmap)
4570 int i, k;
4571 isl_space *dim;
4572 isl_basic_map *range;
4573 int nparam, n_in, n_out;
4574 unsigned total;
4576 nparam = isl_basic_map_dim(bmap, isl_dim_param);
4577 n_in = isl_basic_map_dim(bmap, isl_dim_in);
4578 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4580 dim = isl_space_from_range(isl_space_range(isl_basic_map_get_space(bmap)));
4581 range = isl_basic_map_universe(dim);
4583 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
4584 bmap = isl_basic_map_apply_range(bmap, range);
4585 bmap = isl_basic_map_extend_constraints(bmap, n_out, 0);
4587 total = isl_basic_map_total_dim(bmap);
4589 for (i = 0; i < n_out; ++i) {
4590 k = isl_basic_map_alloc_equality(bmap);
4591 if (k < 0)
4592 goto error;
4593 isl_seq_clr(bmap->eq[k], 1 + total);
4594 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + i], -1);
4595 isl_int_set_si(bmap->eq[k][1 + nparam + n_in + n_out + i], 1);
4598 bmap = isl_basic_map_gauss(bmap, NULL);
4599 return isl_basic_map_finalize(bmap);
4600 error:
4601 isl_basic_map_free(bmap);
4602 return NULL;
4605 int isl_map_may_be_set(__isl_keep isl_map *map)
4607 if (!map)
4608 return -1;
4609 return isl_space_may_be_set(map->dim);
4612 /* Is this map actually a set?
4613 * Users should never call this function. Outside of isl,
4614 * the type should indicate whether something is a set or a map.
4616 int isl_map_is_set(__isl_keep isl_map *map)
4618 if (!map)
4619 return -1;
4620 return isl_space_is_set(map->dim);
4623 struct isl_set *isl_map_range(struct isl_map *map)
4625 int i;
4626 struct isl_set *set;
4628 if (!map)
4629 goto error;
4630 if (isl_map_is_set(map))
4631 return (isl_set *)map;
4633 map = isl_map_cow(map);
4634 if (!map)
4635 goto error;
4637 set = (struct isl_set *) map;
4638 set->dim = isl_space_range(set->dim);
4639 if (!set->dim)
4640 goto error;
4641 for (i = 0; i < map->n; ++i) {
4642 set->p[i] = isl_basic_map_range(map->p[i]);
4643 if (!set->p[i])
4644 goto error;
4646 ISL_F_CLR(set, ISL_MAP_DISJOINT);
4647 ISL_F_CLR(set, ISL_SET_NORMALIZED);
4648 return set;
4649 error:
4650 isl_map_free(map);
4651 return NULL;
4654 __isl_give isl_map *isl_map_domain_map(__isl_take isl_map *map)
4656 int i;
4657 isl_space *domain_dim;
4659 map = isl_map_cow(map);
4660 if (!map)
4661 return NULL;
4663 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
4664 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
4665 map->dim = isl_space_join(map->dim, domain_dim);
4666 if (!map->dim)
4667 goto error;
4668 for (i = 0; i < map->n; ++i) {
4669 map->p[i] = isl_basic_map_domain_map(map->p[i]);
4670 if (!map->p[i])
4671 goto error;
4673 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4674 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4675 return map;
4676 error:
4677 isl_map_free(map);
4678 return NULL;
4681 __isl_give isl_map *isl_map_range_map(__isl_take isl_map *map)
4683 int i;
4684 isl_space *range_dim;
4686 map = isl_map_cow(map);
4687 if (!map)
4688 return NULL;
4690 range_dim = isl_space_range(isl_map_get_space(map));
4691 range_dim = isl_space_from_range(range_dim);
4692 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
4693 map->dim = isl_space_join(map->dim, range_dim);
4694 if (!map->dim)
4695 goto error;
4696 for (i = 0; i < map->n; ++i) {
4697 map->p[i] = isl_basic_map_range_map(map->p[i]);
4698 if (!map->p[i])
4699 goto error;
4701 ISL_F_CLR(map, ISL_MAP_DISJOINT);
4702 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
4703 return map;
4704 error:
4705 isl_map_free(map);
4706 return NULL;
4709 __isl_give isl_map *isl_map_from_set(__isl_take isl_set *set,
4710 __isl_take isl_space *dim)
4712 int i;
4713 struct isl_map *map = NULL;
4715 set = isl_set_cow(set);
4716 if (!set || !dim)
4717 goto error;
4718 isl_assert(set->ctx, isl_space_compatible(set->dim, dim), goto error);
4719 map = (struct isl_map *)set;
4720 for (i = 0; i < set->n; ++i) {
4721 map->p[i] = isl_basic_map_from_basic_set(
4722 set->p[i], isl_space_copy(dim));
4723 if (!map->p[i])
4724 goto error;
4726 isl_space_free(map->dim);
4727 map->dim = dim;
4728 return map;
4729 error:
4730 isl_space_free(dim);
4731 isl_set_free(set);
4732 return NULL;
4735 __isl_give isl_basic_map *isl_basic_map_from_domain(
4736 __isl_take isl_basic_set *bset)
4738 return isl_basic_map_reverse(isl_basic_map_from_range(bset));
4741 __isl_give isl_basic_map *isl_basic_map_from_range(
4742 __isl_take isl_basic_set *bset)
4744 isl_space *space;
4745 space = isl_basic_set_get_space(bset);
4746 space = isl_space_from_range(space);
4747 bset = isl_basic_set_reset_space(bset, space);
4748 return (isl_basic_map *)bset;
4751 struct isl_map *isl_map_from_range(struct isl_set *set)
4753 isl_space *space;
4754 space = isl_set_get_space(set);
4755 space = isl_space_from_range(space);
4756 set = isl_set_reset_space(set, space);
4757 return (struct isl_map *)set;
4760 __isl_give isl_map *isl_map_from_domain(__isl_take isl_set *set)
4762 return isl_map_reverse(isl_map_from_range(set));
4765 __isl_give isl_basic_map *isl_basic_map_from_domain_and_range(
4766 __isl_take isl_basic_set *domain, __isl_take isl_basic_set *range)
4768 return isl_basic_map_apply_range(isl_basic_map_reverse(domain), range);
4771 __isl_give isl_map *isl_map_from_domain_and_range(__isl_take isl_set *domain,
4772 __isl_take isl_set *range)
4774 return isl_map_apply_range(isl_map_reverse(domain), range);
4777 struct isl_set *isl_set_from_map(struct isl_map *map)
4779 int i;
4780 struct isl_set *set = NULL;
4782 if (!map)
4783 return NULL;
4784 map = isl_map_cow(map);
4785 if (!map)
4786 return NULL;
4787 map->dim = isl_space_as_set_space(map->dim);
4788 if (!map->dim)
4789 goto error;
4790 set = (struct isl_set *)map;
4791 for (i = 0; i < map->n; ++i) {
4792 set->p[i] = isl_basic_set_from_basic_map(map->p[i]);
4793 if (!set->p[i])
4794 goto error;
4796 return set;
4797 error:
4798 isl_map_free(map);
4799 return NULL;
4802 __isl_give isl_map *isl_map_alloc_space(__isl_take isl_space *dim, int n,
4803 unsigned flags)
4805 struct isl_map *map;
4807 if (!dim)
4808 return NULL;
4809 if (n < 0)
4810 isl_die(dim->ctx, isl_error_internal,
4811 "negative number of basic maps", goto error);
4812 map = isl_alloc(dim->ctx, struct isl_map,
4813 sizeof(struct isl_map) +
4814 (n - 1) * sizeof(struct isl_basic_map *));
4815 if (!map)
4816 goto error;
4818 map->ctx = dim->ctx;
4819 isl_ctx_ref(map->ctx);
4820 map->ref = 1;
4821 map->size = n;
4822 map->n = 0;
4823 map->dim = dim;
4824 map->flags = flags;
4825 return map;
4826 error:
4827 isl_space_free(dim);
4828 return NULL;
4831 struct isl_map *isl_map_alloc(struct isl_ctx *ctx,
4832 unsigned nparam, unsigned in, unsigned out, int n,
4833 unsigned flags)
4835 struct isl_map *map;
4836 isl_space *dims;
4838 dims = isl_space_alloc(ctx, nparam, in, out);
4839 if (!dims)
4840 return NULL;
4842 map = isl_map_alloc_space(dims, n, flags);
4843 return map;
4846 __isl_give isl_basic_map *isl_basic_map_empty(__isl_take isl_space *dim)
4848 struct isl_basic_map *bmap;
4849 bmap = isl_basic_map_alloc_space(dim, 0, 1, 0);
4850 bmap = isl_basic_map_set_to_empty(bmap);
4851 return bmap;
4854 __isl_give isl_basic_set *isl_basic_set_empty(__isl_take isl_space *dim)
4856 struct isl_basic_set *bset;
4857 bset = isl_basic_set_alloc_space(dim, 0, 1, 0);
4858 bset = isl_basic_set_set_to_empty(bset);
4859 return bset;
4862 struct isl_basic_map *isl_basic_map_empty_like(struct isl_basic_map *model)
4864 struct isl_basic_map *bmap;
4865 if (!model)
4866 return NULL;
4867 bmap = isl_basic_map_alloc_space(isl_space_copy(model->dim), 0, 1, 0);
4868 bmap = isl_basic_map_set_to_empty(bmap);
4869 return bmap;
4872 struct isl_basic_map *isl_basic_map_empty_like_map(struct isl_map *model)
4874 struct isl_basic_map *bmap;
4875 if (!model)
4876 return NULL;
4877 bmap = isl_basic_map_alloc_space(isl_space_copy(model->dim), 0, 1, 0);
4878 bmap = isl_basic_map_set_to_empty(bmap);
4879 return bmap;
4882 struct isl_basic_set *isl_basic_set_empty_like(struct isl_basic_set *model)
4884 struct isl_basic_set *bset;
4885 if (!model)
4886 return NULL;
4887 bset = isl_basic_set_alloc_space(isl_space_copy(model->dim), 0, 1, 0);
4888 bset = isl_basic_set_set_to_empty(bset);
4889 return bset;
4892 __isl_give isl_basic_map *isl_basic_map_universe(__isl_take isl_space *dim)
4894 struct isl_basic_map *bmap;
4895 bmap = isl_basic_map_alloc_space(dim, 0, 0, 0);
4896 bmap = isl_basic_map_finalize(bmap);
4897 return bmap;
4900 __isl_give isl_basic_set *isl_basic_set_universe(__isl_take isl_space *dim)
4902 struct isl_basic_set *bset;
4903 bset = isl_basic_set_alloc_space(dim, 0, 0, 0);
4904 bset = isl_basic_set_finalize(bset);
4905 return bset;
4908 __isl_give isl_basic_map *isl_basic_map_nat_universe(__isl_take isl_space *dim)
4910 int i;
4911 unsigned total = isl_space_dim(dim, isl_dim_all);
4912 isl_basic_map *bmap;
4914 bmap= isl_basic_map_alloc_space(dim, 0, 0, total);
4915 for (i = 0; i < total; ++i) {
4916 int k = isl_basic_map_alloc_inequality(bmap);
4917 if (k < 0)
4918 goto error;
4919 isl_seq_clr(bmap->ineq[k], 1 + total);
4920 isl_int_set_si(bmap->ineq[k][1 + i], 1);
4922 return bmap;
4923 error:
4924 isl_basic_map_free(bmap);
4925 return NULL;
4928 __isl_give isl_basic_set *isl_basic_set_nat_universe(__isl_take isl_space *dim)
4930 return isl_basic_map_nat_universe(dim);
4933 __isl_give isl_map *isl_map_nat_universe(__isl_take isl_space *dim)
4935 return isl_map_from_basic_map(isl_basic_map_nat_universe(dim));
4938 __isl_give isl_set *isl_set_nat_universe(__isl_take isl_space *dim)
4940 return isl_map_nat_universe(dim);
4943 __isl_give isl_basic_map *isl_basic_map_universe_like(
4944 __isl_keep isl_basic_map *model)
4946 if (!model)
4947 return NULL;
4948 return isl_basic_map_alloc_space(isl_space_copy(model->dim), 0, 0, 0);
4951 struct isl_basic_set *isl_basic_set_universe_like(struct isl_basic_set *model)
4953 if (!model)
4954 return NULL;
4955 return isl_basic_set_alloc_space(isl_space_copy(model->dim), 0, 0, 0);
4958 __isl_give isl_basic_set *isl_basic_set_universe_like_set(
4959 __isl_keep isl_set *model)
4961 if (!model)
4962 return NULL;
4963 return isl_basic_set_alloc_space(isl_space_copy(model->dim), 0, 0, 0);
4966 __isl_give isl_map *isl_map_empty(__isl_take isl_space *dim)
4968 return isl_map_alloc_space(dim, 0, ISL_MAP_DISJOINT);
4971 struct isl_map *isl_map_empty_like(struct isl_map *model)
4973 if (!model)
4974 return NULL;
4975 return isl_map_alloc_space(isl_space_copy(model->dim), 0, ISL_MAP_DISJOINT);
4978 struct isl_map *isl_map_empty_like_basic_map(struct isl_basic_map *model)
4980 if (!model)
4981 return NULL;
4982 return isl_map_alloc_space(isl_space_copy(model->dim), 0, ISL_MAP_DISJOINT);
4985 __isl_give isl_set *isl_set_empty(__isl_take isl_space *dim)
4987 return isl_set_alloc_space(dim, 0, ISL_MAP_DISJOINT);
4990 struct isl_set *isl_set_empty_like(struct isl_set *model)
4992 if (!model)
4993 return NULL;
4994 return isl_set_empty(isl_space_copy(model->dim));
4997 __isl_give isl_map *isl_map_universe(__isl_take isl_space *dim)
4999 struct isl_map *map;
5000 if (!dim)
5001 return NULL;
5002 map = isl_map_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5003 map = isl_map_add_basic_map(map, isl_basic_map_universe(dim));
5004 return map;
5007 __isl_give isl_set *isl_set_universe(__isl_take isl_space *dim)
5009 struct isl_set *set;
5010 if (!dim)
5011 return NULL;
5012 set = isl_set_alloc_space(isl_space_copy(dim), 1, ISL_MAP_DISJOINT);
5013 set = isl_set_add_basic_set(set, isl_basic_set_universe(dim));
5014 return set;
5017 __isl_give isl_set *isl_set_universe_like(__isl_keep isl_set *model)
5019 if (!model)
5020 return NULL;
5021 return isl_set_universe(isl_space_copy(model->dim));
5024 struct isl_map *isl_map_dup(struct isl_map *map)
5026 int i;
5027 struct isl_map *dup;
5029 if (!map)
5030 return NULL;
5031 dup = isl_map_alloc_space(isl_space_copy(map->dim), map->n, map->flags);
5032 for (i = 0; i < map->n; ++i)
5033 dup = isl_map_add_basic_map(dup, isl_basic_map_copy(map->p[i]));
5034 return dup;
5037 __isl_give isl_map *isl_map_add_basic_map(__isl_take isl_map *map,
5038 __isl_take isl_basic_map *bmap)
5040 if (!bmap || !map)
5041 goto error;
5042 if (isl_basic_map_plain_is_empty(bmap)) {
5043 isl_basic_map_free(bmap);
5044 return map;
5046 isl_assert(map->ctx, isl_space_is_equal(map->dim, bmap->dim), goto error);
5047 isl_assert(map->ctx, map->n < map->size, goto error);
5048 map->p[map->n] = bmap;
5049 map->n++;
5050 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5051 return map;
5052 error:
5053 if (map)
5054 isl_map_free(map);
5055 if (bmap)
5056 isl_basic_map_free(bmap);
5057 return NULL;
5060 void isl_map_free(struct isl_map *map)
5062 int i;
5064 if (!map)
5065 return;
5067 if (--map->ref > 0)
5068 return;
5070 isl_ctx_deref(map->ctx);
5071 for (i = 0; i < map->n; ++i)
5072 isl_basic_map_free(map->p[i]);
5073 isl_space_free(map->dim);
5074 free(map);
5077 struct isl_map *isl_map_extend(struct isl_map *base,
5078 unsigned nparam, unsigned n_in, unsigned n_out)
5080 int i;
5082 base = isl_map_cow(base);
5083 if (!base)
5084 return NULL;
5086 base->dim = isl_space_extend(base->dim, nparam, n_in, n_out);
5087 if (!base->dim)
5088 goto error;
5089 for (i = 0; i < base->n; ++i) {
5090 base->p[i] = isl_basic_map_extend_space(base->p[i],
5091 isl_space_copy(base->dim), 0, 0, 0);
5092 if (!base->p[i])
5093 goto error;
5095 return base;
5096 error:
5097 isl_map_free(base);
5098 return NULL;
5101 struct isl_set *isl_set_extend(struct isl_set *base,
5102 unsigned nparam, unsigned dim)
5104 return (struct isl_set *)isl_map_extend((struct isl_map *)base,
5105 nparam, 0, dim);
5108 static struct isl_basic_map *isl_basic_map_fix_pos_si(
5109 struct isl_basic_map *bmap, unsigned pos, int value)
5111 int j;
5113 bmap = isl_basic_map_cow(bmap);
5114 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5115 j = isl_basic_map_alloc_equality(bmap);
5116 if (j < 0)
5117 goto error;
5118 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5119 isl_int_set_si(bmap->eq[j][pos], -1);
5120 isl_int_set_si(bmap->eq[j][0], value);
5121 bmap = isl_basic_map_simplify(bmap);
5122 return isl_basic_map_finalize(bmap);
5123 error:
5124 isl_basic_map_free(bmap);
5125 return NULL;
5128 static __isl_give isl_basic_map *isl_basic_map_fix_pos(
5129 __isl_take isl_basic_map *bmap, unsigned pos, isl_int value)
5131 int j;
5133 bmap = isl_basic_map_cow(bmap);
5134 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
5135 j = isl_basic_map_alloc_equality(bmap);
5136 if (j < 0)
5137 goto error;
5138 isl_seq_clr(bmap->eq[j] + 1, isl_basic_map_total_dim(bmap));
5139 isl_int_set_si(bmap->eq[j][pos], -1);
5140 isl_int_set(bmap->eq[j][0], value);
5141 bmap = isl_basic_map_simplify(bmap);
5142 return isl_basic_map_finalize(bmap);
5143 error:
5144 isl_basic_map_free(bmap);
5145 return NULL;
5148 struct isl_basic_map *isl_basic_map_fix_si(struct isl_basic_map *bmap,
5149 enum isl_dim_type type, unsigned pos, int value)
5151 if (!bmap)
5152 return NULL;
5153 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5154 return isl_basic_map_fix_pos_si(bmap,
5155 isl_basic_map_offset(bmap, type) + pos, value);
5156 error:
5157 isl_basic_map_free(bmap);
5158 return NULL;
5161 __isl_give isl_basic_map *isl_basic_map_fix(__isl_take isl_basic_map *bmap,
5162 enum isl_dim_type type, unsigned pos, isl_int value)
5164 if (!bmap)
5165 return NULL;
5166 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5167 return isl_basic_map_fix_pos(bmap,
5168 isl_basic_map_offset(bmap, type) + pos, value);
5169 error:
5170 isl_basic_map_free(bmap);
5171 return NULL;
5174 struct isl_basic_set *isl_basic_set_fix_si(struct isl_basic_set *bset,
5175 enum isl_dim_type type, unsigned pos, int value)
5177 return (struct isl_basic_set *)
5178 isl_basic_map_fix_si((struct isl_basic_map *)bset,
5179 type, pos, value);
5182 __isl_give isl_basic_set *isl_basic_set_fix(__isl_take isl_basic_set *bset,
5183 enum isl_dim_type type, unsigned pos, isl_int value)
5185 return (struct isl_basic_set *)
5186 isl_basic_map_fix((struct isl_basic_map *)bset,
5187 type, pos, value);
5190 struct isl_basic_map *isl_basic_map_fix_input_si(struct isl_basic_map *bmap,
5191 unsigned input, int value)
5193 return isl_basic_map_fix_si(bmap, isl_dim_in, input, value);
5196 struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset,
5197 unsigned dim, int value)
5199 return (struct isl_basic_set *)
5200 isl_basic_map_fix_si((struct isl_basic_map *)bset,
5201 isl_dim_set, dim, value);
5204 static int remove_if_empty(__isl_keep isl_map *map, int i)
5206 int empty = isl_basic_map_plain_is_empty(map->p[i]);
5208 if (empty < 0)
5209 return -1;
5210 if (!empty)
5211 return 0;
5213 isl_basic_map_free(map->p[i]);
5214 if (i != map->n - 1) {
5215 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5216 map->p[i] = map->p[map->n - 1];
5218 map->n--;
5220 return 0;
5223 struct isl_map *isl_map_fix_si(struct isl_map *map,
5224 enum isl_dim_type type, unsigned pos, int value)
5226 int i;
5228 map = isl_map_cow(map);
5229 if (!map)
5230 return NULL;
5232 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5233 for (i = map->n - 1; i >= 0; --i) {
5234 map->p[i] = isl_basic_map_fix_si(map->p[i], type, pos, value);
5235 if (remove_if_empty(map, i) < 0)
5236 goto error;
5238 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5239 return map;
5240 error:
5241 isl_map_free(map);
5242 return NULL;
5245 __isl_give isl_set *isl_set_fix_si(__isl_take isl_set *set,
5246 enum isl_dim_type type, unsigned pos, int value)
5248 return (struct isl_set *)
5249 isl_map_fix_si((struct isl_map *)set, type, pos, value);
5252 __isl_give isl_map *isl_map_fix(__isl_take isl_map *map,
5253 enum isl_dim_type type, unsigned pos, isl_int value)
5255 int i;
5257 map = isl_map_cow(map);
5258 if (!map)
5259 return NULL;
5261 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5262 for (i = 0; i < map->n; ++i) {
5263 map->p[i] = isl_basic_map_fix(map->p[i], type, pos, value);
5264 if (!map->p[i])
5265 goto error;
5267 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5268 return map;
5269 error:
5270 isl_map_free(map);
5271 return NULL;
5274 __isl_give isl_set *isl_set_fix(__isl_take isl_set *set,
5275 enum isl_dim_type type, unsigned pos, isl_int value)
5277 return (struct isl_set *)isl_map_fix((isl_map *)set, type, pos, value);
5280 struct isl_map *isl_map_fix_input_si(struct isl_map *map,
5281 unsigned input, int value)
5283 return isl_map_fix_si(map, isl_dim_in, input, value);
5286 struct isl_set *isl_set_fix_dim_si(struct isl_set *set, unsigned dim, int value)
5288 return (struct isl_set *)
5289 isl_map_fix_si((struct isl_map *)set, isl_dim_set, dim, value);
5292 static __isl_give isl_basic_map *basic_map_bound_si(
5293 __isl_take isl_basic_map *bmap,
5294 enum isl_dim_type type, unsigned pos, int value, int upper)
5296 int j;
5298 if (!bmap)
5299 return NULL;
5300 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), goto error);
5301 pos += isl_basic_map_offset(bmap, type);
5302 bmap = isl_basic_map_cow(bmap);
5303 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
5304 j = isl_basic_map_alloc_inequality(bmap);
5305 if (j < 0)
5306 goto error;
5307 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
5308 if (upper) {
5309 isl_int_set_si(bmap->ineq[j][pos], -1);
5310 isl_int_set_si(bmap->ineq[j][0], value);
5311 } else {
5312 isl_int_set_si(bmap->ineq[j][pos], 1);
5313 isl_int_set_si(bmap->ineq[j][0], -value);
5315 bmap = isl_basic_map_simplify(bmap);
5316 return isl_basic_map_finalize(bmap);
5317 error:
5318 isl_basic_map_free(bmap);
5319 return NULL;
5322 __isl_give isl_basic_map *isl_basic_map_lower_bound_si(
5323 __isl_take isl_basic_map *bmap,
5324 enum isl_dim_type type, unsigned pos, int value)
5326 return basic_map_bound_si(bmap, type, pos, value, 0);
5329 struct isl_basic_set *isl_basic_set_lower_bound_dim(struct isl_basic_set *bset,
5330 unsigned dim, isl_int value)
5332 int j;
5334 bset = isl_basic_set_cow(bset);
5335 bset = isl_basic_set_extend_constraints(bset, 0, 1);
5336 j = isl_basic_set_alloc_inequality(bset);
5337 if (j < 0)
5338 goto error;
5339 isl_seq_clr(bset->ineq[j], 1 + isl_basic_set_total_dim(bset));
5340 isl_int_set_si(bset->ineq[j][1 + isl_basic_set_n_param(bset) + dim], 1);
5341 isl_int_neg(bset->ineq[j][0], value);
5342 bset = isl_basic_set_simplify(bset);
5343 return isl_basic_set_finalize(bset);
5344 error:
5345 isl_basic_set_free(bset);
5346 return NULL;
5349 static __isl_give isl_map *map_bound_si(__isl_take isl_map *map,
5350 enum isl_dim_type type, unsigned pos, int value, int upper)
5352 int i;
5354 map = isl_map_cow(map);
5355 if (!map)
5356 return NULL;
5358 isl_assert(map->ctx, pos < isl_map_dim(map, type), goto error);
5359 for (i = 0; i < map->n; ++i) {
5360 map->p[i] = basic_map_bound_si(map->p[i],
5361 type, pos, value, upper);
5362 if (!map->p[i])
5363 goto error;
5365 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5366 return map;
5367 error:
5368 isl_map_free(map);
5369 return NULL;
5372 __isl_give isl_map *isl_map_lower_bound_si(__isl_take isl_map *map,
5373 enum isl_dim_type type, unsigned pos, int value)
5375 return map_bound_si(map, type, pos, value, 0);
5378 __isl_give isl_map *isl_map_upper_bound_si(__isl_take isl_map *map,
5379 enum isl_dim_type type, unsigned pos, int value)
5381 return map_bound_si(map, type, pos, value, 1);
5384 __isl_give isl_set *isl_set_lower_bound_si(__isl_take isl_set *set,
5385 enum isl_dim_type type, unsigned pos, int value)
5387 return (struct isl_set *)
5388 isl_map_lower_bound_si((struct isl_map *)set, type, pos, value);
5391 __isl_give isl_set *isl_set_upper_bound_si(__isl_take isl_set *set,
5392 enum isl_dim_type type, unsigned pos, int value)
5394 return isl_map_upper_bound_si(set, type, pos, value);
5397 /* Bound the given variable of "bmap" from below (or above is "upper"
5398 * is set) to "value".
5400 static __isl_give isl_basic_map *basic_map_bound(
5401 __isl_take isl_basic_map *bmap,
5402 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
5404 int j;
5406 if (!bmap)
5407 return NULL;
5408 if (pos >= isl_basic_map_dim(bmap, type))
5409 isl_die(bmap->ctx, isl_error_invalid,
5410 "index out of bounds", goto error);
5411 pos += isl_basic_map_offset(bmap, type);
5412 bmap = isl_basic_map_cow(bmap);
5413 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
5414 j = isl_basic_map_alloc_inequality(bmap);
5415 if (j < 0)
5416 goto error;
5417 isl_seq_clr(bmap->ineq[j], 1 + isl_basic_map_total_dim(bmap));
5418 if (upper) {
5419 isl_int_set_si(bmap->ineq[j][pos], -1);
5420 isl_int_set(bmap->ineq[j][0], value);
5421 } else {
5422 isl_int_set_si(bmap->ineq[j][pos], 1);
5423 isl_int_neg(bmap->ineq[j][0], value);
5425 bmap = isl_basic_map_simplify(bmap);
5426 return isl_basic_map_finalize(bmap);
5427 error:
5428 isl_basic_map_free(bmap);
5429 return NULL;
5432 /* Bound the given variable of "map" from below (or above is "upper"
5433 * is set) to "value".
5435 static __isl_give isl_map *map_bound(__isl_take isl_map *map,
5436 enum isl_dim_type type, unsigned pos, isl_int value, int upper)
5438 int i;
5440 map = isl_map_cow(map);
5441 if (!map)
5442 return NULL;
5444 if (pos >= isl_map_dim(map, type))
5445 isl_die(map->ctx, isl_error_invalid,
5446 "index out of bounds", goto error);
5447 for (i = map->n - 1; i >= 0; --i) {
5448 map->p[i] = basic_map_bound(map->p[i], type, pos, value, upper);
5449 if (remove_if_empty(map, i) < 0)
5450 goto error;
5452 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5453 return map;
5454 error:
5455 isl_map_free(map);
5456 return NULL;
5459 __isl_give isl_map *isl_map_lower_bound(__isl_take isl_map *map,
5460 enum isl_dim_type type, unsigned pos, isl_int value)
5462 return map_bound(map, type, pos, value, 0);
5465 __isl_give isl_map *isl_map_upper_bound(__isl_take isl_map *map,
5466 enum isl_dim_type type, unsigned pos, isl_int value)
5468 return map_bound(map, type, pos, value, 1);
5471 __isl_give isl_set *isl_set_lower_bound(__isl_take isl_set *set,
5472 enum isl_dim_type type, unsigned pos, isl_int value)
5474 return isl_map_lower_bound(set, type, pos, value);
5477 __isl_give isl_set *isl_set_upper_bound(__isl_take isl_set *set,
5478 enum isl_dim_type type, unsigned pos, isl_int value)
5480 return isl_map_upper_bound(set, type, pos, value);
5483 struct isl_set *isl_set_lower_bound_dim(struct isl_set *set, unsigned dim,
5484 isl_int value)
5486 int i;
5488 set = isl_set_cow(set);
5489 if (!set)
5490 return NULL;
5492 isl_assert(set->ctx, dim < isl_set_n_dim(set), goto error);
5493 for (i = 0; i < set->n; ++i) {
5494 set->p[i] = isl_basic_set_lower_bound_dim(set->p[i], dim, value);
5495 if (!set->p[i])
5496 goto error;
5498 return set;
5499 error:
5500 isl_set_free(set);
5501 return NULL;
5504 struct isl_map *isl_map_reverse(struct isl_map *map)
5506 int i;
5508 map = isl_map_cow(map);
5509 if (!map)
5510 return NULL;
5512 map->dim = isl_space_reverse(map->dim);
5513 if (!map->dim)
5514 goto error;
5515 for (i = 0; i < map->n; ++i) {
5516 map->p[i] = isl_basic_map_reverse(map->p[i]);
5517 if (!map->p[i])
5518 goto error;
5520 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
5521 return map;
5522 error:
5523 isl_map_free(map);
5524 return NULL;
5527 static struct isl_map *isl_basic_map_partial_lexopt(
5528 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5529 struct isl_set **empty, int max)
5531 if (!bmap)
5532 goto error;
5533 if (bmap->ctx->opt->pip == ISL_PIP_PIP)
5534 return isl_pip_basic_map_lexopt(bmap, dom, empty, max);
5535 else
5536 return isl_tab_basic_map_partial_lexopt(bmap, dom, empty, max);
5537 error:
5538 isl_basic_map_free(bmap);
5539 isl_basic_set_free(dom);
5540 if (empty)
5541 *empty = NULL;
5542 return NULL;
5545 struct isl_map *isl_basic_map_partial_lexmax(
5546 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5547 struct isl_set **empty)
5549 return isl_basic_map_partial_lexopt(bmap, dom, empty, 1);
5552 struct isl_map *isl_basic_map_partial_lexmin(
5553 struct isl_basic_map *bmap, struct isl_basic_set *dom,
5554 struct isl_set **empty)
5556 return isl_basic_map_partial_lexopt(bmap, dom, empty, 0);
5559 struct isl_set *isl_basic_set_partial_lexmin(
5560 struct isl_basic_set *bset, struct isl_basic_set *dom,
5561 struct isl_set **empty)
5563 return (struct isl_set *)
5564 isl_basic_map_partial_lexmin((struct isl_basic_map *)bset,
5565 dom, empty);
5568 struct isl_set *isl_basic_set_partial_lexmax(
5569 struct isl_basic_set *bset, struct isl_basic_set *dom,
5570 struct isl_set **empty)
5572 return (struct isl_set *)
5573 isl_basic_map_partial_lexmax((struct isl_basic_map *)bset,
5574 dom, empty);
5577 __isl_give isl_pw_multi_aff *isl_basic_map_partial_lexmin_pw_multi_aff(
5578 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5579 __isl_give isl_set **empty)
5581 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, empty, 0);
5584 __isl_give isl_pw_multi_aff *isl_basic_map_partial_lexmax_pw_multi_aff(
5585 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5586 __isl_give isl_set **empty)
5588 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, empty, 1);
5591 __isl_give isl_pw_multi_aff *isl_basic_set_partial_lexmin_pw_multi_aff(
5592 __isl_take isl_basic_set *bset, __isl_take isl_basic_set *dom,
5593 __isl_give isl_set **empty)
5595 return isl_basic_map_partial_lexmin_pw_multi_aff(bset, dom, empty);
5598 __isl_give isl_pw_multi_aff *isl_basic_set_partial_lexmax_pw_multi_aff(
5599 __isl_take isl_basic_set *bset, __isl_take isl_basic_set *dom,
5600 __isl_give isl_set **empty)
5602 return isl_basic_map_partial_lexmax_pw_multi_aff(bset, dom, empty);
5605 __isl_give isl_pw_multi_aff *isl_basic_map_lexopt_pw_multi_aff(
5606 __isl_take isl_basic_map *bmap, int max)
5608 isl_basic_set *dom = NULL;
5609 isl_space *dom_space;
5611 if (!bmap)
5612 goto error;
5613 dom_space = isl_space_domain(isl_space_copy(bmap->dim));
5614 dom = isl_basic_set_universe(dom_space);
5615 return isl_basic_map_partial_lexopt_pw_multi_aff(bmap, dom, NULL, max);
5616 error:
5617 isl_basic_map_free(bmap);
5618 return NULL;
5621 __isl_give isl_pw_multi_aff *isl_basic_map_lexmin_pw_multi_aff(
5622 __isl_take isl_basic_map *bmap)
5624 return isl_basic_map_lexopt_pw_multi_aff(bmap, 0);
5627 #undef TYPE
5628 #define TYPE isl_pw_multi_aff
5629 #undef SUFFIX
5630 #define SUFFIX _pw_multi_aff
5631 #undef EMPTY
5632 #define EMPTY isl_pw_multi_aff_empty
5633 #undef ADD
5634 #define ADD isl_pw_multi_aff_union_add
5635 #include "isl_map_lexopt_templ.c"
5637 /* Given a map "map", compute the lexicographically minimal
5638 * (or maximal) image element for each domain element in dom,
5639 * in the form of an isl_pw_multi_aff.
5640 * Set *empty to those elements in dom that do not have an image element.
5642 * We first compute the lexicographically minimal or maximal element
5643 * in the first basic map. This results in a partial solution "res"
5644 * and a subset "todo" of dom that still need to be handled.
5645 * We then consider each of the remaining maps in "map" and successively
5646 * update both "res" and "todo".
5648 static __isl_give isl_pw_multi_aff *isl_map_partial_lexopt_aligned_pw_multi_aff(
5649 __isl_take isl_map *map, __isl_take isl_set *dom,
5650 __isl_give isl_set **empty, int max)
5652 int i;
5653 isl_pw_multi_aff *res;
5654 isl_set *todo;
5656 if (!map || !dom)
5657 goto error;
5659 if (isl_map_plain_is_empty(map)) {
5660 if (empty)
5661 *empty = dom;
5662 else
5663 isl_set_free(dom);
5664 return isl_pw_multi_aff_from_map(map);
5667 res = basic_map_partial_lexopt_pw_multi_aff(
5668 isl_basic_map_copy(map->p[0]),
5669 isl_set_copy(dom), &todo, max);
5671 for (i = 1; i < map->n; ++i) {
5672 isl_pw_multi_aff *res_i;
5673 isl_set *todo_i;
5675 res_i = basic_map_partial_lexopt_pw_multi_aff(
5676 isl_basic_map_copy(map->p[i]),
5677 isl_set_copy(dom), &todo_i, max);
5679 if (max)
5680 res = isl_pw_multi_aff_union_lexmax(res, res_i);
5681 else
5682 res = isl_pw_multi_aff_union_lexmin(res, res_i);
5684 todo = isl_set_intersect(todo, todo_i);
5687 isl_set_free(dom);
5688 isl_map_free(map);
5690 if (empty)
5691 *empty = todo;
5692 else
5693 isl_set_free(todo);
5695 return res;
5696 error:
5697 if (empty)
5698 *empty = NULL;
5699 isl_set_free(dom);
5700 isl_map_free(map);
5701 return NULL;
5704 #undef TYPE
5705 #define TYPE isl_map
5706 #undef SUFFIX
5707 #define SUFFIX
5708 #undef EMPTY
5709 #define EMPTY isl_map_empty
5710 #undef ADD
5711 #define ADD isl_map_union_disjoint
5712 #include "isl_map_lexopt_templ.c"
5714 /* Given a map "map", compute the lexicographically minimal
5715 * (or maximal) image element for each domain element in dom.
5716 * Set *empty to those elements in dom that do not have an image element.
5718 * We first compute the lexicographically minimal or maximal element
5719 * in the first basic map. This results in a partial solution "res"
5720 * and a subset "todo" of dom that still need to be handled.
5721 * We then consider each of the remaining maps in "map" and successively
5722 * update both "res" and "todo".
5724 * Let res^k and todo^k be the results after k steps and let i = k + 1.
5725 * Assume we are computing the lexicographical maximum.
5726 * We first compute the lexicographically maximal element in basic map i.
5727 * This results in a partial solution res_i and a subset todo_i.
5728 * Then we combine these results with those obtain for the first k basic maps
5729 * to obtain a result that is valid for the first k+1 basic maps.
5730 * In particular, the set where there is no solution is the set where
5731 * there is no solution for the first k basic maps and also no solution
5732 * for the ith basic map, i.e.,
5734 * todo^i = todo^k * todo_i
5736 * On dom(res^k) * dom(res_i), we need to pick the larger of the two
5737 * solutions, arbitrarily breaking ties in favor of res^k.
5738 * That is, when res^k(a) >= res_i(a), we pick res^k and
5739 * when res^k(a) < res_i(a), we pick res_i. (Here, ">=" and "<" denote
5740 * the lexicographic order.)
5741 * In practice, we compute
5743 * res^k * (res_i . "<=")
5745 * and
5747 * res_i * (res^k . "<")
5749 * Finally, we consider the symmetric difference of dom(res^k) and dom(res_i),
5750 * where only one of res^k and res_i provides a solution and we simply pick
5751 * that one, i.e.,
5753 * res^k * todo_i
5754 * and
5755 * res_i * todo^k
5757 * Note that we only compute these intersections when dom(res^k) intersects
5758 * dom(res_i). Otherwise, the only effect of these intersections is to
5759 * potentially break up res^k and res_i into smaller pieces.
5760 * We want to avoid such splintering as much as possible.
5761 * In fact, an earlier implementation of this function would look for
5762 * better results in the domain of res^k and for extra results in todo^k,
5763 * but this would always result in a splintering according to todo^k,
5764 * even when the domain of basic map i is disjoint from the domains of
5765 * the previous basic maps.
5767 static __isl_give isl_map *isl_map_partial_lexopt_aligned(
5768 __isl_take isl_map *map, __isl_take isl_set *dom,
5769 __isl_give isl_set **empty, int max)
5771 int i;
5772 struct isl_map *res;
5773 struct isl_set *todo;
5775 if (!map || !dom)
5776 goto error;
5778 if (isl_map_plain_is_empty(map)) {
5779 if (empty)
5780 *empty = dom;
5781 else
5782 isl_set_free(dom);
5783 return map;
5786 res = basic_map_partial_lexopt(isl_basic_map_copy(map->p[0]),
5787 isl_set_copy(dom), &todo, max);
5789 for (i = 1; i < map->n; ++i) {
5790 isl_map *lt, *le;
5791 isl_map *res_i;
5792 isl_set *todo_i;
5793 isl_space *dim = isl_space_range(isl_map_get_space(res));
5795 res_i = basic_map_partial_lexopt(isl_basic_map_copy(map->p[i]),
5796 isl_set_copy(dom), &todo_i, max);
5798 if (max) {
5799 lt = isl_map_lex_lt(isl_space_copy(dim));
5800 le = isl_map_lex_le(dim);
5801 } else {
5802 lt = isl_map_lex_gt(isl_space_copy(dim));
5803 le = isl_map_lex_ge(dim);
5805 lt = isl_map_apply_range(isl_map_copy(res), lt);
5806 lt = isl_map_intersect(lt, isl_map_copy(res_i));
5807 le = isl_map_apply_range(isl_map_copy(res_i), le);
5808 le = isl_map_intersect(le, isl_map_copy(res));
5810 if (!isl_map_is_empty(lt) || !isl_map_is_empty(le)) {
5811 res = isl_map_intersect_domain(res,
5812 isl_set_copy(todo_i));
5813 res_i = isl_map_intersect_domain(res_i,
5814 isl_set_copy(todo));
5817 res = isl_map_union_disjoint(res, res_i);
5818 res = isl_map_union_disjoint(res, lt);
5819 res = isl_map_union_disjoint(res, le);
5821 todo = isl_set_intersect(todo, todo_i);
5824 isl_set_free(dom);
5825 isl_map_free(map);
5827 if (empty)
5828 *empty = todo;
5829 else
5830 isl_set_free(todo);
5832 return res;
5833 error:
5834 if (empty)
5835 *empty = NULL;
5836 isl_set_free(dom);
5837 isl_map_free(map);
5838 return NULL;
5841 __isl_give isl_map *isl_map_partial_lexmax(
5842 __isl_take isl_map *map, __isl_take isl_set *dom,
5843 __isl_give isl_set **empty)
5845 return isl_map_partial_lexopt(map, dom, empty, 1);
5848 __isl_give isl_map *isl_map_partial_lexmin(
5849 __isl_take isl_map *map, __isl_take isl_set *dom,
5850 __isl_give isl_set **empty)
5852 return isl_map_partial_lexopt(map, dom, empty, 0);
5855 __isl_give isl_set *isl_set_partial_lexmin(
5856 __isl_take isl_set *set, __isl_take isl_set *dom,
5857 __isl_give isl_set **empty)
5859 return (struct isl_set *)
5860 isl_map_partial_lexmin((struct isl_map *)set,
5861 dom, empty);
5864 __isl_give isl_set *isl_set_partial_lexmax(
5865 __isl_take isl_set *set, __isl_take isl_set *dom,
5866 __isl_give isl_set **empty)
5868 return (struct isl_set *)
5869 isl_map_partial_lexmax((struct isl_map *)set,
5870 dom, empty);
5873 __isl_give isl_map *isl_basic_map_lexopt(__isl_take isl_basic_map *bmap, int max)
5875 struct isl_basic_set *dom = NULL;
5876 isl_space *dom_dim;
5878 if (!bmap)
5879 goto error;
5880 dom_dim = isl_space_domain(isl_space_copy(bmap->dim));
5881 dom = isl_basic_set_universe(dom_dim);
5882 return isl_basic_map_partial_lexopt(bmap, dom, NULL, max);
5883 error:
5884 isl_basic_map_free(bmap);
5885 return NULL;
5888 __isl_give isl_map *isl_basic_map_lexmin(__isl_take isl_basic_map *bmap)
5890 return isl_basic_map_lexopt(bmap, 0);
5893 __isl_give isl_map *isl_basic_map_lexmax(__isl_take isl_basic_map *bmap)
5895 return isl_basic_map_lexopt(bmap, 1);
5898 __isl_give isl_set *isl_basic_set_lexmin(__isl_take isl_basic_set *bset)
5900 return (isl_set *)isl_basic_map_lexmin((isl_basic_map *)bset);
5903 __isl_give isl_set *isl_basic_set_lexmax(__isl_take isl_basic_set *bset)
5905 return (isl_set *)isl_basic_map_lexmax((isl_basic_map *)bset);
5908 __isl_give isl_set *isl_set_lexmin(__isl_take isl_set *set)
5910 return (isl_set *)isl_map_lexmin((isl_map *)set);
5913 __isl_give isl_set *isl_set_lexmax(__isl_take isl_set *set)
5915 return (isl_set *)isl_map_lexmax((isl_map *)set);
5918 /* Extract the first and only affine expression from list
5919 * and then add it to *pwaff with the given dom.
5920 * This domain is known to be disjoint from other domains
5921 * because of the way isl_basic_map_foreach_lexmax works.
5923 static int update_dim_opt(__isl_take isl_basic_set *dom,
5924 __isl_take isl_aff_list *list, void *user)
5926 isl_ctx *ctx = isl_basic_set_get_ctx(dom);
5927 isl_aff *aff;
5928 isl_pw_aff **pwaff = user;
5929 isl_pw_aff *pwaff_i;
5931 if (isl_aff_list_n_aff(list) != 1)
5932 isl_die(ctx, isl_error_internal,
5933 "expecting single element list", goto error);
5935 aff = isl_aff_list_get_aff(list, 0);
5936 pwaff_i = isl_pw_aff_alloc(isl_set_from_basic_set(dom), aff);
5938 *pwaff = isl_pw_aff_add_disjoint(*pwaff, pwaff_i);
5940 isl_aff_list_free(list);
5942 return 0;
5943 error:
5944 isl_basic_set_free(dom);
5945 isl_aff_list_free(list);
5946 return -1;
5949 /* Given a basic map with one output dimension, compute the minimum or
5950 * maximum of that dimension as an isl_pw_aff.
5952 * The isl_pw_aff is constructed by having isl_basic_map_foreach_lexopt
5953 * call update_dim_opt on each leaf of the result.
5955 static __isl_give isl_pw_aff *basic_map_dim_opt(__isl_keep isl_basic_map *bmap,
5956 int max)
5958 isl_space *dim = isl_basic_map_get_space(bmap);
5959 isl_pw_aff *pwaff;
5960 int r;
5962 dim = isl_space_from_domain(isl_space_domain(dim));
5963 dim = isl_space_add_dims(dim, isl_dim_out, 1);
5964 pwaff = isl_pw_aff_empty(dim);
5966 r = isl_basic_map_foreach_lexopt(bmap, max, &update_dim_opt, &pwaff);
5967 if (r < 0)
5968 return isl_pw_aff_free(pwaff);
5970 return pwaff;
5973 /* Compute the minimum or maximum of the given output dimension
5974 * as a function of the parameters and the input dimensions,
5975 * but independently of the other output dimensions.
5977 * We first project out the other output dimension and then compute
5978 * the "lexicographic" maximum in each basic map, combining the results
5979 * using isl_pw_aff_union_max.
5981 static __isl_give isl_pw_aff *map_dim_opt(__isl_take isl_map *map, int pos,
5982 int max)
5984 int i;
5985 isl_pw_aff *pwaff;
5986 unsigned n_out;
5988 n_out = isl_map_dim(map, isl_dim_out);
5989 map = isl_map_project_out(map, isl_dim_out, pos + 1, n_out - (pos + 1));
5990 map = isl_map_project_out(map, isl_dim_out, 0, pos);
5991 if (!map)
5992 return NULL;
5994 if (map->n == 0) {
5995 isl_space *dim = isl_map_get_space(map);
5996 dim = isl_space_domain(isl_space_from_range(dim));
5997 isl_map_free(map);
5998 return isl_pw_aff_empty(dim);
6001 pwaff = basic_map_dim_opt(map->p[0], max);
6002 for (i = 1; i < map->n; ++i) {
6003 isl_pw_aff *pwaff_i;
6005 pwaff_i = basic_map_dim_opt(map->p[i], max);
6006 pwaff = isl_pw_aff_union_opt(pwaff, pwaff_i, max);
6009 isl_map_free(map);
6011 return pwaff;
6014 /* Compute the maximum of the given output dimension as a function of the
6015 * parameters and input dimensions, but independently of
6016 * the other output dimensions.
6018 __isl_give isl_pw_aff *isl_map_dim_max(__isl_take isl_map *map, int pos)
6020 return map_dim_opt(map, pos, 1);
6023 /* Compute the minimum or maximum of the given set dimension
6024 * as a function of the parameters,
6025 * but independently of the other set dimensions.
6027 static __isl_give isl_pw_aff *set_dim_opt(__isl_take isl_set *set, int pos,
6028 int max)
6030 return map_dim_opt(set, pos, max);
6033 /* Compute the maximum of the given set dimension as a function of the
6034 * parameters, but independently of the other set dimensions.
6036 __isl_give isl_pw_aff *isl_set_dim_max(__isl_take isl_set *set, int pos)
6038 return set_dim_opt(set, pos, 1);
6041 /* Compute the minimum of the given set dimension as a function of the
6042 * parameters, but independently of the other set dimensions.
6044 __isl_give isl_pw_aff *isl_set_dim_min(__isl_take isl_set *set, int pos)
6046 return set_dim_opt(set, pos, 0);
6049 /* Apply a preimage specified by "mat" on the parameters of "bset".
6050 * bset is assumed to have only parameters and divs.
6052 static struct isl_basic_set *basic_set_parameter_preimage(
6053 struct isl_basic_set *bset, struct isl_mat *mat)
6055 unsigned nparam;
6057 if (!bset || !mat)
6058 goto error;
6060 bset->dim = isl_space_cow(bset->dim);
6061 if (!bset->dim)
6062 goto error;
6064 nparam = isl_basic_set_dim(bset, isl_dim_param);
6066 isl_assert(bset->ctx, mat->n_row == 1 + nparam, goto error);
6068 bset->dim->nparam = 0;
6069 bset->dim->n_out = nparam;
6070 bset = isl_basic_set_preimage(bset, mat);
6071 if (bset) {
6072 bset->dim->nparam = bset->dim->n_out;
6073 bset->dim->n_out = 0;
6075 return bset;
6076 error:
6077 isl_mat_free(mat);
6078 isl_basic_set_free(bset);
6079 return NULL;
6082 /* Apply a preimage specified by "mat" on the parameters of "set".
6083 * set is assumed to have only parameters and divs.
6085 static struct isl_set *set_parameter_preimage(
6086 struct isl_set *set, struct isl_mat *mat)
6088 isl_space *dim = NULL;
6089 unsigned nparam;
6091 if (!set || !mat)
6092 goto error;
6094 dim = isl_space_copy(set->dim);
6095 dim = isl_space_cow(dim);
6096 if (!dim)
6097 goto error;
6099 nparam = isl_set_dim(set, isl_dim_param);
6101 isl_assert(set->ctx, mat->n_row == 1 + nparam, goto error);
6103 dim->nparam = 0;
6104 dim->n_out = nparam;
6105 isl_set_reset_space(set, dim);
6106 set = isl_set_preimage(set, mat);
6107 if (!set)
6108 goto error2;
6109 dim = isl_space_copy(set->dim);
6110 dim = isl_space_cow(dim);
6111 if (!dim)
6112 goto error2;
6113 dim->nparam = dim->n_out;
6114 dim->n_out = 0;
6115 isl_set_reset_space(set, dim);
6116 return set;
6117 error:
6118 isl_space_free(dim);
6119 isl_mat_free(mat);
6120 error2:
6121 isl_set_free(set);
6122 return NULL;
6125 /* Intersect the basic set "bset" with the affine space specified by the
6126 * equalities in "eq".
6128 static struct isl_basic_set *basic_set_append_equalities(
6129 struct isl_basic_set *bset, struct isl_mat *eq)
6131 int i, k;
6132 unsigned len;
6134 if (!bset || !eq)
6135 goto error;
6137 bset = isl_basic_set_extend_space(bset, isl_space_copy(bset->dim), 0,
6138 eq->n_row, 0);
6139 if (!bset)
6140 goto error;
6142 len = 1 + isl_space_dim(bset->dim, isl_dim_all) + bset->extra;
6143 for (i = 0; i < eq->n_row; ++i) {
6144 k = isl_basic_set_alloc_equality(bset);
6145 if (k < 0)
6146 goto error;
6147 isl_seq_cpy(bset->eq[k], eq->row[i], eq->n_col);
6148 isl_seq_clr(bset->eq[k] + eq->n_col, len - eq->n_col);
6150 isl_mat_free(eq);
6152 bset = isl_basic_set_gauss(bset, NULL);
6153 bset = isl_basic_set_finalize(bset);
6155 return bset;
6156 error:
6157 isl_mat_free(eq);
6158 isl_basic_set_free(bset);
6159 return NULL;
6162 /* Intersect the set "set" with the affine space specified by the
6163 * equalities in "eq".
6165 static struct isl_set *set_append_equalities(struct isl_set *set,
6166 struct isl_mat *eq)
6168 int i;
6170 if (!set || !eq)
6171 goto error;
6173 for (i = 0; i < set->n; ++i) {
6174 set->p[i] = basic_set_append_equalities(set->p[i],
6175 isl_mat_copy(eq));
6176 if (!set->p[i])
6177 goto error;
6179 isl_mat_free(eq);
6180 return set;
6181 error:
6182 isl_mat_free(eq);
6183 isl_set_free(set);
6184 return NULL;
6187 /* Project the given basic set onto its parameter domain, possibly introducing
6188 * new, explicit, existential variables in the constraints.
6189 * The input has parameters and (possibly implicit) existential variables.
6190 * The output has the same parameters, but only
6191 * explicit existentially quantified variables.
6193 * The actual projection is performed by pip, but pip doesn't seem
6194 * to like equalities very much, so we first remove the equalities
6195 * among the parameters by performing a variable compression on
6196 * the parameters. Afterward, an inverse transformation is performed
6197 * and the equalities among the parameters are inserted back in.
6199 static struct isl_set *parameter_compute_divs(struct isl_basic_set *bset)
6201 int i, j;
6202 struct isl_mat *eq;
6203 struct isl_mat *T, *T2;
6204 struct isl_set *set;
6205 unsigned nparam, n_div;
6207 bset = isl_basic_set_cow(bset);
6208 if (!bset)
6209 return NULL;
6211 if (bset->n_eq == 0)
6212 return isl_basic_set_lexmin(bset);
6214 isl_basic_set_gauss(bset, NULL);
6216 nparam = isl_basic_set_dim(bset, isl_dim_param);
6217 n_div = isl_basic_set_dim(bset, isl_dim_div);
6219 for (i = 0, j = n_div - 1; i < bset->n_eq && j >= 0; --j) {
6220 if (!isl_int_is_zero(bset->eq[i][1 + nparam + j]))
6221 ++i;
6223 if (i == bset->n_eq)
6224 return isl_basic_set_lexmin(bset);
6226 eq = isl_mat_sub_alloc6(bset->ctx, bset->eq, i, bset->n_eq - i,
6227 0, 1 + nparam);
6228 eq = isl_mat_cow(eq);
6229 T = isl_mat_variable_compression(isl_mat_copy(eq), &T2);
6230 if (T && T->n_col == 0) {
6231 isl_mat_free(T);
6232 isl_mat_free(T2);
6233 isl_mat_free(eq);
6234 bset = isl_basic_set_set_to_empty(bset);
6235 return isl_set_from_basic_set(bset);
6237 bset = basic_set_parameter_preimage(bset, T);
6239 set = isl_basic_set_lexmin(bset);
6240 set = set_parameter_preimage(set, T2);
6241 set = set_append_equalities(set, eq);
6242 return set;
6245 /* Compute an explicit representation for all the existentially
6246 * quantified variables.
6247 * The input and output dimensions are first turned into parameters.
6248 * compute_divs then returns a map with the same parameters and
6249 * no input or output dimensions and the dimension specification
6250 * is reset to that of the input.
6252 static struct isl_map *compute_divs(struct isl_basic_map *bmap)
6254 struct isl_basic_set *bset;
6255 struct isl_set *set;
6256 struct isl_map *map;
6257 isl_space *dim, *orig_dim = NULL;
6258 unsigned nparam;
6259 unsigned n_in;
6260 unsigned n_out;
6262 bmap = isl_basic_map_cow(bmap);
6263 if (!bmap)
6264 return NULL;
6266 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6267 n_in = isl_basic_map_dim(bmap, isl_dim_in);
6268 n_out = isl_basic_map_dim(bmap, isl_dim_out);
6269 dim = isl_space_set_alloc(bmap->ctx, nparam + n_in + n_out, 0);
6270 if (!dim)
6271 goto error;
6273 orig_dim = bmap->dim;
6274 bmap->dim = dim;
6275 bset = (struct isl_basic_set *)bmap;
6277 set = parameter_compute_divs(bset);
6278 map = (struct isl_map *)set;
6279 map = isl_map_reset_space(map, orig_dim);
6281 return map;
6282 error:
6283 isl_basic_map_free(bmap);
6284 return NULL;
6287 int isl_basic_map_divs_known(__isl_keep isl_basic_map *bmap)
6289 int i;
6290 unsigned off;
6292 if (!bmap)
6293 return -1;
6295 off = isl_space_dim(bmap->dim, isl_dim_all);
6296 for (i = 0; i < bmap->n_div; ++i) {
6297 if (isl_int_is_zero(bmap->div[i][0]))
6298 return 0;
6299 isl_assert(bmap->ctx, isl_int_is_zero(bmap->div[i][1+1+off+i]),
6300 return -1);
6302 return 1;
6305 static int map_divs_known(__isl_keep isl_map *map)
6307 int i;
6309 if (!map)
6310 return -1;
6312 for (i = 0; i < map->n; ++i) {
6313 int known = isl_basic_map_divs_known(map->p[i]);
6314 if (known <= 0)
6315 return known;
6318 return 1;
6321 /* If bmap contains any unknown divs, then compute explicit
6322 * expressions for them. However, this computation may be
6323 * quite expensive, so first try to remove divs that aren't
6324 * strictly needed.
6326 struct isl_map *isl_basic_map_compute_divs(struct isl_basic_map *bmap)
6328 int known;
6329 struct isl_map *map;
6331 known = isl_basic_map_divs_known(bmap);
6332 if (known < 0)
6333 goto error;
6334 if (known)
6335 return isl_map_from_basic_map(bmap);
6337 bmap = isl_basic_map_drop_redundant_divs(bmap);
6339 known = isl_basic_map_divs_known(bmap);
6340 if (known < 0)
6341 goto error;
6342 if (known)
6343 return isl_map_from_basic_map(bmap);
6345 map = compute_divs(bmap);
6346 return map;
6347 error:
6348 isl_basic_map_free(bmap);
6349 return NULL;
6352 struct isl_map *isl_map_compute_divs(struct isl_map *map)
6354 int i;
6355 int known;
6356 struct isl_map *res;
6358 if (!map)
6359 return NULL;
6360 if (map->n == 0)
6361 return map;
6363 known = map_divs_known(map);
6364 if (known < 0) {
6365 isl_map_free(map);
6366 return NULL;
6368 if (known)
6369 return map;
6371 res = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[0]));
6372 for (i = 1 ; i < map->n; ++i) {
6373 struct isl_map *r2;
6374 r2 = isl_basic_map_compute_divs(isl_basic_map_copy(map->p[i]));
6375 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT))
6376 res = isl_map_union_disjoint(res, r2);
6377 else
6378 res = isl_map_union(res, r2);
6380 isl_map_free(map);
6382 return res;
6385 struct isl_set *isl_basic_set_compute_divs(struct isl_basic_set *bset)
6387 return (struct isl_set *)
6388 isl_basic_map_compute_divs((struct isl_basic_map *)bset);
6391 struct isl_set *isl_set_compute_divs(struct isl_set *set)
6393 return (struct isl_set *)
6394 isl_map_compute_divs((struct isl_map *)set);
6397 struct isl_set *isl_map_domain(struct isl_map *map)
6399 int i;
6400 struct isl_set *set;
6402 if (!map)
6403 goto error;
6405 map = isl_map_cow(map);
6406 if (!map)
6407 return NULL;
6409 set = (struct isl_set *)map;
6410 set->dim = isl_space_domain(set->dim);
6411 if (!set->dim)
6412 goto error;
6413 for (i = 0; i < map->n; ++i) {
6414 set->p[i] = isl_basic_map_domain(map->p[i]);
6415 if (!set->p[i])
6416 goto error;
6418 ISL_F_CLR(set, ISL_MAP_DISJOINT);
6419 ISL_F_CLR(set, ISL_SET_NORMALIZED);
6420 return set;
6421 error:
6422 isl_map_free(map);
6423 return NULL;
6426 static __isl_give isl_map *map_union_disjoint(__isl_take isl_map *map1,
6427 __isl_take isl_map *map2)
6429 int i;
6430 unsigned flags = 0;
6431 struct isl_map *map = NULL;
6433 if (!map1 || !map2)
6434 goto error;
6436 if (map1->n == 0) {
6437 isl_map_free(map1);
6438 return map2;
6440 if (map2->n == 0) {
6441 isl_map_free(map2);
6442 return map1;
6445 isl_assert(map1->ctx, isl_space_is_equal(map1->dim, map2->dim), goto error);
6447 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
6448 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
6449 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
6451 map = isl_map_alloc_space(isl_space_copy(map1->dim),
6452 map1->n + map2->n, flags);
6453 if (!map)
6454 goto error;
6455 for (i = 0; i < map1->n; ++i) {
6456 map = isl_map_add_basic_map(map,
6457 isl_basic_map_copy(map1->p[i]));
6458 if (!map)
6459 goto error;
6461 for (i = 0; i < map2->n; ++i) {
6462 map = isl_map_add_basic_map(map,
6463 isl_basic_map_copy(map2->p[i]));
6464 if (!map)
6465 goto error;
6467 isl_map_free(map1);
6468 isl_map_free(map2);
6469 return map;
6470 error:
6471 isl_map_free(map);
6472 isl_map_free(map1);
6473 isl_map_free(map2);
6474 return NULL;
6477 __isl_give isl_map *isl_map_union_disjoint(__isl_take isl_map *map1,
6478 __isl_take isl_map *map2)
6480 return isl_map_align_params_map_map_and(map1, map2, &map_union_disjoint);
6483 struct isl_map *isl_map_union(struct isl_map *map1, struct isl_map *map2)
6485 map1 = isl_map_union_disjoint(map1, map2);
6486 if (!map1)
6487 return NULL;
6488 if (map1->n > 1)
6489 ISL_F_CLR(map1, ISL_MAP_DISJOINT);
6490 return map1;
6493 struct isl_set *isl_set_union_disjoint(
6494 struct isl_set *set1, struct isl_set *set2)
6496 return (struct isl_set *)
6497 isl_map_union_disjoint(
6498 (struct isl_map *)set1, (struct isl_map *)set2);
6501 struct isl_set *isl_set_union(struct isl_set *set1, struct isl_set *set2)
6503 return (struct isl_set *)
6504 isl_map_union((struct isl_map *)set1, (struct isl_map *)set2);
6507 static __isl_give isl_map *map_intersect_range(__isl_take isl_map *map,
6508 __isl_take isl_set *set)
6510 unsigned flags = 0;
6511 struct isl_map *result;
6512 int i, j;
6514 if (!map || !set)
6515 goto error;
6517 if (!isl_space_match(map->dim, isl_dim_param, set->dim, isl_dim_param))
6518 isl_die(set->ctx, isl_error_invalid,
6519 "parameters don't match", goto error);
6521 if (isl_space_dim(set->dim, isl_dim_set) != 0 &&
6522 !isl_map_compatible_range(map, set))
6523 isl_die(set->ctx, isl_error_invalid,
6524 "incompatible spaces", goto error);
6526 if (isl_set_plain_is_universe(set)) {
6527 isl_set_free(set);
6528 return map;
6531 if (ISL_F_ISSET(map, ISL_MAP_DISJOINT) &&
6532 ISL_F_ISSET(set, ISL_MAP_DISJOINT))
6533 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
6535 result = isl_map_alloc_space(isl_space_copy(map->dim),
6536 map->n * set->n, flags);
6537 if (!result)
6538 goto error;
6539 for (i = 0; i < map->n; ++i)
6540 for (j = 0; j < set->n; ++j) {
6541 result = isl_map_add_basic_map(result,
6542 isl_basic_map_intersect_range(
6543 isl_basic_map_copy(map->p[i]),
6544 isl_basic_set_copy(set->p[j])));
6545 if (!result)
6546 goto error;
6548 isl_map_free(map);
6549 isl_set_free(set);
6550 return result;
6551 error:
6552 isl_map_free(map);
6553 isl_set_free(set);
6554 return NULL;
6557 __isl_give isl_map *isl_map_intersect_range(__isl_take isl_map *map,
6558 __isl_take isl_set *set)
6560 return isl_map_align_params_map_map_and(map, set, &map_intersect_range);
6563 struct isl_map *isl_map_intersect_domain(
6564 struct isl_map *map, struct isl_set *set)
6566 return isl_map_reverse(
6567 isl_map_intersect_range(isl_map_reverse(map), set));
6570 static __isl_give isl_map *map_apply_domain(__isl_take isl_map *map1,
6571 __isl_take isl_map *map2)
6573 if (!map1 || !map2)
6574 goto error;
6575 map1 = isl_map_reverse(map1);
6576 map1 = isl_map_apply_range(map1, map2);
6577 return isl_map_reverse(map1);
6578 error:
6579 isl_map_free(map1);
6580 isl_map_free(map2);
6581 return NULL;
6584 __isl_give isl_map *isl_map_apply_domain(__isl_take isl_map *map1,
6585 __isl_take isl_map *map2)
6587 return isl_map_align_params_map_map_and(map1, map2, &map_apply_domain);
6590 static __isl_give isl_map *map_apply_range(__isl_take isl_map *map1,
6591 __isl_take isl_map *map2)
6593 isl_space *dim_result;
6594 struct isl_map *result;
6595 int i, j;
6597 if (!map1 || !map2)
6598 goto error;
6600 dim_result = isl_space_join(isl_space_copy(map1->dim),
6601 isl_space_copy(map2->dim));
6603 result = isl_map_alloc_space(dim_result, map1->n * map2->n, 0);
6604 if (!result)
6605 goto error;
6606 for (i = 0; i < map1->n; ++i)
6607 for (j = 0; j < map2->n; ++j) {
6608 result = isl_map_add_basic_map(result,
6609 isl_basic_map_apply_range(
6610 isl_basic_map_copy(map1->p[i]),
6611 isl_basic_map_copy(map2->p[j])));
6612 if (!result)
6613 goto error;
6615 isl_map_free(map1);
6616 isl_map_free(map2);
6617 if (result && result->n <= 1)
6618 ISL_F_SET(result, ISL_MAP_DISJOINT);
6619 return result;
6620 error:
6621 isl_map_free(map1);
6622 isl_map_free(map2);
6623 return NULL;
6626 __isl_give isl_map *isl_map_apply_range(__isl_take isl_map *map1,
6627 __isl_take isl_map *map2)
6629 return isl_map_align_params_map_map_and(map1, map2, &map_apply_range);
6633 * returns range - domain
6635 struct isl_basic_set *isl_basic_map_deltas(struct isl_basic_map *bmap)
6637 isl_space *dims, *target_dim;
6638 struct isl_basic_set *bset;
6639 unsigned dim;
6640 unsigned nparam;
6641 int i;
6643 if (!bmap)
6644 goto error;
6645 isl_assert(bmap->ctx, isl_space_tuple_match(bmap->dim, isl_dim_in,
6646 bmap->dim, isl_dim_out),
6647 goto error);
6648 target_dim = isl_space_domain(isl_basic_map_get_space(bmap));
6649 dim = isl_basic_map_n_in(bmap);
6650 nparam = isl_basic_map_n_param(bmap);
6651 bset = isl_basic_set_from_basic_map(bmap);
6652 bset = isl_basic_set_cow(bset);
6653 dims = isl_basic_set_get_space(bset);
6654 dims = isl_space_add_dims(dims, isl_dim_set, dim);
6655 bset = isl_basic_set_extend_space(bset, dims, 0, dim, 0);
6656 bset = isl_basic_set_swap_vars(bset, 2*dim);
6657 for (i = 0; i < dim; ++i) {
6658 int j = isl_basic_map_alloc_equality(
6659 (struct isl_basic_map *)bset);
6660 if (j < 0)
6661 goto error;
6662 isl_seq_clr(bset->eq[j], 1 + isl_basic_set_total_dim(bset));
6663 isl_int_set_si(bset->eq[j][1+nparam+i], 1);
6664 isl_int_set_si(bset->eq[j][1+nparam+dim+i], 1);
6665 isl_int_set_si(bset->eq[j][1+nparam+2*dim+i], -1);
6667 bset = isl_basic_set_project_out(bset, isl_dim_set, dim, 2*dim);
6668 bset = isl_basic_set_reset_space(bset, target_dim);
6669 return bset;
6670 error:
6671 isl_basic_map_free(bmap);
6672 return NULL;
6676 * returns range - domain
6678 __isl_give isl_set *isl_map_deltas(__isl_take isl_map *map)
6680 int i;
6681 isl_space *dim;
6682 struct isl_set *result;
6684 if (!map)
6685 return NULL;
6687 isl_assert(map->ctx, isl_space_tuple_match(map->dim, isl_dim_in,
6688 map->dim, isl_dim_out),
6689 goto error);
6690 dim = isl_map_get_space(map);
6691 dim = isl_space_domain(dim);
6692 result = isl_set_alloc_space(dim, map->n, 0);
6693 if (!result)
6694 goto error;
6695 for (i = 0; i < map->n; ++i)
6696 result = isl_set_add_basic_set(result,
6697 isl_basic_map_deltas(isl_basic_map_copy(map->p[i])));
6698 isl_map_free(map);
6699 return result;
6700 error:
6701 isl_map_free(map);
6702 return NULL;
6706 * returns [domain -> range] -> range - domain
6708 __isl_give isl_basic_map *isl_basic_map_deltas_map(
6709 __isl_take isl_basic_map *bmap)
6711 int i, k;
6712 isl_space *dim;
6713 isl_basic_map *domain;
6714 int nparam, n;
6715 unsigned total;
6717 if (!isl_space_tuple_match(bmap->dim, isl_dim_in, bmap->dim, isl_dim_out))
6718 isl_die(bmap->ctx, isl_error_invalid,
6719 "domain and range don't match", goto error);
6721 nparam = isl_basic_map_dim(bmap, isl_dim_param);
6722 n = isl_basic_map_dim(bmap, isl_dim_in);
6724 dim = isl_space_from_range(isl_space_domain(isl_basic_map_get_space(bmap)));
6725 domain = isl_basic_map_universe(dim);
6727 bmap = isl_basic_map_from_domain(isl_basic_map_wrap(bmap));
6728 bmap = isl_basic_map_apply_range(bmap, domain);
6729 bmap = isl_basic_map_extend_constraints(bmap, n, 0);
6731 total = isl_basic_map_total_dim(bmap);
6733 for (i = 0; i < n; ++i) {
6734 k = isl_basic_map_alloc_equality(bmap);
6735 if (k < 0)
6736 goto error;
6737 isl_seq_clr(bmap->eq[k], 1 + total);
6738 isl_int_set_si(bmap->eq[k][1 + nparam + i], 1);
6739 isl_int_set_si(bmap->eq[k][1 + nparam + n + i], -1);
6740 isl_int_set_si(bmap->eq[k][1 + nparam + n + n + i], 1);
6743 bmap = isl_basic_map_gauss(bmap, NULL);
6744 return isl_basic_map_finalize(bmap);
6745 error:
6746 isl_basic_map_free(bmap);
6747 return NULL;
6751 * returns [domain -> range] -> range - domain
6753 __isl_give isl_map *isl_map_deltas_map(__isl_take isl_map *map)
6755 int i;
6756 isl_space *domain_dim;
6758 if (!map)
6759 return NULL;
6761 if (!isl_space_tuple_match(map->dim, isl_dim_in, map->dim, isl_dim_out))
6762 isl_die(map->ctx, isl_error_invalid,
6763 "domain and range don't match", goto error);
6765 map = isl_map_cow(map);
6766 if (!map)
6767 return NULL;
6769 domain_dim = isl_space_from_range(isl_space_domain(isl_map_get_space(map)));
6770 map->dim = isl_space_from_domain(isl_space_wrap(map->dim));
6771 map->dim = isl_space_join(map->dim, domain_dim);
6772 if (!map->dim)
6773 goto error;
6774 for (i = 0; i < map->n; ++i) {
6775 map->p[i] = isl_basic_map_deltas_map(map->p[i]);
6776 if (!map->p[i])
6777 goto error;
6779 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
6780 return map;
6781 error:
6782 isl_map_free(map);
6783 return NULL;
6786 __isl_give struct isl_basic_map *basic_map_identity(__isl_take isl_space *dims)
6788 struct isl_basic_map *bmap;
6789 unsigned nparam;
6790 unsigned dim;
6791 int i;
6793 if (!dims)
6794 return NULL;
6796 nparam = dims->nparam;
6797 dim = dims->n_out;
6798 bmap = isl_basic_map_alloc_space(dims, 0, dim, 0);
6799 if (!bmap)
6800 goto error;
6802 for (i = 0; i < dim; ++i) {
6803 int j = isl_basic_map_alloc_equality(bmap);
6804 if (j < 0)
6805 goto error;
6806 isl_seq_clr(bmap->eq[j], 1 + isl_basic_map_total_dim(bmap));
6807 isl_int_set_si(bmap->eq[j][1+nparam+i], 1);
6808 isl_int_set_si(bmap->eq[j][1+nparam+dim+i], -1);
6810 return isl_basic_map_finalize(bmap);
6811 error:
6812 isl_basic_map_free(bmap);
6813 return NULL;
6816 __isl_give isl_basic_map *isl_basic_map_identity(__isl_take isl_space *dim)
6818 if (!dim)
6819 return NULL;
6820 if (dim->n_in != dim->n_out)
6821 isl_die(dim->ctx, isl_error_invalid,
6822 "number of input and output dimensions needs to be "
6823 "the same", goto error);
6824 return basic_map_identity(dim);
6825 error:
6826 isl_space_free(dim);
6827 return NULL;
6830 struct isl_basic_map *isl_basic_map_identity_like(struct isl_basic_map *model)
6832 if (!model || !model->dim)
6833 return NULL;
6834 return isl_basic_map_identity(isl_space_copy(model->dim));
6837 __isl_give isl_map *isl_map_identity(__isl_take isl_space *dim)
6839 return isl_map_from_basic_map(isl_basic_map_identity(dim));
6842 struct isl_map *isl_map_identity_like(struct isl_map *model)
6844 if (!model || !model->dim)
6845 return NULL;
6846 return isl_map_identity(isl_space_copy(model->dim));
6849 struct isl_map *isl_map_identity_like_basic_map(struct isl_basic_map *model)
6851 if (!model || !model->dim)
6852 return NULL;
6853 return isl_map_identity(isl_space_copy(model->dim));
6856 __isl_give isl_map *isl_set_identity(__isl_take isl_set *set)
6858 isl_space *dim = isl_set_get_space(set);
6859 isl_map *id;
6860 id = isl_map_identity(isl_space_map_from_set(dim));
6861 return isl_map_intersect_range(id, set);
6864 /* Construct a basic set with all set dimensions having only non-negative
6865 * values.
6867 __isl_give isl_basic_set *isl_basic_set_positive_orthant(
6868 __isl_take isl_space *space)
6870 int i;
6871 unsigned nparam;
6872 unsigned dim;
6873 struct isl_basic_set *bset;
6875 if (!space)
6876 return NULL;
6877 nparam = space->nparam;
6878 dim = space->n_out;
6879 bset = isl_basic_set_alloc_space(space, 0, 0, dim);
6880 if (!bset)
6881 return NULL;
6882 for (i = 0; i < dim; ++i) {
6883 int k = isl_basic_set_alloc_inequality(bset);
6884 if (k < 0)
6885 goto error;
6886 isl_seq_clr(bset->ineq[k], 1 + isl_basic_set_total_dim(bset));
6887 isl_int_set_si(bset->ineq[k][1 + nparam + i], 1);
6889 return bset;
6890 error:
6891 isl_basic_set_free(bset);
6892 return NULL;
6895 /* Construct the half-space x_pos >= 0.
6897 static __isl_give isl_basic_set *nonneg_halfspace(__isl_take isl_space *dim,
6898 int pos)
6900 int k;
6901 isl_basic_set *nonneg;
6903 nonneg = isl_basic_set_alloc_space(dim, 0, 0, 1);
6904 k = isl_basic_set_alloc_inequality(nonneg);
6905 if (k < 0)
6906 goto error;
6907 isl_seq_clr(nonneg->ineq[k], 1 + isl_basic_set_total_dim(nonneg));
6908 isl_int_set_si(nonneg->ineq[k][pos], 1);
6910 return isl_basic_set_finalize(nonneg);
6911 error:
6912 isl_basic_set_free(nonneg);
6913 return NULL;
6916 /* Construct the half-space x_pos <= -1.
6918 static __isl_give isl_basic_set *neg_halfspace(__isl_take isl_space *dim, int pos)
6920 int k;
6921 isl_basic_set *neg;
6923 neg = isl_basic_set_alloc_space(dim, 0, 0, 1);
6924 k = isl_basic_set_alloc_inequality(neg);
6925 if (k < 0)
6926 goto error;
6927 isl_seq_clr(neg->ineq[k], 1 + isl_basic_set_total_dim(neg));
6928 isl_int_set_si(neg->ineq[k][0], -1);
6929 isl_int_set_si(neg->ineq[k][pos], -1);
6931 return isl_basic_set_finalize(neg);
6932 error:
6933 isl_basic_set_free(neg);
6934 return NULL;
6937 __isl_give isl_set *isl_set_split_dims(__isl_take isl_set *set,
6938 enum isl_dim_type type, unsigned first, unsigned n)
6940 int i;
6941 isl_basic_set *nonneg;
6942 isl_basic_set *neg;
6944 if (!set)
6945 return NULL;
6946 if (n == 0)
6947 return set;
6949 isl_assert(set->ctx, first + n <= isl_set_dim(set, type), goto error);
6951 for (i = 0; i < n; ++i) {
6952 nonneg = nonneg_halfspace(isl_set_get_space(set),
6953 pos(set->dim, type) + first + i);
6954 neg = neg_halfspace(isl_set_get_space(set),
6955 pos(set->dim, type) + first + i);
6957 set = isl_set_intersect(set, isl_basic_set_union(nonneg, neg));
6960 return set;
6961 error:
6962 isl_set_free(set);
6963 return NULL;
6966 static int foreach_orthant(__isl_take isl_set *set, int *signs, int first,
6967 int len, int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
6968 void *user)
6970 isl_set *half;
6972 if (!set)
6973 return -1;
6974 if (isl_set_plain_is_empty(set)) {
6975 isl_set_free(set);
6976 return 0;
6978 if (first == len)
6979 return fn(set, signs, user);
6981 signs[first] = 1;
6982 half = isl_set_from_basic_set(nonneg_halfspace(isl_set_get_space(set),
6983 1 + first));
6984 half = isl_set_intersect(half, isl_set_copy(set));
6985 if (foreach_orthant(half, signs, first + 1, len, fn, user) < 0)
6986 goto error;
6988 signs[first] = -1;
6989 half = isl_set_from_basic_set(neg_halfspace(isl_set_get_space(set),
6990 1 + first));
6991 half = isl_set_intersect(half, set);
6992 return foreach_orthant(half, signs, first + 1, len, fn, user);
6993 error:
6994 isl_set_free(set);
6995 return -1;
6998 /* Call "fn" on the intersections of "set" with each of the orthants
6999 * (except for obviously empty intersections). The orthant is identified
7000 * by the signs array, with each entry having value 1 or -1 according
7001 * to the sign of the corresponding variable.
7003 int isl_set_foreach_orthant(__isl_keep isl_set *set,
7004 int (*fn)(__isl_take isl_set *orthant, int *signs, void *user),
7005 void *user)
7007 unsigned nparam;
7008 unsigned nvar;
7009 int *signs;
7010 int r;
7012 if (!set)
7013 return -1;
7014 if (isl_set_plain_is_empty(set))
7015 return 0;
7017 nparam = isl_set_dim(set, isl_dim_param);
7018 nvar = isl_set_dim(set, isl_dim_set);
7020 signs = isl_alloc_array(set->ctx, int, nparam + nvar);
7022 r = foreach_orthant(isl_set_copy(set), signs, 0, nparam + nvar,
7023 fn, user);
7025 free(signs);
7027 return r;
7030 int isl_set_is_equal(struct isl_set *set1, struct isl_set *set2)
7032 return isl_map_is_equal((struct isl_map *)set1, (struct isl_map *)set2);
7035 int isl_basic_map_is_subset(
7036 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
7038 int is_subset;
7039 struct isl_map *map1;
7040 struct isl_map *map2;
7042 if (!bmap1 || !bmap2)
7043 return -1;
7045 map1 = isl_map_from_basic_map(isl_basic_map_copy(bmap1));
7046 map2 = isl_map_from_basic_map(isl_basic_map_copy(bmap2));
7048 is_subset = isl_map_is_subset(map1, map2);
7050 isl_map_free(map1);
7051 isl_map_free(map2);
7053 return is_subset;
7056 int isl_basic_set_is_subset(__isl_keep isl_basic_set *bset1,
7057 __isl_keep isl_basic_set *bset2)
7059 return isl_basic_map_is_subset(bset1, bset2);
7062 int isl_basic_map_is_equal(
7063 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
7065 int is_subset;
7067 if (!bmap1 || !bmap2)
7068 return -1;
7069 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
7070 if (is_subset != 1)
7071 return is_subset;
7072 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
7073 return is_subset;
7076 int isl_basic_set_is_equal(
7077 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
7079 return isl_basic_map_is_equal(
7080 (struct isl_basic_map *)bset1, (struct isl_basic_map *)bset2);
7083 int isl_map_is_empty(struct isl_map *map)
7085 int i;
7086 int is_empty;
7088 if (!map)
7089 return -1;
7090 for (i = 0; i < map->n; ++i) {
7091 is_empty = isl_basic_map_is_empty(map->p[i]);
7092 if (is_empty < 0)
7093 return -1;
7094 if (!is_empty)
7095 return 0;
7097 return 1;
7100 int isl_map_plain_is_empty(__isl_keep isl_map *map)
7102 return map ? map->n == 0 : -1;
7105 int isl_map_fast_is_empty(__isl_keep isl_map *map)
7107 return isl_map_plain_is_empty(map);
7110 int isl_set_plain_is_empty(struct isl_set *set)
7112 return set ? set->n == 0 : -1;
7115 int isl_set_fast_is_empty(__isl_keep isl_set *set)
7117 return isl_set_plain_is_empty(set);
7120 int isl_set_is_empty(struct isl_set *set)
7122 return isl_map_is_empty((struct isl_map *)set);
7125 int isl_map_has_equal_space(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7127 if (!map1 || !map2)
7128 return -1;
7130 return isl_space_is_equal(map1->dim, map2->dim);
7133 int isl_set_has_equal_space(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
7135 if (!set1 || !set2)
7136 return -1;
7138 return isl_space_is_equal(set1->dim, set2->dim);
7141 static int map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7143 int is_subset;
7145 if (!map1 || !map2)
7146 return -1;
7147 is_subset = isl_map_is_subset(map1, map2);
7148 if (is_subset != 1)
7149 return is_subset;
7150 is_subset = isl_map_is_subset(map2, map1);
7151 return is_subset;
7154 int isl_map_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
7156 return isl_map_align_params_map_map_and_test(map1, map2, &map_is_equal);
7159 int isl_basic_map_is_strict_subset(
7160 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
7162 int is_subset;
7164 if (!bmap1 || !bmap2)
7165 return -1;
7166 is_subset = isl_basic_map_is_subset(bmap1, bmap2);
7167 if (is_subset != 1)
7168 return is_subset;
7169 is_subset = isl_basic_map_is_subset(bmap2, bmap1);
7170 if (is_subset == -1)
7171 return is_subset;
7172 return !is_subset;
7175 int isl_map_is_strict_subset(struct isl_map *map1, struct isl_map *map2)
7177 int is_subset;
7179 if (!map1 || !map2)
7180 return -1;
7181 is_subset = isl_map_is_subset(map1, map2);
7182 if (is_subset != 1)
7183 return is_subset;
7184 is_subset = isl_map_is_subset(map2, map1);
7185 if (is_subset == -1)
7186 return is_subset;
7187 return !is_subset;
7190 int isl_set_is_strict_subset(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
7192 return isl_map_is_strict_subset((isl_map *)set1, (isl_map *)set2);
7195 int isl_basic_map_is_universe(struct isl_basic_map *bmap)
7197 if (!bmap)
7198 return -1;
7199 return bmap->n_eq == 0 && bmap->n_ineq == 0;
7202 int isl_basic_set_is_universe(struct isl_basic_set *bset)
7204 if (!bset)
7205 return -1;
7206 return bset->n_eq == 0 && bset->n_ineq == 0;
7209 int isl_map_plain_is_universe(__isl_keep isl_map *map)
7211 int i;
7213 if (!map)
7214 return -1;
7216 for (i = 0; i < map->n; ++i) {
7217 int r = isl_basic_map_is_universe(map->p[i]);
7218 if (r < 0 || r)
7219 return r;
7222 return 0;
7225 int isl_set_plain_is_universe(__isl_keep isl_set *set)
7227 return isl_map_plain_is_universe((isl_map *) set);
7230 int isl_set_fast_is_universe(__isl_keep isl_set *set)
7232 return isl_set_plain_is_universe(set);
7235 int isl_basic_map_is_empty(struct isl_basic_map *bmap)
7237 struct isl_basic_set *bset = NULL;
7238 struct isl_vec *sample = NULL;
7239 int empty;
7240 unsigned total;
7242 if (!bmap)
7243 return -1;
7245 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY))
7246 return 1;
7248 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL)) {
7249 struct isl_basic_map *copy = isl_basic_map_copy(bmap);
7250 copy = isl_basic_map_remove_redundancies(copy);
7251 empty = ISL_F_ISSET(copy, ISL_BASIC_MAP_EMPTY);
7252 isl_basic_map_free(copy);
7253 return empty;
7256 total = 1 + isl_basic_map_total_dim(bmap);
7257 if (bmap->sample && bmap->sample->size == total) {
7258 int contains = isl_basic_map_contains(bmap, bmap->sample);
7259 if (contains < 0)
7260 return -1;
7261 if (contains)
7262 return 0;
7264 isl_vec_free(bmap->sample);
7265 bmap->sample = NULL;
7266 bset = isl_basic_map_underlying_set(isl_basic_map_copy(bmap));
7267 if (!bset)
7268 return -1;
7269 sample = isl_basic_set_sample_vec(bset);
7270 if (!sample)
7271 return -1;
7272 empty = sample->size == 0;
7273 isl_vec_free(bmap->sample);
7274 bmap->sample = sample;
7275 if (empty)
7276 ISL_F_SET(bmap, ISL_BASIC_MAP_EMPTY);
7278 return empty;
7281 int isl_basic_map_plain_is_empty(__isl_keep isl_basic_map *bmap)
7283 if (!bmap)
7284 return -1;
7285 return ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY);
7288 int isl_basic_map_fast_is_empty(__isl_keep isl_basic_map *bmap)
7290 return isl_basic_map_plain_is_empty(bmap);
7293 int isl_basic_set_plain_is_empty(__isl_keep isl_basic_set *bset)
7295 if (!bset)
7296 return -1;
7297 return ISL_F_ISSET(bset, ISL_BASIC_SET_EMPTY);
7300 int isl_basic_set_fast_is_empty(__isl_keep isl_basic_set *bset)
7302 return isl_basic_set_plain_is_empty(bset);
7305 int isl_basic_set_is_empty(struct isl_basic_set *bset)
7307 return isl_basic_map_is_empty((struct isl_basic_map *)bset);
7310 struct isl_map *isl_basic_map_union(
7311 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
7313 struct isl_map *map;
7314 if (!bmap1 || !bmap2)
7315 goto error;
7317 isl_assert(bmap1->ctx, isl_space_is_equal(bmap1->dim, bmap2->dim), goto error);
7319 map = isl_map_alloc_space(isl_space_copy(bmap1->dim), 2, 0);
7320 if (!map)
7321 goto error;
7322 map = isl_map_add_basic_map(map, bmap1);
7323 map = isl_map_add_basic_map(map, bmap2);
7324 return map;
7325 error:
7326 isl_basic_map_free(bmap1);
7327 isl_basic_map_free(bmap2);
7328 return NULL;
7331 struct isl_set *isl_basic_set_union(
7332 struct isl_basic_set *bset1, struct isl_basic_set *bset2)
7334 return (struct isl_set *)isl_basic_map_union(
7335 (struct isl_basic_map *)bset1,
7336 (struct isl_basic_map *)bset2);
7339 /* Order divs such that any div only depends on previous divs */
7340 struct isl_basic_map *isl_basic_map_order_divs(struct isl_basic_map *bmap)
7342 int i;
7343 unsigned off;
7345 if (!bmap)
7346 return NULL;
7348 off = isl_space_dim(bmap->dim, isl_dim_all);
7350 for (i = 0; i < bmap->n_div; ++i) {
7351 int pos;
7352 if (isl_int_is_zero(bmap->div[i][0]))
7353 continue;
7354 pos = isl_seq_first_non_zero(bmap->div[i]+1+1+off+i,
7355 bmap->n_div-i);
7356 if (pos == -1)
7357 continue;
7358 isl_basic_map_swap_div(bmap, i, i + pos);
7359 --i;
7361 return bmap;
7364 struct isl_basic_set *isl_basic_set_order_divs(struct isl_basic_set *bset)
7366 return (struct isl_basic_set *)
7367 isl_basic_map_order_divs((struct isl_basic_map *)bset);
7370 __isl_give isl_map *isl_map_order_divs(__isl_take isl_map *map)
7372 int i;
7374 if (!map)
7375 return 0;
7377 for (i = 0; i < map->n; ++i) {
7378 map->p[i] = isl_basic_map_order_divs(map->p[i]);
7379 if (!map->p[i])
7380 goto error;
7383 return map;
7384 error:
7385 isl_map_free(map);
7386 return NULL;
7389 /* Apply the expansion computed by isl_merge_divs.
7390 * The expansion itself is given by "exp" while the resulting
7391 * list of divs is given by "div".
7393 __isl_give isl_basic_set *isl_basic_set_expand_divs(
7394 __isl_take isl_basic_set *bset, __isl_take isl_mat *div, int *exp)
7396 int i, j;
7397 int n_div;
7399 bset = isl_basic_set_cow(bset);
7400 if (!bset || !div)
7401 goto error;
7403 if (div->n_row < bset->n_div)
7404 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
7405 "not an expansion", goto error);
7407 bset = isl_basic_map_extend_space(bset, isl_space_copy(bset->dim),
7408 div->n_row - bset->n_div, 0,
7409 2 * (div->n_row - bset->n_div));
7411 n_div = bset->n_div;
7412 for (i = n_div; i < div->n_row; ++i)
7413 if (isl_basic_set_alloc_div(bset) < 0)
7414 goto error;
7416 j = n_div - 1;
7417 for (i = div->n_row - 1; i >= 0; --i) {
7418 if (j >= 0 && exp[j] == i) {
7419 if (i != j)
7420 isl_basic_map_swap_div(bset, i, j);
7421 j--;
7422 } else {
7423 isl_seq_cpy(bset->div[i], div->row[i], div->n_col);
7424 if (isl_basic_map_add_div_constraints(bset, i) < 0)
7425 goto error;
7429 isl_mat_free(div);
7430 return bset;
7431 error:
7432 isl_basic_set_free(bset);
7433 isl_mat_free(div);
7434 return NULL;
7437 /* Look for a div in dst that corresponds to the div "div" in src.
7438 * The divs before "div" in src and dst are assumed to be the same.
7440 * Returns -1 if no corresponding div was found and the position
7441 * of the corresponding div in dst otherwise.
7443 static int find_div(struct isl_basic_map *dst,
7444 struct isl_basic_map *src, unsigned div)
7446 int i;
7448 unsigned total = isl_space_dim(src->dim, isl_dim_all);
7450 isl_assert(dst->ctx, div <= dst->n_div, return -1);
7451 for (i = div; i < dst->n_div; ++i)
7452 if (isl_seq_eq(dst->div[i], src->div[div], 1+1+total+div) &&
7453 isl_seq_first_non_zero(dst->div[i]+1+1+total+div,
7454 dst->n_div - div) == -1)
7455 return i;
7456 return -1;
7459 struct isl_basic_map *isl_basic_map_align_divs(
7460 struct isl_basic_map *dst, struct isl_basic_map *src)
7462 int i;
7463 unsigned total = isl_space_dim(src->dim, isl_dim_all);
7465 if (!dst || !src)
7466 goto error;
7468 if (src->n_div == 0)
7469 return dst;
7471 for (i = 0; i < src->n_div; ++i)
7472 isl_assert(src->ctx, !isl_int_is_zero(src->div[i][0]), goto error);
7474 src = isl_basic_map_order_divs(src);
7475 dst = isl_basic_map_cow(dst);
7476 dst = isl_basic_map_extend_space(dst, isl_space_copy(dst->dim),
7477 src->n_div, 0, 2 * src->n_div);
7478 if (!dst)
7479 return NULL;
7480 for (i = 0; i < src->n_div; ++i) {
7481 int j = find_div(dst, src, i);
7482 if (j < 0) {
7483 j = isl_basic_map_alloc_div(dst);
7484 if (j < 0)
7485 goto error;
7486 isl_seq_cpy(dst->div[j], src->div[i], 1+1+total+i);
7487 isl_seq_clr(dst->div[j]+1+1+total+i, dst->n_div - i);
7488 if (isl_basic_map_add_div_constraints(dst, j) < 0)
7489 goto error;
7491 if (j != i)
7492 isl_basic_map_swap_div(dst, i, j);
7494 return dst;
7495 error:
7496 isl_basic_map_free(dst);
7497 return NULL;
7500 struct isl_basic_set *isl_basic_set_align_divs(
7501 struct isl_basic_set *dst, struct isl_basic_set *src)
7503 return (struct isl_basic_set *)isl_basic_map_align_divs(
7504 (struct isl_basic_map *)dst, (struct isl_basic_map *)src);
7507 struct isl_map *isl_map_align_divs(struct isl_map *map)
7509 int i;
7511 if (!map)
7512 return NULL;
7513 if (map->n == 0)
7514 return map;
7515 map = isl_map_compute_divs(map);
7516 map = isl_map_cow(map);
7517 if (!map)
7518 return NULL;
7520 for (i = 1; i < map->n; ++i)
7521 map->p[0] = isl_basic_map_align_divs(map->p[0], map->p[i]);
7522 for (i = 1; i < map->n; ++i)
7523 map->p[i] = isl_basic_map_align_divs(map->p[i], map->p[0]);
7525 ISL_F_CLR(map, ISL_MAP_NORMALIZED);
7526 return map;
7529 struct isl_set *isl_set_align_divs(struct isl_set *set)
7531 return (struct isl_set *)isl_map_align_divs((struct isl_map *)set);
7534 static __isl_give isl_set *set_apply( __isl_take isl_set *set,
7535 __isl_take isl_map *map)
7537 if (!set || !map)
7538 goto error;
7539 isl_assert(set->ctx, isl_map_compatible_domain(map, set), goto error);
7540 map = isl_map_intersect_domain(map, set);
7541 set = isl_map_range(map);
7542 return set;
7543 error:
7544 isl_set_free(set);
7545 isl_map_free(map);
7546 return NULL;
7549 __isl_give isl_set *isl_set_apply( __isl_take isl_set *set,
7550 __isl_take isl_map *map)
7552 return isl_map_align_params_map_map_and(set, map, &set_apply);
7555 /* There is no need to cow as removing empty parts doesn't change
7556 * the meaning of the set.
7558 struct isl_map *isl_map_remove_empty_parts(struct isl_map *map)
7560 int i;
7562 if (!map)
7563 return NULL;
7565 for (i = map->n - 1; i >= 0; --i)
7566 remove_if_empty(map, i);
7568 return map;
7571 struct isl_set *isl_set_remove_empty_parts(struct isl_set *set)
7573 return (struct isl_set *)
7574 isl_map_remove_empty_parts((struct isl_map *)set);
7577 struct isl_basic_map *isl_map_copy_basic_map(struct isl_map *map)
7579 struct isl_basic_map *bmap;
7580 if (!map || map->n == 0)
7581 return NULL;
7582 bmap = map->p[map->n-1];
7583 isl_assert(map->ctx, ISL_F_ISSET(bmap, ISL_BASIC_SET_FINAL), return NULL);
7584 return isl_basic_map_copy(bmap);
7587 struct isl_basic_set *isl_set_copy_basic_set(struct isl_set *set)
7589 return (struct isl_basic_set *)
7590 isl_map_copy_basic_map((struct isl_map *)set);
7593 __isl_give isl_map *isl_map_drop_basic_map(__isl_take isl_map *map,
7594 __isl_keep isl_basic_map *bmap)
7596 int i;
7598 if (!map || !bmap)
7599 goto error;
7600 for (i = map->n-1; i >= 0; --i) {
7601 if (map->p[i] != bmap)
7602 continue;
7603 map = isl_map_cow(map);
7604 if (!map)
7605 goto error;
7606 isl_basic_map_free(map->p[i]);
7607 if (i != map->n-1) {
7608 ISL_F_CLR(map, ISL_SET_NORMALIZED);
7609 map->p[i] = map->p[map->n-1];
7611 map->n--;
7612 return map;
7614 return map;
7615 error:
7616 isl_map_free(map);
7617 return NULL;
7620 struct isl_set *isl_set_drop_basic_set(struct isl_set *set,
7621 struct isl_basic_set *bset)
7623 return (struct isl_set *)isl_map_drop_basic_map((struct isl_map *)set,
7624 (struct isl_basic_map *)bset);
7627 /* Given two basic sets bset1 and bset2, compute the maximal difference
7628 * between the values of dimension pos in bset1 and those in bset2
7629 * for any common value of the parameters and dimensions preceding pos.
7631 static enum isl_lp_result basic_set_maximal_difference_at(
7632 __isl_keep isl_basic_set *bset1, __isl_keep isl_basic_set *bset2,
7633 int pos, isl_int *opt)
7635 isl_space *dims;
7636 struct isl_basic_map *bmap1 = NULL;
7637 struct isl_basic_map *bmap2 = NULL;
7638 struct isl_ctx *ctx;
7639 struct isl_vec *obj;
7640 unsigned total;
7641 unsigned nparam;
7642 unsigned dim1, dim2;
7643 enum isl_lp_result res;
7645 if (!bset1 || !bset2)
7646 return isl_lp_error;
7648 nparam = isl_basic_set_n_param(bset1);
7649 dim1 = isl_basic_set_n_dim(bset1);
7650 dim2 = isl_basic_set_n_dim(bset2);
7651 dims = isl_space_alloc(bset1->ctx, nparam, pos, dim1 - pos);
7652 bmap1 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset1), dims);
7653 dims = isl_space_alloc(bset2->ctx, nparam, pos, dim2 - pos);
7654 bmap2 = isl_basic_map_from_basic_set(isl_basic_set_copy(bset2), dims);
7655 if (!bmap1 || !bmap2)
7656 goto error;
7657 bmap1 = isl_basic_map_cow(bmap1);
7658 bmap1 = isl_basic_map_extend(bmap1, nparam,
7659 pos, (dim1 - pos) + (dim2 - pos),
7660 bmap2->n_div, bmap2->n_eq, bmap2->n_ineq);
7661 bmap1 = add_constraints(bmap1, bmap2, 0, dim1 - pos);
7662 if (!bmap1)
7663 goto error;
7664 total = isl_basic_map_total_dim(bmap1);
7665 ctx = bmap1->ctx;
7666 obj = isl_vec_alloc(ctx, 1 + total);
7667 isl_seq_clr(obj->block.data, 1 + total);
7668 isl_int_set_si(obj->block.data[1+nparam+pos], 1);
7669 isl_int_set_si(obj->block.data[1+nparam+pos+(dim1-pos)], -1);
7670 if (!obj)
7671 goto error;
7672 res = isl_basic_map_solve_lp(bmap1, 1, obj->block.data, ctx->one,
7673 opt, NULL, NULL);
7674 isl_basic_map_free(bmap1);
7675 isl_vec_free(obj);
7676 return res;
7677 error:
7678 isl_basic_map_free(bmap1);
7679 isl_basic_map_free(bmap2);
7680 return isl_lp_error;
7683 /* Given two _disjoint_ basic sets bset1 and bset2, check whether
7684 * for any common value of the parameters and dimensions preceding pos
7685 * in both basic sets, the values of dimension pos in bset1 are
7686 * smaller or larger than those in bset2.
7688 * Returns
7689 * 1 if bset1 follows bset2
7690 * -1 if bset1 precedes bset2
7691 * 0 if bset1 and bset2 are incomparable
7692 * -2 if some error occurred.
7694 int isl_basic_set_compare_at(struct isl_basic_set *bset1,
7695 struct isl_basic_set *bset2, int pos)
7697 isl_int opt;
7698 enum isl_lp_result res;
7699 int cmp;
7701 isl_int_init(opt);
7703 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
7705 if (res == isl_lp_empty)
7706 cmp = 0;
7707 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
7708 res == isl_lp_unbounded)
7709 cmp = 1;
7710 else if (res == isl_lp_ok && isl_int_is_neg(opt))
7711 cmp = -1;
7712 else
7713 cmp = -2;
7715 isl_int_clear(opt);
7716 return cmp;
7719 /* Given two basic sets bset1 and bset2, check whether
7720 * for any common value of the parameters and dimensions preceding pos
7721 * there is a value of dimension pos in bset1 that is larger
7722 * than a value of the same dimension in bset2.
7724 * Return
7725 * 1 if there exists such a pair
7726 * 0 if there is no such pair, but there is a pair of equal values
7727 * -1 otherwise
7728 * -2 if some error occurred.
7730 int isl_basic_set_follows_at(__isl_keep isl_basic_set *bset1,
7731 __isl_keep isl_basic_set *bset2, int pos)
7733 isl_int opt;
7734 enum isl_lp_result res;
7735 int cmp;
7737 isl_int_init(opt);
7739 res = basic_set_maximal_difference_at(bset1, bset2, pos, &opt);
7741 if (res == isl_lp_empty)
7742 cmp = -1;
7743 else if ((res == isl_lp_ok && isl_int_is_pos(opt)) ||
7744 res == isl_lp_unbounded)
7745 cmp = 1;
7746 else if (res == isl_lp_ok && isl_int_is_neg(opt))
7747 cmp = -1;
7748 else if (res == isl_lp_ok)
7749 cmp = 0;
7750 else
7751 cmp = -2;
7753 isl_int_clear(opt);
7754 return cmp;
7757 /* Given two sets set1 and set2, check whether
7758 * for any common value of the parameters and dimensions preceding pos
7759 * there is a value of dimension pos in set1 that is larger
7760 * than a value of the same dimension in set2.
7762 * Return
7763 * 1 if there exists such a pair
7764 * 0 if there is no such pair, but there is a pair of equal values
7765 * -1 otherwise
7766 * -2 if some error occurred.
7768 int isl_set_follows_at(__isl_keep isl_set *set1,
7769 __isl_keep isl_set *set2, int pos)
7771 int i, j;
7772 int follows = -1;
7774 if (!set1 || !set2)
7775 return -2;
7777 for (i = 0; i < set1->n; ++i)
7778 for (j = 0; j < set2->n; ++j) {
7779 int f;
7780 f = isl_basic_set_follows_at(set1->p[i], set2->p[j], pos);
7781 if (f == 1 || f == -2)
7782 return f;
7783 if (f > follows)
7784 follows = f;
7787 return follows;
7790 static int isl_basic_map_plain_has_fixed_var(__isl_keep isl_basic_map *bmap,
7791 unsigned pos, isl_int *val)
7793 int i;
7794 int d;
7795 unsigned total;
7797 if (!bmap)
7798 return -1;
7799 total = isl_basic_map_total_dim(bmap);
7800 for (i = 0, d = total-1; i < bmap->n_eq && d+1 > pos; ++i) {
7801 for (; d+1 > pos; --d)
7802 if (!isl_int_is_zero(bmap->eq[i][1+d]))
7803 break;
7804 if (d != pos)
7805 continue;
7806 if (isl_seq_first_non_zero(bmap->eq[i]+1, d) != -1)
7807 return 0;
7808 if (isl_seq_first_non_zero(bmap->eq[i]+1+d+1, total-d-1) != -1)
7809 return 0;
7810 if (!isl_int_is_one(bmap->eq[i][1+d]))
7811 return 0;
7812 if (val)
7813 isl_int_neg(*val, bmap->eq[i][0]);
7814 return 1;
7816 return 0;
7819 static int isl_map_plain_has_fixed_var(__isl_keep isl_map *map,
7820 unsigned pos, isl_int *val)
7822 int i;
7823 isl_int v;
7824 isl_int tmp;
7825 int fixed;
7827 if (!map)
7828 return -1;
7829 if (map->n == 0)
7830 return 0;
7831 if (map->n == 1)
7832 return isl_basic_map_plain_has_fixed_var(map->p[0], pos, val);
7833 isl_int_init(v);
7834 isl_int_init(tmp);
7835 fixed = isl_basic_map_plain_has_fixed_var(map->p[0], pos, &v);
7836 for (i = 1; fixed == 1 && i < map->n; ++i) {
7837 fixed = isl_basic_map_plain_has_fixed_var(map->p[i], pos, &tmp);
7838 if (fixed == 1 && isl_int_ne(tmp, v))
7839 fixed = 0;
7841 if (val)
7842 isl_int_set(*val, v);
7843 isl_int_clear(tmp);
7844 isl_int_clear(v);
7845 return fixed;
7848 static int isl_basic_set_plain_has_fixed_var(__isl_keep isl_basic_set *bset,
7849 unsigned pos, isl_int *val)
7851 return isl_basic_map_plain_has_fixed_var((struct isl_basic_map *)bset,
7852 pos, val);
7855 static int isl_set_plain_has_fixed_var(__isl_keep isl_set *set, unsigned pos,
7856 isl_int *val)
7858 return isl_map_plain_has_fixed_var((struct isl_map *)set, pos, val);
7861 int isl_basic_map_plain_is_fixed(__isl_keep isl_basic_map *bmap,
7862 enum isl_dim_type type, unsigned pos, isl_int *val)
7864 if (pos >= isl_basic_map_dim(bmap, type))
7865 return -1;
7866 return isl_basic_map_plain_has_fixed_var(bmap,
7867 isl_basic_map_offset(bmap, type) - 1 + pos, val);
7870 int isl_map_plain_is_fixed(__isl_keep isl_map *map,
7871 enum isl_dim_type type, unsigned pos, isl_int *val)
7873 if (pos >= isl_map_dim(map, type))
7874 return -1;
7875 return isl_map_plain_has_fixed_var(map,
7876 map_offset(map, type) - 1 + pos, val);
7879 int isl_set_plain_is_fixed(__isl_keep isl_set *set,
7880 enum isl_dim_type type, unsigned pos, isl_int *val)
7882 return isl_map_plain_is_fixed(set, type, pos, val);
7885 int isl_map_fast_is_fixed(__isl_keep isl_map *map,
7886 enum isl_dim_type type, unsigned pos, isl_int *val)
7888 return isl_map_plain_is_fixed(map, type, pos, val);
7891 /* Check if dimension dim has fixed value and if so and if val is not NULL,
7892 * then return this fixed value in *val.
7894 int isl_basic_set_plain_dim_is_fixed(__isl_keep isl_basic_set *bset,
7895 unsigned dim, isl_int *val)
7897 return isl_basic_set_plain_has_fixed_var(bset,
7898 isl_basic_set_n_param(bset) + dim, val);
7901 /* Check if dimension dim has fixed value and if so and if val is not NULL,
7902 * then return this fixed value in *val.
7904 int isl_set_plain_dim_is_fixed(__isl_keep isl_set *set,
7905 unsigned dim, isl_int *val)
7907 return isl_set_plain_has_fixed_var(set, isl_set_n_param(set) + dim, val);
7910 int isl_set_fast_dim_is_fixed(__isl_keep isl_set *set,
7911 unsigned dim, isl_int *val)
7913 return isl_set_plain_dim_is_fixed(set, dim, val);
7916 /* Check if input variable in has fixed value and if so and if val is not NULL,
7917 * then return this fixed value in *val.
7919 int isl_map_plain_input_is_fixed(__isl_keep isl_map *map,
7920 unsigned in, isl_int *val)
7922 return isl_map_plain_has_fixed_var(map, isl_map_n_param(map) + in, val);
7925 /* Check if dimension dim has an (obvious) fixed lower bound and if so
7926 * and if val is not NULL, then return this lower bound in *val.
7928 int isl_basic_set_plain_dim_has_fixed_lower_bound(
7929 __isl_keep isl_basic_set *bset, unsigned dim, isl_int *val)
7931 int i, i_eq = -1, i_ineq = -1;
7932 isl_int *c;
7933 unsigned total;
7934 unsigned nparam;
7936 if (!bset)
7937 return -1;
7938 total = isl_basic_set_total_dim(bset);
7939 nparam = isl_basic_set_n_param(bset);
7940 for (i = 0; i < bset->n_eq; ++i) {
7941 if (isl_int_is_zero(bset->eq[i][1+nparam+dim]))
7942 continue;
7943 if (i_eq != -1)
7944 return 0;
7945 i_eq = i;
7947 for (i = 0; i < bset->n_ineq; ++i) {
7948 if (!isl_int_is_pos(bset->ineq[i][1+nparam+dim]))
7949 continue;
7950 if (i_eq != -1 || i_ineq != -1)
7951 return 0;
7952 i_ineq = i;
7954 if (i_eq == -1 && i_ineq == -1)
7955 return 0;
7956 c = i_eq != -1 ? bset->eq[i_eq] : bset->ineq[i_ineq];
7957 /* The coefficient should always be one due to normalization. */
7958 if (!isl_int_is_one(c[1+nparam+dim]))
7959 return 0;
7960 if (isl_seq_first_non_zero(c+1, nparam+dim) != -1)
7961 return 0;
7962 if (isl_seq_first_non_zero(c+1+nparam+dim+1,
7963 total - nparam - dim - 1) != -1)
7964 return 0;
7965 if (val)
7966 isl_int_neg(*val, c[0]);
7967 return 1;
7970 int isl_set_plain_dim_has_fixed_lower_bound(__isl_keep isl_set *set,
7971 unsigned dim, isl_int *val)
7973 int i;
7974 isl_int v;
7975 isl_int tmp;
7976 int fixed;
7978 if (!set)
7979 return -1;
7980 if (set->n == 0)
7981 return 0;
7982 if (set->n == 1)
7983 return isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
7984 dim, val);
7985 isl_int_init(v);
7986 isl_int_init(tmp);
7987 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[0],
7988 dim, &v);
7989 for (i = 1; fixed == 1 && i < set->n; ++i) {
7990 fixed = isl_basic_set_plain_dim_has_fixed_lower_bound(set->p[i],
7991 dim, &tmp);
7992 if (fixed == 1 && isl_int_ne(tmp, v))
7993 fixed = 0;
7995 if (val)
7996 isl_int_set(*val, v);
7997 isl_int_clear(tmp);
7998 isl_int_clear(v);
7999 return fixed;
8002 struct constraint {
8003 unsigned size;
8004 isl_int *c;
8007 /* uset_gist depends on constraints without existentially quantified
8008 * variables sorting first.
8010 static int qsort_constraint_cmp(const void *p1, const void *p2)
8012 const struct constraint *c1 = (const struct constraint *)p1;
8013 const struct constraint *c2 = (const struct constraint *)p2;
8014 int l1, l2;
8015 unsigned size = isl_min(c1->size, c2->size);
8017 l1 = isl_seq_last_non_zero(c1->c, size);
8018 l2 = isl_seq_last_non_zero(c2->c, size);
8020 if (l1 != l2)
8021 return l1 - l2;
8023 return isl_seq_cmp(c1->c, c2->c, size);
8026 static struct isl_basic_map *isl_basic_map_sort_constraints(
8027 struct isl_basic_map *bmap)
8029 int i;
8030 struct constraint *c;
8031 unsigned total;
8033 if (!bmap)
8034 return NULL;
8035 total = isl_basic_map_total_dim(bmap);
8036 c = isl_alloc_array(bmap->ctx, struct constraint, bmap->n_ineq);
8037 if (!c)
8038 goto error;
8039 for (i = 0; i < bmap->n_ineq; ++i) {
8040 c[i].size = total;
8041 c[i].c = bmap->ineq[i];
8043 qsort(c, bmap->n_ineq, sizeof(struct constraint), qsort_constraint_cmp);
8044 for (i = 0; i < bmap->n_ineq; ++i)
8045 bmap->ineq[i] = c[i].c;
8046 free(c);
8047 return bmap;
8048 error:
8049 isl_basic_map_free(bmap);
8050 return NULL;
8053 __isl_give isl_basic_set *isl_basic_set_sort_constraints(
8054 __isl_take isl_basic_set *bset)
8056 return (struct isl_basic_set *)isl_basic_map_sort_constraints(
8057 (struct isl_basic_map *)bset);
8060 struct isl_basic_map *isl_basic_map_normalize(struct isl_basic_map *bmap)
8062 if (!bmap)
8063 return NULL;
8064 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_NORMALIZED))
8065 return bmap;
8066 bmap = isl_basic_map_remove_redundancies(bmap);
8067 bmap = isl_basic_map_sort_constraints(bmap);
8068 ISL_F_SET(bmap, ISL_BASIC_MAP_NORMALIZED);
8069 return bmap;
8072 struct isl_basic_set *isl_basic_set_normalize(struct isl_basic_set *bset)
8074 return (struct isl_basic_set *)isl_basic_map_normalize(
8075 (struct isl_basic_map *)bset);
8078 int isl_basic_map_plain_cmp(const __isl_keep isl_basic_map *bmap1,
8079 const __isl_keep isl_basic_map *bmap2)
8081 int i, cmp;
8082 unsigned total;
8084 if (bmap1 == bmap2)
8085 return 0;
8086 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) !=
8087 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_RATIONAL))
8088 return ISL_F_ISSET(bmap1, ISL_BASIC_MAP_RATIONAL) ? -1 : 1;
8089 if (isl_basic_map_n_param(bmap1) != isl_basic_map_n_param(bmap2))
8090 return isl_basic_map_n_param(bmap1) - isl_basic_map_n_param(bmap2);
8091 if (isl_basic_map_n_in(bmap1) != isl_basic_map_n_in(bmap2))
8092 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
8093 if (isl_basic_map_n_out(bmap1) != isl_basic_map_n_out(bmap2))
8094 return isl_basic_map_n_out(bmap1) - isl_basic_map_n_out(bmap2);
8095 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY) &&
8096 ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
8097 return 0;
8098 if (ISL_F_ISSET(bmap1, ISL_BASIC_MAP_EMPTY))
8099 return 1;
8100 if (ISL_F_ISSET(bmap2, ISL_BASIC_MAP_EMPTY))
8101 return -1;
8102 if (bmap1->n_eq != bmap2->n_eq)
8103 return bmap1->n_eq - bmap2->n_eq;
8104 if (bmap1->n_ineq != bmap2->n_ineq)
8105 return bmap1->n_ineq - bmap2->n_ineq;
8106 if (bmap1->n_div != bmap2->n_div)
8107 return bmap1->n_div - bmap2->n_div;
8108 total = isl_basic_map_total_dim(bmap1);
8109 for (i = 0; i < bmap1->n_eq; ++i) {
8110 cmp = isl_seq_cmp(bmap1->eq[i], bmap2->eq[i], 1+total);
8111 if (cmp)
8112 return cmp;
8114 for (i = 0; i < bmap1->n_ineq; ++i) {
8115 cmp = isl_seq_cmp(bmap1->ineq[i], bmap2->ineq[i], 1+total);
8116 if (cmp)
8117 return cmp;
8119 for (i = 0; i < bmap1->n_div; ++i) {
8120 cmp = isl_seq_cmp(bmap1->div[i], bmap2->div[i], 1+1+total);
8121 if (cmp)
8122 return cmp;
8124 return 0;
8127 int isl_basic_set_plain_cmp(const __isl_keep isl_basic_set *bset1,
8128 const __isl_keep isl_basic_set *bset2)
8130 return isl_basic_map_plain_cmp(bset1, bset2);
8133 int isl_set_plain_cmp(const __isl_keep isl_set *set1,
8134 const __isl_keep isl_set *set2)
8136 int i, cmp;
8138 if (set1 == set2)
8139 return 0;
8140 if (set1->n != set2->n)
8141 return set1->n - set2->n;
8143 for (i = 0; i < set1->n; ++i) {
8144 cmp = isl_basic_set_plain_cmp(set1->p[i], set2->p[i]);
8145 if (cmp)
8146 return cmp;
8149 return 0;
8152 int isl_basic_map_plain_is_equal(__isl_keep isl_basic_map *bmap1,
8153 __isl_keep isl_basic_map *bmap2)
8155 return isl_basic_map_plain_cmp(bmap1, bmap2) == 0;
8158 int isl_basic_set_plain_is_equal(__isl_keep isl_basic_set *bset1,
8159 __isl_keep isl_basic_set *bset2)
8161 return isl_basic_map_plain_is_equal((isl_basic_map *)bset1,
8162 (isl_basic_map *)bset2);
8165 static int qsort_bmap_cmp(const void *p1, const void *p2)
8167 const struct isl_basic_map *bmap1 = *(const struct isl_basic_map **)p1;
8168 const struct isl_basic_map *bmap2 = *(const struct isl_basic_map **)p2;
8170 return isl_basic_map_plain_cmp(bmap1, bmap2);
8173 /* We normalize in place, but if anything goes wrong we need
8174 * to return NULL, so we need to make sure we don't change the
8175 * meaning of any possible other copies of map.
8177 struct isl_map *isl_map_normalize(struct isl_map *map)
8179 int i, j;
8180 struct isl_basic_map *bmap;
8182 if (!map)
8183 return NULL;
8184 if (ISL_F_ISSET(map, ISL_MAP_NORMALIZED))
8185 return map;
8186 for (i = 0; i < map->n; ++i) {
8187 bmap = isl_basic_map_normalize(isl_basic_map_copy(map->p[i]));
8188 if (!bmap)
8189 goto error;
8190 isl_basic_map_free(map->p[i]);
8191 map->p[i] = bmap;
8193 qsort(map->p, map->n, sizeof(struct isl_basic_map *), qsort_bmap_cmp);
8194 ISL_F_SET(map, ISL_MAP_NORMALIZED);
8195 map = isl_map_remove_empty_parts(map);
8196 if (!map)
8197 return NULL;
8198 for (i = map->n - 1; i >= 1; --i) {
8199 if (!isl_basic_map_plain_is_equal(map->p[i-1], map->p[i]))
8200 continue;
8201 isl_basic_map_free(map->p[i-1]);
8202 for (j = i; j < map->n; ++j)
8203 map->p[j-1] = map->p[j];
8204 map->n--;
8206 return map;
8207 error:
8208 isl_map_free(map);
8209 return NULL;
8213 struct isl_set *isl_set_normalize(struct isl_set *set)
8215 return (struct isl_set *)isl_map_normalize((struct isl_map *)set);
8218 int isl_map_plain_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8220 int i;
8221 int equal;
8223 if (!map1 || !map2)
8224 return -1;
8226 if (map1 == map2)
8227 return 1;
8228 if (!isl_space_is_equal(map1->dim, map2->dim))
8229 return 0;
8231 map1 = isl_map_copy(map1);
8232 map2 = isl_map_copy(map2);
8233 map1 = isl_map_normalize(map1);
8234 map2 = isl_map_normalize(map2);
8235 if (!map1 || !map2)
8236 goto error;
8237 equal = map1->n == map2->n;
8238 for (i = 0; equal && i < map1->n; ++i) {
8239 equal = isl_basic_map_plain_is_equal(map1->p[i], map2->p[i]);
8240 if (equal < 0)
8241 goto error;
8243 isl_map_free(map1);
8244 isl_map_free(map2);
8245 return equal;
8246 error:
8247 isl_map_free(map1);
8248 isl_map_free(map2);
8249 return -1;
8252 int isl_map_fast_is_equal(__isl_keep isl_map *map1, __isl_keep isl_map *map2)
8254 return isl_map_plain_is_equal(map1, map2);
8257 int isl_set_plain_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8259 return isl_map_plain_is_equal((struct isl_map *)set1,
8260 (struct isl_map *)set2);
8263 int isl_set_fast_is_equal(__isl_keep isl_set *set1, __isl_keep isl_set *set2)
8265 return isl_set_plain_is_equal(set1, set2);
8268 /* Return an interval that ranges from min to max (inclusive)
8270 struct isl_basic_set *isl_basic_set_interval(struct isl_ctx *ctx,
8271 isl_int min, isl_int max)
8273 int k;
8274 struct isl_basic_set *bset = NULL;
8276 bset = isl_basic_set_alloc(ctx, 0, 1, 0, 0, 2);
8277 if (!bset)
8278 goto error;
8280 k = isl_basic_set_alloc_inequality(bset);
8281 if (k < 0)
8282 goto error;
8283 isl_int_set_si(bset->ineq[k][1], 1);
8284 isl_int_neg(bset->ineq[k][0], min);
8286 k = isl_basic_set_alloc_inequality(bset);
8287 if (k < 0)
8288 goto error;
8289 isl_int_set_si(bset->ineq[k][1], -1);
8290 isl_int_set(bset->ineq[k][0], max);
8292 return bset;
8293 error:
8294 isl_basic_set_free(bset);
8295 return NULL;
8298 /* Return the Cartesian product of the basic sets in list (in the given order).
8300 __isl_give isl_basic_set *isl_basic_set_list_product(
8301 __isl_take struct isl_basic_set_list *list)
8303 int i;
8304 unsigned dim;
8305 unsigned nparam;
8306 unsigned extra;
8307 unsigned n_eq;
8308 unsigned n_ineq;
8309 struct isl_basic_set *product = NULL;
8311 if (!list)
8312 goto error;
8313 isl_assert(list->ctx, list->n > 0, goto error);
8314 isl_assert(list->ctx, list->p[0], goto error);
8315 nparam = isl_basic_set_n_param(list->p[0]);
8316 dim = isl_basic_set_n_dim(list->p[0]);
8317 extra = list->p[0]->n_div;
8318 n_eq = list->p[0]->n_eq;
8319 n_ineq = list->p[0]->n_ineq;
8320 for (i = 1; i < list->n; ++i) {
8321 isl_assert(list->ctx, list->p[i], goto error);
8322 isl_assert(list->ctx,
8323 nparam == isl_basic_set_n_param(list->p[i]), goto error);
8324 dim += isl_basic_set_n_dim(list->p[i]);
8325 extra += list->p[i]->n_div;
8326 n_eq += list->p[i]->n_eq;
8327 n_ineq += list->p[i]->n_ineq;
8329 product = isl_basic_set_alloc(list->ctx, nparam, dim, extra,
8330 n_eq, n_ineq);
8331 if (!product)
8332 goto error;
8333 dim = 0;
8334 for (i = 0; i < list->n; ++i) {
8335 isl_basic_set_add_constraints(product,
8336 isl_basic_set_copy(list->p[i]), dim);
8337 dim += isl_basic_set_n_dim(list->p[i]);
8339 isl_basic_set_list_free(list);
8340 return product;
8341 error:
8342 isl_basic_set_free(product);
8343 isl_basic_set_list_free(list);
8344 return NULL;
8347 struct isl_basic_map *isl_basic_map_product(
8348 struct isl_basic_map *bmap1, struct isl_basic_map *bmap2)
8350 isl_space *dim_result = NULL;
8351 struct isl_basic_map *bmap;
8352 unsigned in1, in2, out1, out2, nparam, total, pos;
8353 struct isl_dim_map *dim_map1, *dim_map2;
8355 if (!bmap1 || !bmap2)
8356 goto error;
8358 isl_assert(bmap1->ctx, isl_space_match(bmap1->dim, isl_dim_param,
8359 bmap2->dim, isl_dim_param), goto error);
8360 dim_result = isl_space_product(isl_space_copy(bmap1->dim),
8361 isl_space_copy(bmap2->dim));
8363 in1 = isl_basic_map_n_in(bmap1);
8364 in2 = isl_basic_map_n_in(bmap2);
8365 out1 = isl_basic_map_n_out(bmap1);
8366 out2 = isl_basic_map_n_out(bmap2);
8367 nparam = isl_basic_map_n_param(bmap1);
8369 total = nparam + in1 + in2 + out1 + out2 + bmap1->n_div + bmap2->n_div;
8370 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
8371 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
8372 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
8373 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
8374 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
8375 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
8376 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
8377 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
8378 isl_dim_map_div(dim_map1, bmap1, pos += out2);
8379 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
8381 bmap = isl_basic_map_alloc_space(dim_result,
8382 bmap1->n_div + bmap2->n_div,
8383 bmap1->n_eq + bmap2->n_eq,
8384 bmap1->n_ineq + bmap2->n_ineq);
8385 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
8386 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
8387 bmap = isl_basic_map_simplify(bmap);
8388 return isl_basic_map_finalize(bmap);
8389 error:
8390 isl_basic_map_free(bmap1);
8391 isl_basic_map_free(bmap2);
8392 return NULL;
8395 __isl_give isl_basic_map *isl_basic_map_flat_product(
8396 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
8398 isl_basic_map *prod;
8400 prod = isl_basic_map_product(bmap1, bmap2);
8401 prod = isl_basic_map_flatten(prod);
8402 return prod;
8405 __isl_give isl_basic_set *isl_basic_set_flat_product(
8406 __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
8408 return isl_basic_map_flat_range_product(bset1, bset2);
8411 __isl_give isl_basic_map *isl_basic_map_domain_product(
8412 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
8414 isl_space *space_result = NULL;
8415 isl_basic_map *bmap;
8416 unsigned in1, in2, out, nparam, total, pos;
8417 struct isl_dim_map *dim_map1, *dim_map2;
8419 if (!bmap1 || !bmap2)
8420 goto error;
8422 space_result = isl_space_domain_product(isl_space_copy(bmap1->dim),
8423 isl_space_copy(bmap2->dim));
8425 in1 = isl_basic_map_dim(bmap1, isl_dim_in);
8426 in2 = isl_basic_map_dim(bmap2, isl_dim_in);
8427 out = isl_basic_map_dim(bmap1, isl_dim_out);
8428 nparam = isl_basic_map_dim(bmap1, isl_dim_param);
8430 total = nparam + in1 + in2 + out + bmap1->n_div + bmap2->n_div;
8431 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
8432 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
8433 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
8434 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
8435 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
8436 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos += in1);
8437 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in2);
8438 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos);
8439 isl_dim_map_div(dim_map1, bmap1, pos += out);
8440 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
8442 bmap = isl_basic_map_alloc_space(space_result,
8443 bmap1->n_div + bmap2->n_div,
8444 bmap1->n_eq + bmap2->n_eq,
8445 bmap1->n_ineq + bmap2->n_ineq);
8446 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
8447 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
8448 bmap = isl_basic_map_simplify(bmap);
8449 return isl_basic_map_finalize(bmap);
8450 error:
8451 isl_basic_map_free(bmap1);
8452 isl_basic_map_free(bmap2);
8453 return NULL;
8456 __isl_give isl_basic_map *isl_basic_map_range_product(
8457 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
8459 isl_space *dim_result = NULL;
8460 isl_basic_map *bmap;
8461 unsigned in, out1, out2, nparam, total, pos;
8462 struct isl_dim_map *dim_map1, *dim_map2;
8464 if (!bmap1 || !bmap2)
8465 goto error;
8467 if (!isl_space_match(bmap1->dim, isl_dim_param,
8468 bmap2->dim, isl_dim_param))
8469 isl_die(isl_basic_map_get_ctx(bmap1), isl_error_invalid,
8470 "parameters don't match", goto error);
8472 dim_result = isl_space_range_product(isl_space_copy(bmap1->dim),
8473 isl_space_copy(bmap2->dim));
8475 in = isl_basic_map_dim(bmap1, isl_dim_in);
8476 out1 = isl_basic_map_n_out(bmap1);
8477 out2 = isl_basic_map_n_out(bmap2);
8478 nparam = isl_basic_map_n_param(bmap1);
8480 total = nparam + in + out1 + out2 + bmap1->n_div + bmap2->n_div;
8481 dim_map1 = isl_dim_map_alloc(bmap1->ctx, total);
8482 dim_map2 = isl_dim_map_alloc(bmap1->ctx, total);
8483 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_param, pos = 0);
8484 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_param, pos = 0);
8485 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_in, pos += nparam);
8486 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_in, pos);
8487 isl_dim_map_dim(dim_map1, bmap1->dim, isl_dim_out, pos += in);
8488 isl_dim_map_dim(dim_map2, bmap2->dim, isl_dim_out, pos += out1);
8489 isl_dim_map_div(dim_map1, bmap1, pos += out2);
8490 isl_dim_map_div(dim_map2, bmap2, pos += bmap1->n_div);
8492 bmap = isl_basic_map_alloc_space(dim_result,
8493 bmap1->n_div + bmap2->n_div,
8494 bmap1->n_eq + bmap2->n_eq,
8495 bmap1->n_ineq + bmap2->n_ineq);
8496 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap1, dim_map1);
8497 bmap = isl_basic_map_add_constraints_dim_map(bmap, bmap2, dim_map2);
8498 bmap = isl_basic_map_simplify(bmap);
8499 return isl_basic_map_finalize(bmap);
8500 error:
8501 isl_basic_map_free(bmap1);
8502 isl_basic_map_free(bmap2);
8503 return NULL;
8506 __isl_give isl_basic_map *isl_basic_map_flat_range_product(
8507 __isl_take isl_basic_map *bmap1, __isl_take isl_basic_map *bmap2)
8509 isl_basic_map *prod;
8511 prod = isl_basic_map_range_product(bmap1, bmap2);
8512 prod = isl_basic_map_flatten_range(prod);
8513 return prod;
8516 static __isl_give isl_map *map_product(__isl_take isl_map *map1,
8517 __isl_take isl_map *map2,
8518 __isl_give isl_space *(*dim_product)(__isl_take isl_space *left,
8519 __isl_take isl_space *right),
8520 __isl_give isl_basic_map *(*basic_map_product)(
8521 __isl_take isl_basic_map *left, __isl_take isl_basic_map *right))
8523 unsigned flags = 0;
8524 struct isl_map *result;
8525 int i, j;
8527 if (!map1 || !map2)
8528 goto error;
8530 isl_assert(map1->ctx, isl_space_match(map1->dim, isl_dim_param,
8531 map2->dim, isl_dim_param), goto error);
8533 if (ISL_F_ISSET(map1, ISL_MAP_DISJOINT) &&
8534 ISL_F_ISSET(map2, ISL_MAP_DISJOINT))
8535 ISL_FL_SET(flags, ISL_MAP_DISJOINT);
8537 result = isl_map_alloc_space(dim_product(isl_space_copy(map1->dim),
8538 isl_space_copy(map2->dim)),
8539 map1->n * map2->n, flags);
8540 if (!result)
8541 goto error;
8542 for (i = 0; i < map1->n; ++i)
8543 for (j = 0; j < map2->n; ++j) {
8544 struct isl_basic_map *part;
8545 part = basic_map_product(isl_basic_map_copy(map1->p[i]),
8546 isl_basic_map_copy(map2->p[j]));
8547 if (isl_basic_map_is_empty(part))
8548 isl_basic_map_free(part);
8549 else
8550 result = isl_map_add_basic_map(result, part);
8551 if (!result)
8552 goto error;
8554 isl_map_free(map1);
8555 isl_map_free(map2);
8556 return result;
8557 error:
8558 isl_map_free(map1);
8559 isl_map_free(map2);
8560 return NULL;
8563 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> [B -> D]
8565 static __isl_give isl_map *map_product_aligned(__isl_take isl_map *map1,
8566 __isl_take isl_map *map2)
8568 return map_product(map1, map2, &isl_space_product, &isl_basic_map_product);
8571 __isl_give isl_map *isl_map_product(__isl_take isl_map *map1,
8572 __isl_take isl_map *map2)
8574 return isl_map_align_params_map_map_and(map1, map2, &map_product_aligned);
8577 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B, D)
8579 __isl_give isl_map *isl_map_flat_product(__isl_take isl_map *map1,
8580 __isl_take isl_map *map2)
8582 isl_map *prod;
8584 prod = isl_map_product(map1, map2);
8585 prod = isl_map_flatten(prod);
8586 return prod;
8589 /* Given two set A and B, construct its Cartesian product A x B.
8591 struct isl_set *isl_set_product(struct isl_set *set1, struct isl_set *set2)
8593 return isl_map_range_product(set1, set2);
8596 __isl_give isl_set *isl_set_flat_product(__isl_take isl_set *set1,
8597 __isl_take isl_set *set2)
8599 return isl_map_flat_range_product(set1, set2);
8602 /* Given two maps A -> B and C -> D, construct a map [A -> C] -> (B * D)
8604 static __isl_give isl_map *map_domain_product_aligned(__isl_take isl_map *map1,
8605 __isl_take isl_map *map2)
8607 return map_product(map1, map2, &isl_space_domain_product,
8608 &isl_basic_map_domain_product);
8611 /* Given two maps A -> B and C -> D, construct a map (A * C) -> [B -> D]
8613 static __isl_give isl_map *map_range_product_aligned(__isl_take isl_map *map1,
8614 __isl_take isl_map *map2)
8616 return map_product(map1, map2, &isl_space_range_product,
8617 &isl_basic_map_range_product);
8620 __isl_give isl_map *isl_map_domain_product(__isl_take isl_map *map1,
8621 __isl_take isl_map *map2)
8623 return isl_map_align_params_map_map_and(map1, map2,
8624 &map_domain_product_aligned);
8627 __isl_give isl_map *isl_map_range_product(__isl_take isl_map *map1,
8628 __isl_take isl_map *map2)
8630 return isl_map_align_params_map_map_and(map1, map2,
8631 &map_range_product_aligned);
8634 /* Given two maps A -> B and C -> D, construct a map (A, C) -> (B * D)
8636 __isl_give isl_map *isl_map_flat_domain_product(__isl_take isl_map *map1,
8637 __isl_take isl_map *map2)
8639 isl_map *prod;
8641 prod = isl_map_domain_product(map1, map2);
8642 prod = isl_map_flatten_domain(prod);
8643 return prod;
8646 /* Given two maps A -> B and C -> D, construct a map (A * C) -> (B, D)
8648 __isl_give isl_map *isl_map_flat_range_product(__isl_take isl_map *map1,
8649 __isl_take isl_map *map2)
8651 isl_map *prod;
8653 prod = isl_map_range_product(map1, map2);
8654 prod = isl_map_flatten_range(prod);
8655 return prod;
8658 uint32_t isl_basic_map_get_hash(__isl_keep isl_basic_map *bmap)
8660 int i;
8661 uint32_t hash = isl_hash_init();
8662 unsigned total;
8664 if (!bmap)
8665 return 0;
8666 bmap = isl_basic_map_copy(bmap);
8667 bmap = isl_basic_map_normalize(bmap);
8668 if (!bmap)
8669 return 0;
8670 total = isl_basic_map_total_dim(bmap);
8671 isl_hash_byte(hash, bmap->n_eq & 0xFF);
8672 for (i = 0; i < bmap->n_eq; ++i) {
8673 uint32_t c_hash;
8674 c_hash = isl_seq_get_hash(bmap->eq[i], 1 + total);
8675 isl_hash_hash(hash, c_hash);
8677 isl_hash_byte(hash, bmap->n_ineq & 0xFF);
8678 for (i = 0; i < bmap->n_ineq; ++i) {
8679 uint32_t c_hash;
8680 c_hash = isl_seq_get_hash(bmap->ineq[i], 1 + total);
8681 isl_hash_hash(hash, c_hash);
8683 isl_hash_byte(hash, bmap->n_div & 0xFF);
8684 for (i = 0; i < bmap->n_div; ++i) {
8685 uint32_t c_hash;
8686 if (isl_int_is_zero(bmap->div[i][0]))
8687 continue;
8688 isl_hash_byte(hash, i & 0xFF);
8689 c_hash = isl_seq_get_hash(bmap->div[i], 1 + 1 + total);
8690 isl_hash_hash(hash, c_hash);
8692 isl_basic_map_free(bmap);
8693 return hash;
8696 uint32_t isl_basic_set_get_hash(__isl_keep isl_basic_set *bset)
8698 return isl_basic_map_get_hash((isl_basic_map *)bset);
8701 uint32_t isl_map_get_hash(__isl_keep isl_map *map)
8703 int i;
8704 uint32_t hash;
8706 if (!map)
8707 return 0;
8708 map = isl_map_copy(map);
8709 map = isl_map_normalize(map);
8710 if (!map)
8711 return 0;
8713 hash = isl_hash_init();
8714 for (i = 0; i < map->n; ++i) {
8715 uint32_t bmap_hash;
8716 bmap_hash = isl_basic_map_get_hash(map->p[i]);
8717 isl_hash_hash(hash, bmap_hash);
8720 isl_map_free(map);
8722 return hash;
8725 uint32_t isl_set_get_hash(__isl_keep isl_set *set)
8727 return isl_map_get_hash((isl_map *)set);
8730 /* Check if the value for dimension dim is completely determined
8731 * by the values of the other parameters and variables.
8732 * That is, check if dimension dim is involved in an equality.
8734 int isl_basic_set_dim_is_unique(struct isl_basic_set *bset, unsigned dim)
8736 int i;
8737 unsigned nparam;
8739 if (!bset)
8740 return -1;
8741 nparam = isl_basic_set_n_param(bset);
8742 for (i = 0; i < bset->n_eq; ++i)
8743 if (!isl_int_is_zero(bset->eq[i][1 + nparam + dim]))
8744 return 1;
8745 return 0;
8748 /* Check if the value for dimension dim is completely determined
8749 * by the values of the other parameters and variables.
8750 * That is, check if dimension dim is involved in an equality
8751 * for each of the subsets.
8753 int isl_set_dim_is_unique(struct isl_set *set, unsigned dim)
8755 int i;
8757 if (!set)
8758 return -1;
8759 for (i = 0; i < set->n; ++i) {
8760 int unique;
8761 unique = isl_basic_set_dim_is_unique(set->p[i], dim);
8762 if (unique != 1)
8763 return unique;
8765 return 1;
8768 int isl_set_n_basic_set(__isl_keep isl_set *set)
8770 return set ? set->n : 0;
8773 int isl_map_foreach_basic_map(__isl_keep isl_map *map,
8774 int (*fn)(__isl_take isl_basic_map *bmap, void *user), void *user)
8776 int i;
8778 if (!map)
8779 return -1;
8781 for (i = 0; i < map->n; ++i)
8782 if (fn(isl_basic_map_copy(map->p[i]), user) < 0)
8783 return -1;
8785 return 0;
8788 int isl_set_foreach_basic_set(__isl_keep isl_set *set,
8789 int (*fn)(__isl_take isl_basic_set *bset, void *user), void *user)
8791 int i;
8793 if (!set)
8794 return -1;
8796 for (i = 0; i < set->n; ++i)
8797 if (fn(isl_basic_set_copy(set->p[i]), user) < 0)
8798 return -1;
8800 return 0;
8803 __isl_give isl_basic_set *isl_basic_set_lift(__isl_take isl_basic_set *bset)
8805 isl_space *dim;
8807 if (!bset)
8808 return NULL;
8810 bset = isl_basic_set_cow(bset);
8811 if (!bset)
8812 return NULL;
8814 dim = isl_basic_set_get_space(bset);
8815 dim = isl_space_lift(dim, bset->n_div);
8816 if (!dim)
8817 goto error;
8818 isl_space_free(bset->dim);
8819 bset->dim = dim;
8820 bset->extra -= bset->n_div;
8821 bset->n_div = 0;
8823 bset = isl_basic_set_finalize(bset);
8825 return bset;
8826 error:
8827 isl_basic_set_free(bset);
8828 return NULL;
8831 __isl_give isl_set *isl_set_lift(__isl_take isl_set *set)
8833 int i;
8834 isl_space *dim;
8835 unsigned n_div;
8837 set = isl_set_align_divs(set);
8839 if (!set)
8840 return NULL;
8842 set = isl_set_cow(set);
8843 if (!set)
8844 return NULL;
8846 n_div = set->p[0]->n_div;
8847 dim = isl_set_get_space(set);
8848 dim = isl_space_lift(dim, n_div);
8849 if (!dim)
8850 goto error;
8851 isl_space_free(set->dim);
8852 set->dim = dim;
8854 for (i = 0; i < set->n; ++i) {
8855 set->p[i] = isl_basic_set_lift(set->p[i]);
8856 if (!set->p[i])
8857 goto error;
8860 return set;
8861 error:
8862 isl_set_free(set);
8863 return NULL;
8866 __isl_give isl_map *isl_set_lifting(__isl_take isl_set *set)
8868 isl_space *dim;
8869 struct isl_basic_map *bmap;
8870 unsigned n_set;
8871 unsigned n_div;
8872 unsigned n_param;
8873 unsigned total;
8874 int i, k, l;
8876 set = isl_set_align_divs(set);
8878 if (!set)
8879 return NULL;
8881 dim = isl_set_get_space(set);
8882 if (set->n == 0 || set->p[0]->n_div == 0) {
8883 isl_set_free(set);
8884 return isl_map_identity(isl_space_map_from_set(dim));
8887 n_div = set->p[0]->n_div;
8888 dim = isl_space_map_from_set(dim);
8889 n_param = isl_space_dim(dim, isl_dim_param);
8890 n_set = isl_space_dim(dim, isl_dim_in);
8891 dim = isl_space_extend(dim, n_param, n_set, n_set + n_div);
8892 bmap = isl_basic_map_alloc_space(dim, 0, n_set, 2 * n_div);
8893 for (i = 0; i < n_set; ++i)
8894 bmap = var_equal(bmap, i);
8896 total = n_param + n_set + n_set + n_div;
8897 for (i = 0; i < n_div; ++i) {
8898 k = isl_basic_map_alloc_inequality(bmap);
8899 if (k < 0)
8900 goto error;
8901 isl_seq_cpy(bmap->ineq[k], set->p[0]->div[i]+1, 1+n_param);
8902 isl_seq_clr(bmap->ineq[k]+1+n_param, n_set);
8903 isl_seq_cpy(bmap->ineq[k]+1+n_param+n_set,
8904 set->p[0]->div[i]+1+1+n_param, n_set + n_div);
8905 isl_int_neg(bmap->ineq[k][1+n_param+n_set+n_set+i],
8906 set->p[0]->div[i][0]);
8908 l = isl_basic_map_alloc_inequality(bmap);
8909 if (l < 0)
8910 goto error;
8911 isl_seq_neg(bmap->ineq[l], bmap->ineq[k], 1 + total);
8912 isl_int_add(bmap->ineq[l][0], bmap->ineq[l][0],
8913 set->p[0]->div[i][0]);
8914 isl_int_sub_ui(bmap->ineq[l][0], bmap->ineq[l][0], 1);
8917 isl_set_free(set);
8918 bmap = isl_basic_map_simplify(bmap);
8919 bmap = isl_basic_map_finalize(bmap);
8920 return isl_map_from_basic_map(bmap);
8921 error:
8922 isl_set_free(set);
8923 isl_basic_map_free(bmap);
8924 return NULL;
8927 int isl_basic_set_size(__isl_keep isl_basic_set *bset)
8929 unsigned dim;
8930 int size = 0;
8932 if (!bset)
8933 return -1;
8935 dim = isl_basic_set_total_dim(bset);
8936 size += bset->n_eq * (1 + dim);
8937 size += bset->n_ineq * (1 + dim);
8938 size += bset->n_div * (2 + dim);
8940 return size;
8943 int isl_set_size(__isl_keep isl_set *set)
8945 int i;
8946 int size = 0;
8948 if (!set)
8949 return -1;
8951 for (i = 0; i < set->n; ++i)
8952 size += isl_basic_set_size(set->p[i]);
8954 return size;
8957 /* Check if there is any lower bound (if lower == 0) and/or upper
8958 * bound (if upper == 0) on the specified dim.
8960 static int basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
8961 enum isl_dim_type type, unsigned pos, int lower, int upper)
8963 int i;
8965 if (!bmap)
8966 return -1;
8968 isl_assert(bmap->ctx, pos < isl_basic_map_dim(bmap, type), return -1);
8970 pos += isl_basic_map_offset(bmap, type);
8972 for (i = 0; i < bmap->n_div; ++i) {
8973 if (isl_int_is_zero(bmap->div[i][0]))
8974 continue;
8975 if (!isl_int_is_zero(bmap->div[i][1 + pos]))
8976 return 1;
8979 for (i = 0; i < bmap->n_eq; ++i)
8980 if (!isl_int_is_zero(bmap->eq[i][pos]))
8981 return 1;
8983 for (i = 0; i < bmap->n_ineq; ++i) {
8984 int sgn = isl_int_sgn(bmap->ineq[i][pos]);
8985 if (sgn > 0)
8986 lower = 1;
8987 if (sgn < 0)
8988 upper = 1;
8991 return lower && upper;
8994 int isl_basic_map_dim_is_bounded(__isl_keep isl_basic_map *bmap,
8995 enum isl_dim_type type, unsigned pos)
8997 return basic_map_dim_is_bounded(bmap, type, pos, 0, 0);
9000 int isl_basic_map_dim_has_lower_bound(__isl_keep isl_basic_map *bmap,
9001 enum isl_dim_type type, unsigned pos)
9003 return basic_map_dim_is_bounded(bmap, type, pos, 0, 1);
9006 int isl_basic_map_dim_has_upper_bound(__isl_keep isl_basic_map *bmap,
9007 enum isl_dim_type type, unsigned pos)
9009 return basic_map_dim_is_bounded(bmap, type, pos, 1, 0);
9012 int isl_map_dim_is_bounded(__isl_keep isl_map *map,
9013 enum isl_dim_type type, unsigned pos)
9015 int i;
9017 if (!map)
9018 return -1;
9020 for (i = 0; i < map->n; ++i) {
9021 int bounded;
9022 bounded = isl_basic_map_dim_is_bounded(map->p[i], type, pos);
9023 if (bounded < 0 || !bounded)
9024 return bounded;
9027 return 1;
9030 /* Return 1 if the specified dim is involved in both an upper bound
9031 * and a lower bound.
9033 int isl_set_dim_is_bounded(__isl_keep isl_set *set,
9034 enum isl_dim_type type, unsigned pos)
9036 return isl_map_dim_is_bounded((isl_map *)set, type, pos);
9039 static int has_bound(__isl_keep isl_map *map,
9040 enum isl_dim_type type, unsigned pos,
9041 int (*fn)(__isl_keep isl_basic_map *bmap,
9042 enum isl_dim_type type, unsigned pos))
9044 int i;
9046 if (!map)
9047 return -1;
9049 for (i = 0; i < map->n; ++i) {
9050 int bounded;
9051 bounded = fn(map->p[i], type, pos);
9052 if (bounded < 0 || bounded)
9053 return bounded;
9056 return 0;
9059 /* Return 1 if the specified dim is involved in any lower bound.
9061 int isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
9062 enum isl_dim_type type, unsigned pos)
9064 return has_bound(set, type, pos, &isl_basic_map_dim_has_lower_bound);
9067 /* Return 1 if the specified dim is involved in any upper bound.
9069 int isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
9070 enum isl_dim_type type, unsigned pos)
9072 return has_bound(set, type, pos, &isl_basic_map_dim_has_upper_bound);
9075 /* For each of the "n" variables starting at "first", determine
9076 * the sign of the variable and put the results in the first "n"
9077 * elements of the array "signs".
9078 * Sign
9079 * 1 means that the variable is non-negative
9080 * -1 means that the variable is non-positive
9081 * 0 means the variable attains both positive and negative values.
9083 int isl_basic_set_vars_get_sign(__isl_keep isl_basic_set *bset,
9084 unsigned first, unsigned n, int *signs)
9086 isl_vec *bound = NULL;
9087 struct isl_tab *tab = NULL;
9088 struct isl_tab_undo *snap;
9089 int i;
9091 if (!bset || !signs)
9092 return -1;
9094 bound = isl_vec_alloc(bset->ctx, 1 + isl_basic_set_total_dim(bset));
9095 tab = isl_tab_from_basic_set(bset, 0);
9096 if (!bound || !tab)
9097 goto error;
9099 isl_seq_clr(bound->el, bound->size);
9100 isl_int_set_si(bound->el[0], -1);
9102 snap = isl_tab_snap(tab);
9103 for (i = 0; i < n; ++i) {
9104 int empty;
9106 isl_int_set_si(bound->el[1 + first + i], -1);
9107 if (isl_tab_add_ineq(tab, bound->el) < 0)
9108 goto error;
9109 empty = tab->empty;
9110 isl_int_set_si(bound->el[1 + first + i], 0);
9111 if (isl_tab_rollback(tab, snap) < 0)
9112 goto error;
9114 if (empty) {
9115 signs[i] = 1;
9116 continue;
9119 isl_int_set_si(bound->el[1 + first + i], 1);
9120 if (isl_tab_add_ineq(tab, bound->el) < 0)
9121 goto error;
9122 empty = tab->empty;
9123 isl_int_set_si(bound->el[1 + first + i], 0);
9124 if (isl_tab_rollback(tab, snap) < 0)
9125 goto error;
9127 signs[i] = empty ? -1 : 0;
9130 isl_tab_free(tab);
9131 isl_vec_free(bound);
9132 return 0;
9133 error:
9134 isl_tab_free(tab);
9135 isl_vec_free(bound);
9136 return -1;
9139 int isl_basic_set_dims_get_sign(__isl_keep isl_basic_set *bset,
9140 enum isl_dim_type type, unsigned first, unsigned n, int *signs)
9142 if (!bset || !signs)
9143 return -1;
9144 isl_assert(bset->ctx, first + n <= isl_basic_set_dim(bset, type),
9145 return -1);
9147 first += pos(bset->dim, type) - 1;
9148 return isl_basic_set_vars_get_sign(bset, first, n, signs);
9151 /* Check if the given basic map is obviously single-valued.
9152 * In particular, for each output dimension, check that there is
9153 * an equality that defines the output dimension in terms of
9154 * earlier dimensions.
9156 int isl_basic_map_plain_is_single_valued(__isl_keep isl_basic_map *bmap)
9158 int i, j;
9159 unsigned total;
9160 unsigned n_out;
9161 unsigned o_out;
9163 if (!bmap)
9164 return -1;
9166 total = 1 + isl_basic_map_total_dim(bmap);
9167 n_out = isl_basic_map_dim(bmap, isl_dim_out);
9168 o_out = isl_basic_map_offset(bmap, isl_dim_out);
9170 for (i = 0; i < n_out; ++i) {
9171 for (j = 0; j < bmap->n_eq; ++j) {
9172 if (isl_int_is_zero(bmap->eq[j][o_out + i]))
9173 continue;
9174 if (isl_seq_first_non_zero(bmap->eq[j] + o_out + i + 1,
9175 total - (o_out + i + 1)) == -1)
9176 break;
9178 if (j >= bmap->n_eq)
9179 return 0;
9182 return 1;
9185 /* Check if the given basic map is single-valued.
9186 * We simply compute
9188 * M \circ M^-1
9190 * and check if the result is a subset of the identity mapping.
9192 int isl_basic_map_is_single_valued(__isl_keep isl_basic_map *bmap)
9194 isl_space *space;
9195 isl_basic_map *test;
9196 isl_basic_map *id;
9197 int sv;
9199 sv = isl_basic_map_plain_is_single_valued(bmap);
9200 if (sv < 0 || sv)
9201 return sv;
9203 test = isl_basic_map_reverse(isl_basic_map_copy(bmap));
9204 test = isl_basic_map_apply_range(test, isl_basic_map_copy(bmap));
9206 space = isl_basic_map_get_space(bmap);
9207 space = isl_space_map_from_set(isl_space_range(space));
9208 id = isl_basic_map_identity(space);
9210 sv = isl_basic_map_is_subset(test, id);
9212 isl_basic_map_free(test);
9213 isl_basic_map_free(id);
9215 return sv;
9218 /* Check if the given map is obviously single-valued.
9220 int isl_map_plain_is_single_valued(__isl_keep isl_map *map)
9222 if (!map)
9223 return -1;
9224 if (map->n == 0)
9225 return 1;
9226 if (map->n >= 2)
9227 return 0;
9229 return isl_basic_map_plain_is_single_valued(map->p[0]);
9232 /* Check if the given map is single-valued.
9233 * We simply compute
9235 * M \circ M^-1
9237 * and check if the result is a subset of the identity mapping.
9239 int isl_map_is_single_valued(__isl_keep isl_map *map)
9241 isl_space *dim;
9242 isl_map *test;
9243 isl_map *id;
9244 int sv;
9246 sv = isl_map_plain_is_single_valued(map);
9247 if (sv < 0 || sv)
9248 return sv;
9250 test = isl_map_reverse(isl_map_copy(map));
9251 test = isl_map_apply_range(test, isl_map_copy(map));
9253 dim = isl_space_map_from_set(isl_space_range(isl_map_get_space(map)));
9254 id = isl_map_identity(dim);
9256 sv = isl_map_is_subset(test, id);
9258 isl_map_free(test);
9259 isl_map_free(id);
9261 return sv;
9264 int isl_map_is_injective(__isl_keep isl_map *map)
9266 int in;
9268 map = isl_map_copy(map);
9269 map = isl_map_reverse(map);
9270 in = isl_map_is_single_valued(map);
9271 isl_map_free(map);
9273 return in;
9276 /* Check if the given map is obviously injective.
9278 int isl_map_plain_is_injective(__isl_keep isl_map *map)
9280 int in;
9282 map = isl_map_copy(map);
9283 map = isl_map_reverse(map);
9284 in = isl_map_plain_is_single_valued(map);
9285 isl_map_free(map);
9287 return in;
9290 int isl_map_is_bijective(__isl_keep isl_map *map)
9292 int sv;
9294 sv = isl_map_is_single_valued(map);
9295 if (sv < 0 || !sv)
9296 return sv;
9298 return isl_map_is_injective(map);
9301 int isl_set_is_singleton(__isl_keep isl_set *set)
9303 return isl_map_is_single_valued((isl_map *)set);
9306 int isl_map_is_translation(__isl_keep isl_map *map)
9308 int ok;
9309 isl_set *delta;
9311 delta = isl_map_deltas(isl_map_copy(map));
9312 ok = isl_set_is_singleton(delta);
9313 isl_set_free(delta);
9315 return ok;
9318 static int unique(isl_int *p, unsigned pos, unsigned len)
9320 if (isl_seq_first_non_zero(p, pos) != -1)
9321 return 0;
9322 if (isl_seq_first_non_zero(p + pos + 1, len - pos - 1) != -1)
9323 return 0;
9324 return 1;
9327 int isl_basic_set_is_box(__isl_keep isl_basic_set *bset)
9329 int i, j;
9330 unsigned nvar;
9331 unsigned ovar;
9333 if (!bset)
9334 return -1;
9336 if (isl_basic_set_dim(bset, isl_dim_div) != 0)
9337 return 0;
9339 nvar = isl_basic_set_dim(bset, isl_dim_set);
9340 ovar = isl_space_offset(bset->dim, isl_dim_set);
9341 for (j = 0; j < nvar; ++j) {
9342 int lower = 0, upper = 0;
9343 for (i = 0; i < bset->n_eq; ++i) {
9344 if (isl_int_is_zero(bset->eq[i][1 + ovar + j]))
9345 continue;
9346 if (!unique(bset->eq[i] + 1 + ovar, j, nvar))
9347 return 0;
9348 break;
9350 if (i < bset->n_eq)
9351 continue;
9352 for (i = 0; i < bset->n_ineq; ++i) {
9353 if (isl_int_is_zero(bset->ineq[i][1 + ovar + j]))
9354 continue;
9355 if (!unique(bset->ineq[i] + 1 + ovar, j, nvar))
9356 return 0;
9357 if (isl_int_is_pos(bset->ineq[i][1 + ovar + j]))
9358 lower = 1;
9359 else
9360 upper = 1;
9362 if (!lower || !upper)
9363 return 0;
9366 return 1;
9369 int isl_set_is_box(__isl_keep isl_set *set)
9371 if (!set)
9372 return -1;
9373 if (set->n != 1)
9374 return 0;
9376 return isl_basic_set_is_box(set->p[0]);
9379 int isl_basic_set_is_wrapping(__isl_keep isl_basic_set *bset)
9381 if (!bset)
9382 return -1;
9384 return isl_space_is_wrapping(bset->dim);
9387 int isl_set_is_wrapping(__isl_keep isl_set *set)
9389 if (!set)
9390 return -1;
9392 return isl_space_is_wrapping(set->dim);
9395 __isl_give isl_basic_set *isl_basic_map_wrap(__isl_take isl_basic_map *bmap)
9397 bmap = isl_basic_map_cow(bmap);
9398 if (!bmap)
9399 return NULL;
9401 bmap->dim = isl_space_wrap(bmap->dim);
9402 if (!bmap->dim)
9403 goto error;
9405 bmap = isl_basic_map_finalize(bmap);
9407 return (isl_basic_set *)bmap;
9408 error:
9409 isl_basic_map_free(bmap);
9410 return NULL;
9413 __isl_give isl_set *isl_map_wrap(__isl_take isl_map *map)
9415 int i;
9417 map = isl_map_cow(map);
9418 if (!map)
9419 return NULL;
9421 for (i = 0; i < map->n; ++i) {
9422 map->p[i] = (isl_basic_map *)isl_basic_map_wrap(map->p[i]);
9423 if (!map->p[i])
9424 goto error;
9426 map->dim = isl_space_wrap(map->dim);
9427 if (!map->dim)
9428 goto error;
9430 return (isl_set *)map;
9431 error:
9432 isl_map_free(map);
9433 return NULL;
9436 __isl_give isl_basic_map *isl_basic_set_unwrap(__isl_take isl_basic_set *bset)
9438 bset = isl_basic_set_cow(bset);
9439 if (!bset)
9440 return NULL;
9442 bset->dim = isl_space_unwrap(bset->dim);
9443 if (!bset->dim)
9444 goto error;
9446 bset = isl_basic_set_finalize(bset);
9448 return (isl_basic_map *)bset;
9449 error:
9450 isl_basic_set_free(bset);
9451 return NULL;
9454 __isl_give isl_map *isl_set_unwrap(__isl_take isl_set *set)
9456 int i;
9458 if (!set)
9459 return NULL;
9461 if (!isl_set_is_wrapping(set))
9462 isl_die(set->ctx, isl_error_invalid, "not a wrapping set",
9463 goto error);
9465 set = isl_set_cow(set);
9466 if (!set)
9467 return NULL;
9469 for (i = 0; i < set->n; ++i) {
9470 set->p[i] = (isl_basic_set *)isl_basic_set_unwrap(set->p[i]);
9471 if (!set->p[i])
9472 goto error;
9475 set->dim = isl_space_unwrap(set->dim);
9476 if (!set->dim)
9477 goto error;
9479 return (isl_map *)set;
9480 error:
9481 isl_set_free(set);
9482 return NULL;
9485 __isl_give isl_basic_map *isl_basic_map_reset(__isl_take isl_basic_map *bmap,
9486 enum isl_dim_type type)
9488 if (!bmap)
9489 return NULL;
9491 if (!isl_space_is_named_or_nested(bmap->dim, type))
9492 return bmap;
9494 bmap = isl_basic_map_cow(bmap);
9495 if (!bmap)
9496 return NULL;
9498 bmap->dim = isl_space_reset(bmap->dim, type);
9499 if (!bmap->dim)
9500 goto error;
9502 bmap = isl_basic_map_finalize(bmap);
9504 return bmap;
9505 error:
9506 isl_basic_map_free(bmap);
9507 return NULL;
9510 __isl_give isl_map *isl_map_reset(__isl_take isl_map *map,
9511 enum isl_dim_type type)
9513 int i;
9515 if (!map)
9516 return NULL;
9518 if (!isl_space_is_named_or_nested(map->dim, type))
9519 return map;
9521 map = isl_map_cow(map);
9522 if (!map)
9523 return NULL;
9525 for (i = 0; i < map->n; ++i) {
9526 map->p[i] = isl_basic_map_reset(map->p[i], type);
9527 if (!map->p[i])
9528 goto error;
9530 map->dim = isl_space_reset(map->dim, type);
9531 if (!map->dim)
9532 goto error;
9534 return map;
9535 error:
9536 isl_map_free(map);
9537 return NULL;
9540 __isl_give isl_basic_map *isl_basic_map_flatten(__isl_take isl_basic_map *bmap)
9542 if (!bmap)
9543 return NULL;
9545 if (!bmap->dim->nested[0] && !bmap->dim->nested[1])
9546 return bmap;
9548 bmap = isl_basic_map_cow(bmap);
9549 if (!bmap)
9550 return NULL;
9552 bmap->dim = isl_space_flatten(bmap->dim);
9553 if (!bmap->dim)
9554 goto error;
9556 bmap = isl_basic_map_finalize(bmap);
9558 return bmap;
9559 error:
9560 isl_basic_map_free(bmap);
9561 return NULL;
9564 __isl_give isl_basic_set *isl_basic_set_flatten(__isl_take isl_basic_set *bset)
9566 return (isl_basic_set *)isl_basic_map_flatten((isl_basic_map *)bset);
9569 __isl_give isl_basic_map *isl_basic_map_flatten_domain(
9570 __isl_take isl_basic_map *bmap)
9572 if (!bmap)
9573 return NULL;
9575 if (!bmap->dim->nested[0])
9576 return bmap;
9578 bmap = isl_basic_map_cow(bmap);
9579 if (!bmap)
9580 return NULL;
9582 bmap->dim = isl_space_flatten_domain(bmap->dim);
9583 if (!bmap->dim)
9584 goto error;
9586 bmap = isl_basic_map_finalize(bmap);
9588 return bmap;
9589 error:
9590 isl_basic_map_free(bmap);
9591 return NULL;
9594 __isl_give isl_basic_map *isl_basic_map_flatten_range(
9595 __isl_take isl_basic_map *bmap)
9597 if (!bmap)
9598 return NULL;
9600 if (!bmap->dim->nested[1])
9601 return bmap;
9603 bmap = isl_basic_map_cow(bmap);
9604 if (!bmap)
9605 return NULL;
9607 bmap->dim = isl_space_flatten_range(bmap->dim);
9608 if (!bmap->dim)
9609 goto error;
9611 bmap = isl_basic_map_finalize(bmap);
9613 return bmap;
9614 error:
9615 isl_basic_map_free(bmap);
9616 return NULL;
9619 __isl_give isl_map *isl_map_flatten(__isl_take isl_map *map)
9621 int i;
9623 if (!map)
9624 return NULL;
9626 if (!map->dim->nested[0] && !map->dim->nested[1])
9627 return map;
9629 map = isl_map_cow(map);
9630 if (!map)
9631 return NULL;
9633 for (i = 0; i < map->n; ++i) {
9634 map->p[i] = isl_basic_map_flatten(map->p[i]);
9635 if (!map->p[i])
9636 goto error;
9638 map->dim = isl_space_flatten(map->dim);
9639 if (!map->dim)
9640 goto error;
9642 return map;
9643 error:
9644 isl_map_free(map);
9645 return NULL;
9648 __isl_give isl_set *isl_set_flatten(__isl_take isl_set *set)
9650 return (isl_set *)isl_map_flatten((isl_map *)set);
9653 __isl_give isl_map *isl_set_flatten_map(__isl_take isl_set *set)
9655 isl_space *dim, *flat_dim;
9656 isl_map *map;
9658 dim = isl_set_get_space(set);
9659 flat_dim = isl_space_flatten(isl_space_copy(dim));
9660 map = isl_map_identity(isl_space_join(isl_space_reverse(dim), flat_dim));
9661 map = isl_map_intersect_domain(map, set);
9663 return map;
9666 __isl_give isl_map *isl_map_flatten_domain(__isl_take isl_map *map)
9668 int i;
9670 if (!map)
9671 return NULL;
9673 if (!map->dim->nested[0])
9674 return map;
9676 map = isl_map_cow(map);
9677 if (!map)
9678 return NULL;
9680 for (i = 0; i < map->n; ++i) {
9681 map->p[i] = isl_basic_map_flatten_domain(map->p[i]);
9682 if (!map->p[i])
9683 goto error;
9685 map->dim = isl_space_flatten_domain(map->dim);
9686 if (!map->dim)
9687 goto error;
9689 return map;
9690 error:
9691 isl_map_free(map);
9692 return NULL;
9695 __isl_give isl_map *isl_map_flatten_range(__isl_take isl_map *map)
9697 int i;
9699 if (!map)
9700 return NULL;
9702 if (!map->dim->nested[1])
9703 return map;
9705 map = isl_map_cow(map);
9706 if (!map)
9707 return NULL;
9709 for (i = 0; i < map->n; ++i) {
9710 map->p[i] = isl_basic_map_flatten_range(map->p[i]);
9711 if (!map->p[i])
9712 goto error;
9714 map->dim = isl_space_flatten_range(map->dim);
9715 if (!map->dim)
9716 goto error;
9718 return map;
9719 error:
9720 isl_map_free(map);
9721 return NULL;
9724 /* Reorder the dimensions of "bmap" according to the given dim_map
9725 * and set the dimension specification to "dim".
9727 __isl_give isl_basic_map *isl_basic_map_realign(__isl_take isl_basic_map *bmap,
9728 __isl_take isl_space *dim, __isl_take struct isl_dim_map *dim_map)
9730 isl_basic_map *res;
9731 unsigned flags;
9733 bmap = isl_basic_map_cow(bmap);
9734 if (!bmap || !dim || !dim_map)
9735 goto error;
9737 flags = bmap->flags;
9738 ISL_FL_CLR(flags, ISL_BASIC_MAP_FINAL);
9739 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED);
9740 ISL_FL_CLR(flags, ISL_BASIC_MAP_NORMALIZED_DIVS);
9741 res = isl_basic_map_alloc_space(dim,
9742 bmap->n_div, bmap->n_eq, bmap->n_ineq);
9743 res = isl_basic_map_add_constraints_dim_map(res, bmap, dim_map);
9744 if (res)
9745 res->flags = flags;
9746 res = isl_basic_map_finalize(res);
9747 return res;
9748 error:
9749 free(dim_map);
9750 isl_basic_map_free(bmap);
9751 isl_space_free(dim);
9752 return NULL;
9755 /* Reorder the dimensions of "map" according to given reordering.
9757 __isl_give isl_map *isl_map_realign(__isl_take isl_map *map,
9758 __isl_take isl_reordering *r)
9760 int i;
9761 struct isl_dim_map *dim_map;
9763 map = isl_map_cow(map);
9764 dim_map = isl_dim_map_from_reordering(r);
9765 if (!map || !r || !dim_map)
9766 goto error;
9768 for (i = 0; i < map->n; ++i) {
9769 struct isl_dim_map *dim_map_i;
9771 dim_map_i = isl_dim_map_extend(dim_map, map->p[i]);
9773 map->p[i] = isl_basic_map_realign(map->p[i],
9774 isl_space_copy(r->dim), dim_map_i);
9776 if (!map->p[i])
9777 goto error;
9780 map = isl_map_reset_space(map, isl_space_copy(r->dim));
9782 isl_reordering_free(r);
9783 free(dim_map);
9784 return map;
9785 error:
9786 free(dim_map);
9787 isl_map_free(map);
9788 isl_reordering_free(r);
9789 return NULL;
9792 __isl_give isl_set *isl_set_realign(__isl_take isl_set *set,
9793 __isl_take isl_reordering *r)
9795 return (isl_set *)isl_map_realign((isl_map *)set, r);
9798 __isl_give isl_map *isl_map_align_params(__isl_take isl_map *map,
9799 __isl_take isl_space *model)
9801 isl_ctx *ctx;
9803 if (!map || !model)
9804 goto error;
9806 ctx = isl_space_get_ctx(model);
9807 if (!isl_space_has_named_params(model))
9808 isl_die(ctx, isl_error_invalid,
9809 "model has unnamed parameters", goto error);
9810 if (!isl_space_has_named_params(map->dim))
9811 isl_die(ctx, isl_error_invalid,
9812 "relation has unnamed parameters", goto error);
9813 if (!isl_space_match(map->dim, isl_dim_param, model, isl_dim_param)) {
9814 isl_reordering *exp;
9816 model = isl_space_drop_dims(model, isl_dim_in,
9817 0, isl_space_dim(model, isl_dim_in));
9818 model = isl_space_drop_dims(model, isl_dim_out,
9819 0, isl_space_dim(model, isl_dim_out));
9820 exp = isl_parameter_alignment_reordering(map->dim, model);
9821 exp = isl_reordering_extend_space(exp, isl_map_get_space(map));
9822 map = isl_map_realign(map, exp);
9825 isl_space_free(model);
9826 return map;
9827 error:
9828 isl_space_free(model);
9829 isl_map_free(map);
9830 return NULL;
9833 __isl_give isl_set *isl_set_align_params(__isl_take isl_set *set,
9834 __isl_take isl_space *model)
9836 return isl_map_align_params(set, model);
9839 /* Align the parameters of "bmap" to those of "model", introducing
9840 * additional parameters if needed.
9842 __isl_give isl_basic_map *isl_basic_map_align_params(
9843 __isl_take isl_basic_map *bmap, __isl_take isl_space *model)
9845 isl_ctx *ctx;
9847 if (!bmap || !model)
9848 goto error;
9850 ctx = isl_space_get_ctx(model);
9851 if (!isl_space_has_named_params(model))
9852 isl_die(ctx, isl_error_invalid,
9853 "model has unnamed parameters", goto error);
9854 if (!isl_space_has_named_params(bmap->dim))
9855 isl_die(ctx, isl_error_invalid,
9856 "relation has unnamed parameters", goto error);
9857 if (!isl_space_match(bmap->dim, isl_dim_param, model, isl_dim_param)) {
9858 isl_reordering *exp;
9859 struct isl_dim_map *dim_map;
9861 model = isl_space_drop_dims(model, isl_dim_in,
9862 0, isl_space_dim(model, isl_dim_in));
9863 model = isl_space_drop_dims(model, isl_dim_out,
9864 0, isl_space_dim(model, isl_dim_out));
9865 exp = isl_parameter_alignment_reordering(bmap->dim, model);
9866 exp = isl_reordering_extend_space(exp,
9867 isl_basic_map_get_space(bmap));
9868 dim_map = isl_dim_map_from_reordering(exp);
9869 bmap = isl_basic_map_realign(bmap,
9870 exp ? isl_space_copy(exp->dim) : NULL,
9871 isl_dim_map_extend(dim_map, bmap));
9872 isl_reordering_free(exp);
9873 free(dim_map);
9876 isl_space_free(model);
9877 return bmap;
9878 error:
9879 isl_space_free(model);
9880 isl_basic_map_free(bmap);
9881 return NULL;
9884 /* Align the parameters of "bset" to those of "model", introducing
9885 * additional parameters if needed.
9887 __isl_give isl_basic_set *isl_basic_set_align_params(
9888 __isl_take isl_basic_set *bset, __isl_take isl_space *model)
9890 return isl_basic_map_align_params(bset, model);
9893 __isl_give isl_mat *isl_basic_map_equalities_matrix(
9894 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
9895 enum isl_dim_type c2, enum isl_dim_type c3,
9896 enum isl_dim_type c4, enum isl_dim_type c5)
9898 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
9899 struct isl_mat *mat;
9900 int i, j, k;
9901 int pos;
9903 if (!bmap)
9904 return NULL;
9905 mat = isl_mat_alloc(bmap->ctx, bmap->n_eq,
9906 isl_basic_map_total_dim(bmap) + 1);
9907 if (!mat)
9908 return NULL;
9909 for (i = 0; i < bmap->n_eq; ++i)
9910 for (j = 0, pos = 0; j < 5; ++j) {
9911 int off = isl_basic_map_offset(bmap, c[j]);
9912 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
9913 isl_int_set(mat->row[i][pos],
9914 bmap->eq[i][off + k]);
9915 ++pos;
9919 return mat;
9922 __isl_give isl_mat *isl_basic_map_inequalities_matrix(
9923 __isl_keep isl_basic_map *bmap, enum isl_dim_type c1,
9924 enum isl_dim_type c2, enum isl_dim_type c3,
9925 enum isl_dim_type c4, enum isl_dim_type c5)
9927 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
9928 struct isl_mat *mat;
9929 int i, j, k;
9930 int pos;
9932 if (!bmap)
9933 return NULL;
9934 mat = isl_mat_alloc(bmap->ctx, bmap->n_ineq,
9935 isl_basic_map_total_dim(bmap) + 1);
9936 if (!mat)
9937 return NULL;
9938 for (i = 0; i < bmap->n_ineq; ++i)
9939 for (j = 0, pos = 0; j < 5; ++j) {
9940 int off = isl_basic_map_offset(bmap, c[j]);
9941 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
9942 isl_int_set(mat->row[i][pos],
9943 bmap->ineq[i][off + k]);
9944 ++pos;
9948 return mat;
9951 __isl_give isl_basic_map *isl_basic_map_from_constraint_matrices(
9952 __isl_take isl_space *dim,
9953 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
9954 enum isl_dim_type c2, enum isl_dim_type c3,
9955 enum isl_dim_type c4, enum isl_dim_type c5)
9957 enum isl_dim_type c[5] = { c1, c2, c3, c4, c5 };
9958 isl_basic_map *bmap;
9959 unsigned total;
9960 unsigned extra;
9961 int i, j, k, l;
9962 int pos;
9964 if (!dim || !eq || !ineq)
9965 goto error;
9967 if (eq->n_col != ineq->n_col)
9968 isl_die(dim->ctx, isl_error_invalid,
9969 "equalities and inequalities matrices should have "
9970 "same number of columns", goto error);
9972 total = 1 + isl_space_dim(dim, isl_dim_all);
9974 if (eq->n_col < total)
9975 isl_die(dim->ctx, isl_error_invalid,
9976 "number of columns too small", goto error);
9978 extra = eq->n_col - total;
9980 bmap = isl_basic_map_alloc_space(isl_space_copy(dim), extra,
9981 eq->n_row, ineq->n_row);
9982 if (!bmap)
9983 goto error;
9984 for (i = 0; i < extra; ++i) {
9985 k = isl_basic_map_alloc_div(bmap);
9986 if (k < 0)
9987 goto error;
9988 isl_int_set_si(bmap->div[k][0], 0);
9990 for (i = 0; i < eq->n_row; ++i) {
9991 l = isl_basic_map_alloc_equality(bmap);
9992 if (l < 0)
9993 goto error;
9994 for (j = 0, pos = 0; j < 5; ++j) {
9995 int off = isl_basic_map_offset(bmap, c[j]);
9996 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
9997 isl_int_set(bmap->eq[l][off + k],
9998 eq->row[i][pos]);
9999 ++pos;
10003 for (i = 0; i < ineq->n_row; ++i) {
10004 l = isl_basic_map_alloc_inequality(bmap);
10005 if (l < 0)
10006 goto error;
10007 for (j = 0, pos = 0; j < 5; ++j) {
10008 int off = isl_basic_map_offset(bmap, c[j]);
10009 for (k = 0; k < isl_basic_map_dim(bmap, c[j]); ++k) {
10010 isl_int_set(bmap->ineq[l][off + k],
10011 ineq->row[i][pos]);
10012 ++pos;
10017 isl_space_free(dim);
10018 isl_mat_free(eq);
10019 isl_mat_free(ineq);
10021 return bmap;
10022 error:
10023 isl_space_free(dim);
10024 isl_mat_free(eq);
10025 isl_mat_free(ineq);
10026 return NULL;
10029 __isl_give isl_mat *isl_basic_set_equalities_matrix(
10030 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
10031 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
10033 return isl_basic_map_equalities_matrix((isl_basic_map *)bset,
10034 c1, c2, c3, c4, isl_dim_in);
10037 __isl_give isl_mat *isl_basic_set_inequalities_matrix(
10038 __isl_keep isl_basic_set *bset, enum isl_dim_type c1,
10039 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
10041 return isl_basic_map_inequalities_matrix((isl_basic_map *)bset,
10042 c1, c2, c3, c4, isl_dim_in);
10045 __isl_give isl_basic_set *isl_basic_set_from_constraint_matrices(
10046 __isl_take isl_space *dim,
10047 __isl_take isl_mat *eq, __isl_take isl_mat *ineq, enum isl_dim_type c1,
10048 enum isl_dim_type c2, enum isl_dim_type c3, enum isl_dim_type c4)
10050 return (isl_basic_set*)
10051 isl_basic_map_from_constraint_matrices(dim, eq, ineq,
10052 c1, c2, c3, c4, isl_dim_in);
10055 int isl_basic_map_can_zip(__isl_keep isl_basic_map *bmap)
10057 if (!bmap)
10058 return -1;
10060 return isl_space_can_zip(bmap->dim);
10063 int isl_map_can_zip(__isl_keep isl_map *map)
10065 if (!map)
10066 return -1;
10068 return isl_space_can_zip(map->dim);
10071 /* Given a basic map (A -> B) -> (C -> D), return the corresponding basic map
10072 * (A -> C) -> (B -> D).
10074 __isl_give isl_basic_map *isl_basic_map_zip(__isl_take isl_basic_map *bmap)
10076 unsigned pos;
10077 unsigned n1;
10078 unsigned n2;
10080 if (!bmap)
10081 return NULL;
10083 if (!isl_basic_map_can_zip(bmap))
10084 isl_die(bmap->ctx, isl_error_invalid,
10085 "basic map cannot be zipped", goto error);
10086 pos = isl_basic_map_offset(bmap, isl_dim_in) +
10087 isl_space_dim(bmap->dim->nested[0], isl_dim_in);
10088 n1 = isl_space_dim(bmap->dim->nested[0], isl_dim_out);
10089 n2 = isl_space_dim(bmap->dim->nested[1], isl_dim_in);
10090 bmap = isl_basic_map_cow(bmap);
10091 bmap = isl_basic_map_swap_vars(bmap, pos, n1, n2);
10092 if (!bmap)
10093 return NULL;
10094 bmap->dim = isl_space_zip(bmap->dim);
10095 if (!bmap->dim)
10096 goto error;
10097 return bmap;
10098 error:
10099 isl_basic_map_free(bmap);
10100 return NULL;
10103 /* Given a map (A -> B) -> (C -> D), return the corresponding map
10104 * (A -> C) -> (B -> D).
10106 __isl_give isl_map *isl_map_zip(__isl_take isl_map *map)
10108 int i;
10110 if (!map)
10111 return NULL;
10113 if (!isl_map_can_zip(map))
10114 isl_die(map->ctx, isl_error_invalid, "map cannot be zipped",
10115 goto error);
10117 map = isl_map_cow(map);
10118 if (!map)
10119 return NULL;
10121 for (i = 0; i < map->n; ++i) {
10122 map->p[i] = isl_basic_map_zip(map->p[i]);
10123 if (!map->p[i])
10124 goto error;
10127 map->dim = isl_space_zip(map->dim);
10128 if (!map->dim)
10129 goto error;
10131 return map;
10132 error:
10133 isl_map_free(map);
10134 return NULL;
10137 /* Can we apply isl_basic_map_curry to "bmap"?
10138 * That is, does it have a nested relation in its domain?
10140 int isl_basic_map_can_curry(__isl_keep isl_basic_map *bmap)
10142 if (!bmap)
10143 return -1;
10145 return isl_space_can_curry(bmap->dim);
10148 /* Can we apply isl_map_curry to "map"?
10149 * That is, does it have a nested relation in its domain?
10151 int isl_map_can_curry(__isl_keep isl_map *map)
10153 if (!map)
10154 return -1;
10156 return isl_space_can_curry(map->dim);
10159 /* Given a basic map (A -> B) -> C, return the corresponding basic map
10160 * A -> (B -> C).
10162 __isl_give isl_basic_map *isl_basic_map_curry(__isl_take isl_basic_map *bmap)
10165 if (!bmap)
10166 return NULL;
10168 if (!isl_basic_map_can_curry(bmap))
10169 isl_die(bmap->ctx, isl_error_invalid,
10170 "basic map cannot be curried", goto error);
10171 bmap->dim = isl_space_curry(bmap->dim);
10172 if (!bmap->dim)
10173 goto error;
10174 return bmap;
10175 error:
10176 isl_basic_map_free(bmap);
10177 return NULL;
10180 /* Given a map (A -> B) -> C, return the corresponding map
10181 * A -> (B -> C).
10183 __isl_give isl_map *isl_map_curry(__isl_take isl_map *map)
10185 int i;
10187 if (!map)
10188 return NULL;
10190 if (!isl_map_can_curry(map))
10191 isl_die(map->ctx, isl_error_invalid, "map cannot be curried",
10192 goto error);
10194 map = isl_map_cow(map);
10195 if (!map)
10196 return NULL;
10198 for (i = 0; i < map->n; ++i) {
10199 map->p[i] = isl_basic_map_curry(map->p[i]);
10200 if (!map->p[i])
10201 goto error;
10204 map->dim = isl_space_curry(map->dim);
10205 if (!map->dim)
10206 goto error;
10208 return map;
10209 error:
10210 isl_map_free(map);
10211 return NULL;
10214 /* Construct a basic map mapping the domain of the affine expression
10215 * to a one-dimensional range prescribed by the affine expression.
10217 __isl_give isl_basic_map *isl_basic_map_from_aff(__isl_take isl_aff *aff)
10219 int k;
10220 int pos;
10221 isl_local_space *ls;
10222 isl_basic_map *bmap;
10224 if (!aff)
10225 return NULL;
10227 ls = isl_aff_get_local_space(aff);
10228 bmap = isl_basic_map_from_local_space(ls);
10229 bmap = isl_basic_map_extend_constraints(bmap, 1, 0);
10230 k = isl_basic_map_alloc_equality(bmap);
10231 if (k < 0)
10232 goto error;
10234 pos = isl_basic_map_offset(bmap, isl_dim_out);
10235 isl_seq_cpy(bmap->eq[k], aff->v->el + 1, pos);
10236 isl_int_neg(bmap->eq[k][pos], aff->v->el[0]);
10237 isl_seq_cpy(bmap->eq[k] + pos + 1, aff->v->el + 1 + pos,
10238 aff->v->size - (pos + 1));
10240 isl_aff_free(aff);
10241 bmap = isl_basic_map_finalize(bmap);
10242 return bmap;
10243 error:
10244 isl_aff_free(aff);
10245 isl_basic_map_free(bmap);
10246 return NULL;
10249 /* Construct a map mapping the domain of the affine expression
10250 * to a one-dimensional range prescribed by the affine expression.
10252 __isl_give isl_map *isl_map_from_aff(__isl_take isl_aff *aff)
10254 isl_basic_map *bmap;
10256 bmap = isl_basic_map_from_aff(aff);
10257 return isl_map_from_basic_map(bmap);
10260 /* Construct a basic map mapping the domain the multi-affine expression
10261 * to its range, with each dimension in the range equated to the
10262 * corresponding affine expression.
10264 __isl_give isl_basic_map *isl_basic_map_from_multi_aff(
10265 __isl_take isl_multi_aff *maff)
10267 int i;
10268 isl_space *space;
10269 isl_basic_map *bmap;
10271 if (!maff)
10272 return NULL;
10274 if (isl_space_dim(maff->space, isl_dim_out) != maff->n)
10275 isl_die(isl_multi_aff_get_ctx(maff), isl_error_internal,
10276 "invalid space", return isl_multi_aff_free(maff));
10278 space = isl_space_domain(isl_multi_aff_get_space(maff));
10279 bmap = isl_basic_map_universe(isl_space_from_domain(space));
10281 for (i = 0; i < maff->n; ++i) {
10282 isl_aff *aff;
10283 isl_basic_map *bmap_i;
10285 aff = isl_aff_copy(maff->p[i]);
10286 bmap_i = isl_basic_map_from_aff(aff);
10288 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
10291 bmap = isl_basic_map_reset_space(bmap, isl_multi_aff_get_space(maff));
10293 isl_multi_aff_free(maff);
10294 return bmap;
10297 /* Construct a map mapping the domain the multi-affine expression
10298 * to its range, with each dimension in the range equated to the
10299 * corresponding affine expression.
10301 __isl_give isl_map *isl_map_from_multi_aff(__isl_take isl_multi_aff *maff)
10303 isl_basic_map *bmap;
10305 bmap = isl_basic_map_from_multi_aff(maff);
10306 return isl_map_from_basic_map(bmap);
10309 /* Construct a basic map mapping a domain in the given space to
10310 * to an n-dimensional range, with n the number of elements in the list,
10311 * where each coordinate in the range is prescribed by the
10312 * corresponding affine expression.
10313 * The domains of all affine expressions in the list are assumed to match
10314 * domain_dim.
10316 __isl_give isl_basic_map *isl_basic_map_from_aff_list(
10317 __isl_take isl_space *domain_dim, __isl_take isl_aff_list *list)
10319 int i;
10320 isl_space *dim;
10321 isl_basic_map *bmap;
10323 if (!list)
10324 return NULL;
10326 dim = isl_space_from_domain(domain_dim);
10327 bmap = isl_basic_map_universe(dim);
10329 for (i = 0; i < list->n; ++i) {
10330 isl_aff *aff;
10331 isl_basic_map *bmap_i;
10333 aff = isl_aff_copy(list->p[i]);
10334 bmap_i = isl_basic_map_from_aff(aff);
10336 bmap = isl_basic_map_flat_range_product(bmap, bmap_i);
10339 isl_aff_list_free(list);
10340 return bmap;
10343 __isl_give isl_set *isl_set_equate(__isl_take isl_set *set,
10344 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10346 return isl_map_equate(set, type1, pos1, type2, pos2);
10349 /* Construct a basic map where the given dimensions are equal to each other.
10351 static __isl_give isl_basic_map *equator(__isl_take isl_space *space,
10352 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10354 isl_basic_map *bmap = NULL;
10355 int i;
10357 if (!space)
10358 return NULL;
10360 if (pos1 >= isl_space_dim(space, type1))
10361 isl_die(isl_space_get_ctx(space), isl_error_invalid,
10362 "index out of bounds", goto error);
10363 if (pos2 >= isl_space_dim(space, type2))
10364 isl_die(isl_space_get_ctx(space), isl_error_invalid,
10365 "index out of bounds", goto error);
10367 if (type1 == type2 && pos1 == pos2)
10368 return isl_basic_map_universe(space);
10370 bmap = isl_basic_map_alloc_space(isl_space_copy(space), 0, 1, 0);
10371 i = isl_basic_map_alloc_equality(bmap);
10372 if (i < 0)
10373 goto error;
10374 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
10375 pos1 += isl_basic_map_offset(bmap, type1);
10376 pos2 += isl_basic_map_offset(bmap, type2);
10377 isl_int_set_si(bmap->eq[i][pos1], -1);
10378 isl_int_set_si(bmap->eq[i][pos2], 1);
10379 bmap = isl_basic_map_finalize(bmap);
10380 isl_space_free(space);
10381 return bmap;
10382 error:
10383 isl_space_free(space);
10384 isl_basic_map_free(bmap);
10385 return NULL;
10388 /* Add a constraint imposing that the given two dimensions are equal.
10390 __isl_give isl_basic_map *isl_basic_map_equate(__isl_take isl_basic_map *bmap,
10391 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10393 isl_basic_map *eq;
10395 eq = equator(isl_basic_map_get_space(bmap), type1, pos1, type2, pos2);
10397 bmap = isl_basic_map_intersect(bmap, eq);
10399 return bmap;
10402 /* Add a constraint imposing that the given two dimensions are equal.
10404 __isl_give isl_map *isl_map_equate(__isl_take isl_map *map,
10405 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10407 isl_basic_map *bmap;
10409 bmap = equator(isl_map_get_space(map), type1, pos1, type2, pos2);
10411 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
10413 return map;
10416 /* Add a constraint imposing that the given two dimensions have opposite values.
10418 __isl_give isl_map *isl_map_oppose(__isl_take isl_map *map,
10419 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10421 isl_basic_map *bmap = NULL;
10422 int i;
10424 if (!map)
10425 return NULL;
10427 if (pos1 >= isl_map_dim(map, type1))
10428 isl_die(map->ctx, isl_error_invalid,
10429 "index out of bounds", goto error);
10430 if (pos2 >= isl_map_dim(map, type2))
10431 isl_die(map->ctx, isl_error_invalid,
10432 "index out of bounds", goto error);
10434 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 1, 0);
10435 i = isl_basic_map_alloc_equality(bmap);
10436 if (i < 0)
10437 goto error;
10438 isl_seq_clr(bmap->eq[i], 1 + isl_basic_map_total_dim(bmap));
10439 pos1 += isl_basic_map_offset(bmap, type1);
10440 pos2 += isl_basic_map_offset(bmap, type2);
10441 isl_int_set_si(bmap->eq[i][pos1], 1);
10442 isl_int_set_si(bmap->eq[i][pos2], 1);
10443 bmap = isl_basic_map_finalize(bmap);
10445 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
10447 return map;
10448 error:
10449 isl_basic_map_free(bmap);
10450 isl_map_free(map);
10451 return NULL;
10454 /* Add a constraint imposing that the value of the first dimension is
10455 * greater than that of the second.
10457 __isl_give isl_map *isl_map_order_gt(__isl_take isl_map *map,
10458 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10460 isl_basic_map *bmap = NULL;
10461 int i;
10463 if (!map)
10464 return NULL;
10466 if (pos1 >= isl_map_dim(map, type1))
10467 isl_die(map->ctx, isl_error_invalid,
10468 "index out of bounds", goto error);
10469 if (pos2 >= isl_map_dim(map, type2))
10470 isl_die(map->ctx, isl_error_invalid,
10471 "index out of bounds", goto error);
10473 if (type1 == type2 && pos1 == pos2) {
10474 isl_space *space = isl_map_get_space(map);
10475 isl_map_free(map);
10476 return isl_map_empty(space);
10479 bmap = isl_basic_map_alloc_space(isl_map_get_space(map), 0, 0, 1);
10480 i = isl_basic_map_alloc_inequality(bmap);
10481 if (i < 0)
10482 goto error;
10483 isl_seq_clr(bmap->ineq[i], 1 + isl_basic_map_total_dim(bmap));
10484 pos1 += isl_basic_map_offset(bmap, type1);
10485 pos2 += isl_basic_map_offset(bmap, type2);
10486 isl_int_set_si(bmap->ineq[i][pos1], 1);
10487 isl_int_set_si(bmap->ineq[i][pos2], -1);
10488 isl_int_set_si(bmap->ineq[i][0], -1);
10489 bmap = isl_basic_map_finalize(bmap);
10491 map = isl_map_intersect(map, isl_map_from_basic_map(bmap));
10493 return map;
10494 error:
10495 isl_basic_map_free(bmap);
10496 isl_map_free(map);
10497 return NULL;
10500 /* Add a constraint imposing that the value of the first dimension is
10501 * smaller than that of the second.
10503 __isl_give isl_map *isl_map_order_lt(__isl_take isl_map *map,
10504 enum isl_dim_type type1, int pos1, enum isl_dim_type type2, int pos2)
10506 return isl_map_order_gt(map, type2, pos2, type1, pos1);
10509 __isl_give isl_aff *isl_basic_map_get_div(__isl_keep isl_basic_map *bmap,
10510 int pos)
10512 isl_aff *div;
10513 isl_local_space *ls;
10515 if (!bmap)
10516 return NULL;
10518 if (!isl_basic_map_divs_known(bmap))
10519 isl_die(isl_basic_map_get_ctx(bmap), isl_error_invalid,
10520 "some divs are unknown", return NULL);
10522 ls = isl_basic_map_get_local_space(bmap);
10523 div = isl_local_space_get_div(ls, pos);
10524 isl_local_space_free(ls);
10526 return div;
10529 __isl_give isl_aff *isl_basic_set_get_div(__isl_keep isl_basic_set *bset,
10530 int pos)
10532 return isl_basic_map_get_div(bset, pos);
10535 /* Plug in "subs" for dimension "type", "pos" of "bset".
10537 * Let i be the dimension to replace and let "subs" be of the form
10539 * f/d
10541 * Any integer division with a non-zero coefficient for i,
10543 * floor((a i + g)/m)
10545 * is replaced by
10547 * floor((a f + d g)/(m d))
10549 * Constraints of the form
10551 * a i + g
10553 * are replaced by
10555 * a f + d g
10557 __isl_give isl_basic_set *isl_basic_set_substitute(
10558 __isl_take isl_basic_set *bset,
10559 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
10561 int i;
10562 isl_int v;
10563 isl_ctx *ctx;
10565 if (bset && isl_basic_set_plain_is_empty(bset))
10566 return bset;
10568 bset = isl_basic_set_cow(bset);
10569 if (!bset || !subs)
10570 goto error;
10572 ctx = isl_basic_set_get_ctx(bset);
10573 if (!isl_space_is_equal(bset->dim, subs->ls->dim))
10574 isl_die(ctx, isl_error_invalid,
10575 "spaces don't match", goto error);
10576 if (isl_local_space_dim(subs->ls, isl_dim_div) != 0)
10577 isl_die(ctx, isl_error_unsupported,
10578 "cannot handle divs yet", goto error);
10580 pos += isl_basic_set_offset(bset, type);
10582 isl_int_init(v);
10584 for (i = 0; i < bset->n_eq; ++i) {
10585 if (isl_int_is_zero(bset->eq[i][pos]))
10586 continue;
10587 isl_int_set(v, bset->eq[i][pos]);
10588 isl_int_set_si(bset->eq[i][pos], 0);
10589 isl_seq_combine(bset->eq[i], subs->v->el[0], bset->eq[i],
10590 v, subs->v->el + 1, subs->v->size - 1);
10593 for (i = 0; i < bset->n_ineq; ++i) {
10594 if (isl_int_is_zero(bset->ineq[i][pos]))
10595 continue;
10596 isl_int_set(v, bset->ineq[i][pos]);
10597 isl_int_set_si(bset->ineq[i][pos], 0);
10598 isl_seq_combine(bset->ineq[i], subs->v->el[0], bset->ineq[i],
10599 v, subs->v->el + 1, subs->v->size - 1);
10602 for (i = 0; i < bset->n_div; ++i) {
10603 if (isl_int_is_zero(bset->div[i][1 + pos]))
10604 continue;
10605 isl_int_set(v, bset->div[i][1 + pos]);
10606 isl_int_set_si(bset->div[i][1 + pos], 0);
10607 isl_seq_combine(bset->div[i] + 1,
10608 subs->v->el[0], bset->div[i] + 1,
10609 v, subs->v->el + 1, subs->v->size - 1);
10610 isl_int_mul(bset->div[i][0], bset->div[i][0], subs->v->el[0]);
10613 isl_int_clear(v);
10615 bset = isl_basic_set_simplify(bset);
10616 return isl_basic_set_finalize(bset);
10617 error:
10618 isl_basic_set_free(bset);
10619 return NULL;
10622 /* Plug in "subs" for dimension "type", "pos" of "set".
10624 __isl_give isl_set *isl_set_substitute(__isl_take isl_set *set,
10625 enum isl_dim_type type, unsigned pos, __isl_keep isl_aff *subs)
10627 int i;
10629 if (set && isl_set_plain_is_empty(set))
10630 return set;
10632 set = isl_set_cow(set);
10633 if (!set || !subs)
10634 goto error;
10636 for (i = set->n - 1; i >= 0; --i) {
10637 set->p[i] = isl_basic_set_substitute(set->p[i], type, pos, subs);
10638 if (remove_if_empty(set, i) < 0)
10639 goto error;
10642 return set;
10643 error:
10644 isl_set_free(set);
10645 return NULL;