2 * Copyright 2011 INRIA Saclay
3 * Copyright 2011 Sven Verdoolaege
5 * Use of this software is governed by the GNU LGPLv2.1 license
7 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
8 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
12 #include <isl_ctx_private.h>
13 #include <isl_map_private.h>
14 #include <isl_aff_private.h>
15 #include <isl_dim_private.h>
16 #include <isl_local_space_private.h>
17 #include <isl_mat_private.h>
18 #include <isl_list_private.h>
19 #include <isl/constraint.h>
23 __isl_give isl_aff *isl_aff_alloc_vec(__isl_take isl_local_space *ls,
24 __isl_take isl_vec *v)
31 aff = isl_calloc_type(v->ctx, struct isl_aff);
41 isl_local_space_free(ls);
46 __isl_give isl_aff *isl_aff_alloc(__isl_take isl_local_space *ls)
55 ctx = isl_local_space_get_ctx(ls);
56 if (!isl_local_space_divs_known(ls))
57 isl_die(ctx, isl_error_invalid, "local space has unknown divs",
60 total = isl_local_space_dim(ls, isl_dim_all);
61 v = isl_vec_alloc(ctx, 1 + 1 + total);
62 return isl_aff_alloc_vec(ls, v);
64 isl_local_space_free(ls);
68 __isl_give isl_aff *isl_aff_zero(__isl_take isl_local_space *ls)
72 aff = isl_aff_alloc(ls);
76 isl_int_set_si(aff->v->el[0], 1);
77 isl_seq_clr(aff->v->el + 1, aff->v->size - 1);
82 __isl_give isl_aff *isl_aff_copy(__isl_keep isl_aff *aff)
91 __isl_give isl_aff *isl_aff_dup(__isl_keep isl_aff *aff)
96 return isl_aff_alloc_vec(isl_local_space_copy(aff->ls),
97 isl_vec_copy(aff->v));
100 __isl_give isl_aff *isl_aff_cow(__isl_take isl_aff *aff)
108 return isl_aff_dup(aff);
111 void *isl_aff_free(__isl_take isl_aff *aff)
119 isl_local_space_free(aff->ls);
120 isl_vec_free(aff->v);
127 isl_ctx *isl_aff_get_ctx(__isl_keep isl_aff *aff)
129 return aff ? isl_local_space_get_ctx(aff->ls) : NULL;
132 int isl_aff_dim(__isl_keep isl_aff *aff, enum isl_dim_type type)
134 return aff ? isl_local_space_dim(aff->ls, type) : 0;
137 __isl_give isl_dim *isl_aff_get_dim(__isl_keep isl_aff *aff)
139 return aff ? isl_local_space_get_dim(aff->ls) : NULL;
142 __isl_give isl_local_space *isl_aff_get_local_space(__isl_keep isl_aff *aff)
144 return aff ? isl_local_space_copy(aff->ls) : NULL;
147 const char *isl_aff_get_dim_name(__isl_keep isl_aff *aff,
148 enum isl_dim_type type, unsigned pos)
150 return aff ? isl_local_space_get_dim_name(aff->ls, type, pos) : 0;
153 __isl_give isl_aff *isl_aff_reset_dim(__isl_take isl_aff *aff,
154 __isl_take isl_dim *dim)
156 aff = isl_aff_cow(aff);
160 aff->ls = isl_local_space_reset_dim(aff->ls, dim);
162 return isl_aff_free(aff);
171 /* Reorder the coefficients of the affine expression based
172 * on the given reodering.
173 * The reordering r is assumed to have been extended with the local
176 static __isl_give isl_vec *vec_reorder(__isl_take isl_vec *vec,
177 __isl_take isl_reordering *r, int n_div)
185 res = isl_vec_alloc(vec->ctx, 2 + isl_dim_total(r->dim) + n_div);
186 isl_seq_cpy(res->el, vec->el, 2);
187 isl_seq_clr(res->el + 2, res->size - 2);
188 for (i = 0; i < r->len; ++i)
189 isl_int_set(res->el[2 + r->pos[i]], vec->el[2 + i]);
191 isl_reordering_free(r);
196 isl_reordering_free(r);
200 /* Reorder the dimensions of "aff" according to the given reordering.
202 __isl_give isl_aff *isl_aff_realign(__isl_take isl_aff *aff,
203 __isl_take isl_reordering *r)
205 aff = isl_aff_cow(aff);
209 r = isl_reordering_extend(r, aff->ls->div->n_row);
210 aff->v = vec_reorder(aff->v, isl_reordering_copy(r),
211 aff->ls->div->n_row);
212 aff->ls = isl_local_space_realign(aff->ls, r);
214 if (!aff->v || !aff->ls)
215 return isl_aff_free(aff);
220 isl_reordering_free(r);
224 int isl_aff_plain_is_zero(__isl_keep isl_aff *aff)
229 return isl_seq_first_non_zero(aff->v->el + 1, aff->v->size - 1) < 0;
232 int isl_aff_plain_is_equal(__isl_keep isl_aff *aff1, __isl_keep isl_aff *aff2)
239 equal = isl_local_space_is_equal(aff1->ls, aff2->ls);
240 if (equal < 0 || !equal)
243 return isl_vec_is_equal(aff1->v, aff2->v);
246 int isl_aff_get_denominator(__isl_keep isl_aff *aff, isl_int *v)
250 isl_int_set(*v, aff->v->el[0]);
254 int isl_aff_get_constant(__isl_keep isl_aff *aff, isl_int *v)
258 isl_int_set(*v, aff->v->el[1]);
262 int isl_aff_get_coefficient(__isl_keep isl_aff *aff,
263 enum isl_dim_type type, int pos, isl_int *v)
268 if (pos >= isl_local_space_dim(aff->ls, type))
269 isl_die(aff->v->ctx, isl_error_invalid,
270 "position out of bounds", return -1);
272 pos += isl_local_space_offset(aff->ls, type);
273 isl_int_set(*v, aff->v->el[1 + pos]);
278 __isl_give isl_aff *isl_aff_set_denominator(__isl_take isl_aff *aff, isl_int v)
280 aff = isl_aff_cow(aff);
284 aff->v = isl_vec_cow(aff->v);
286 return isl_aff_free(aff);
288 isl_int_set(aff->v->el[0], v);
293 __isl_give isl_aff *isl_aff_set_constant(__isl_take isl_aff *aff, isl_int v)
295 aff = isl_aff_cow(aff);
299 aff->v = isl_vec_cow(aff->v);
301 return isl_aff_free(aff);
303 isl_int_set(aff->v->el[1], v);
308 __isl_give isl_aff *isl_aff_add_constant(__isl_take isl_aff *aff, isl_int v)
310 if (isl_int_is_zero(v))
313 aff = isl_aff_cow(aff);
317 aff->v = isl_vec_cow(aff->v);
319 return isl_aff_free(aff);
321 isl_int_addmul(aff->v->el[1], aff->v->el[0], v);
326 __isl_give isl_aff *isl_aff_add_constant_si(__isl_take isl_aff *aff, int v)
331 isl_int_set_si(t, v);
332 aff = isl_aff_add_constant(aff, t);
338 __isl_give isl_aff *isl_aff_set_constant_si(__isl_take isl_aff *aff, int v)
340 aff = isl_aff_cow(aff);
344 aff->v = isl_vec_cow(aff->v);
346 return isl_aff_free(aff);
348 isl_int_set_si(aff->v->el[1], v);
353 __isl_give isl_aff *isl_aff_set_coefficient(__isl_take isl_aff *aff,
354 enum isl_dim_type type, int pos, isl_int v)
359 if (pos >= isl_local_space_dim(aff->ls, type))
360 isl_die(aff->v->ctx, isl_error_invalid,
361 "position out of bounds", return isl_aff_free(aff));
363 aff = isl_aff_cow(aff);
367 aff->v = isl_vec_cow(aff->v);
369 return isl_aff_free(aff);
371 pos += isl_local_space_offset(aff->ls, type);
372 isl_int_set(aff->v->el[1 + pos], v);
377 __isl_give isl_aff *isl_aff_set_coefficient_si(__isl_take isl_aff *aff,
378 enum isl_dim_type type, int pos, int v)
383 if (pos >= isl_local_space_dim(aff->ls, type))
384 isl_die(aff->v->ctx, isl_error_invalid,
385 "position out of bounds", return isl_aff_free(aff));
387 aff = isl_aff_cow(aff);
391 aff->v = isl_vec_cow(aff->v);
393 return isl_aff_free(aff);
395 pos += isl_local_space_offset(aff->ls, type);
396 isl_int_set_si(aff->v->el[1 + pos], v);
401 __isl_give isl_aff *isl_aff_add_coefficient(__isl_take isl_aff *aff,
402 enum isl_dim_type type, int pos, isl_int v)
407 if (pos >= isl_local_space_dim(aff->ls, type))
408 isl_die(aff->v->ctx, isl_error_invalid,
409 "position out of bounds", return isl_aff_free(aff));
411 aff = isl_aff_cow(aff);
415 aff->v = isl_vec_cow(aff->v);
417 return isl_aff_free(aff);
419 pos += isl_local_space_offset(aff->ls, type);
420 isl_int_addmul(aff->v->el[1 + pos], aff->v->el[0], v);
425 __isl_give isl_aff *isl_aff_add_coefficient_si(__isl_take isl_aff *aff,
426 enum isl_dim_type type, int pos, int v)
431 isl_int_set_si(t, v);
432 aff = isl_aff_add_coefficient(aff, type, pos, t);
438 __isl_give isl_div *isl_aff_get_div(__isl_keep isl_aff *aff, int pos)
443 return isl_local_space_get_div(aff->ls, pos);
446 __isl_give isl_aff *isl_aff_neg(__isl_take isl_aff *aff)
448 aff = isl_aff_cow(aff);
451 aff->v = isl_vec_cow(aff->v);
453 return isl_aff_free(aff);
455 isl_seq_neg(aff->v->el + 1, aff->v->el + 1, aff->v->size - 1);
460 /* Given f, return floor(f).
461 * If f is an integer expression, then just return f.
462 * Otherwise, if f = g/m, write g = q m + r,
463 * create a new div d = [r/m] and return the expression q + d.
464 * The coefficients in r are taken to lie between -m/2 and m/2.
466 __isl_give isl_aff *isl_aff_floor(__isl_take isl_aff *aff)
476 if (isl_int_is_one(aff->v->el[0]))
479 aff = isl_aff_cow(aff);
483 aff->v = isl_vec_cow(aff->v);
484 div = isl_vec_copy(aff->v);
485 div = isl_vec_cow(div);
487 return isl_aff_free(aff);
489 ctx = isl_aff_get_ctx(aff);
490 isl_int_fdiv_q(aff->v->el[0], aff->v->el[0], ctx->two);
491 for (i = 1; i < aff->v->size; ++i) {
492 isl_int_fdiv_r(div->el[i], div->el[i], div->el[0]);
493 isl_int_fdiv_q(aff->v->el[i], aff->v->el[i], div->el[0]);
494 if (isl_int_gt(div->el[i], aff->v->el[0])) {
495 isl_int_sub(div->el[i], div->el[i], div->el[0]);
496 isl_int_add_ui(aff->v->el[i], aff->v->el[i], 1);
500 aff->ls = isl_local_space_add_div(aff->ls, div);
502 return isl_aff_free(aff);
505 aff->v = isl_vec_extend(aff->v, size + 1);
507 return isl_aff_free(aff);
508 isl_int_set_si(aff->v->el[0], 1);
509 isl_int_set_si(aff->v->el[size], 1);
516 * aff mod m = aff - m * floor(aff/m)
518 __isl_give isl_aff *isl_aff_mod(__isl_take isl_aff *aff, isl_int m)
522 res = isl_aff_copy(aff);
523 aff = isl_aff_scale_down(aff, m);
524 aff = isl_aff_floor(aff);
525 aff = isl_aff_scale(aff, m);
526 res = isl_aff_sub(res, aff);
533 * pwaff mod m = pwaff - m * floor(pwaff/m)
535 __isl_give isl_pw_aff *isl_pw_aff_mod(__isl_take isl_pw_aff *pwaff, isl_int m)
539 res = isl_pw_aff_copy(pwaff);
540 pwaff = isl_pw_aff_scale_down(pwaff, m);
541 pwaff = isl_pw_aff_floor(pwaff);
542 pwaff = isl_pw_aff_scale(pwaff, m);
543 res = isl_pw_aff_sub(res, pwaff);
548 /* Given f, return ceil(f).
549 * If f is an integer expression, then just return f.
550 * Otherwise, create a new div d = [-f] and return the expression -d.
552 __isl_give isl_aff *isl_aff_ceil(__isl_take isl_aff *aff)
557 if (isl_int_is_one(aff->v->el[0]))
560 aff = isl_aff_neg(aff);
561 aff = isl_aff_floor(aff);
562 aff = isl_aff_neg(aff);
567 /* Apply the expansion computed by isl_merge_divs.
568 * The expansion itself is given by "exp" while the resulting
569 * list of divs is given by "div".
571 __isl_give isl_aff *isl_aff_expand_divs( __isl_take isl_aff *aff,
572 __isl_take isl_mat *div, int *exp)
579 aff = isl_aff_cow(aff);
583 old_n_div = isl_local_space_dim(aff->ls, isl_dim_div);
584 new_n_div = isl_mat_rows(div);
585 if (new_n_div < old_n_div)
586 isl_die(isl_mat_get_ctx(div), isl_error_invalid,
587 "not an expansion", goto error);
589 aff->v = isl_vec_extend(aff->v, aff->v->size + new_n_div - old_n_div);
593 offset = 1 + isl_local_space_offset(aff->ls, isl_dim_div);
595 for (i = new_n_div - 1; i >= 0; --i) {
596 if (j >= 0 && exp[j] == i) {
598 isl_int_swap(aff->v->el[offset + i],
599 aff->v->el[offset + j]);
602 isl_int_set_si(aff->v->el[offset + i], 0);
605 aff->ls = isl_local_space_replace_divs(aff->ls, isl_mat_copy(div));
616 /* Add two affine expressions that live in the same local space.
618 static __isl_give isl_aff *add_expanded(__isl_take isl_aff *aff1,
619 __isl_take isl_aff *aff2)
623 aff1 = isl_aff_cow(aff1);
627 aff1->v = isl_vec_cow(aff1->v);
633 isl_int_gcd(gcd, aff1->v->el[0], aff2->v->el[0]);
634 isl_int_divexact(f, aff2->v->el[0], gcd);
635 isl_seq_scale(aff1->v->el + 1, aff1->v->el + 1, f, aff1->v->size - 1);
636 isl_int_divexact(f, aff1->v->el[0], gcd);
637 isl_seq_addmul(aff1->v->el + 1, f, aff2->v->el + 1, aff1->v->size - 1);
638 isl_int_divexact(f, aff2->v->el[0], gcd);
639 isl_int_mul(aff1->v->el[0], aff1->v->el[0], f);
651 __isl_give isl_aff *isl_aff_add(__isl_take isl_aff *aff1,
652 __isl_take isl_aff *aff2)
662 ctx = isl_aff_get_ctx(aff1);
663 if (!isl_dim_equal(aff1->ls->dim, aff2->ls->dim))
664 isl_die(ctx, isl_error_invalid,
665 "spaces don't match", goto error);
667 if (aff1->ls->div->n_row == 0 && aff2->ls->div->n_row == 0)
668 return add_expanded(aff1, aff2);
670 exp1 = isl_alloc_array(ctx, int, aff1->ls->div->n_row);
671 exp2 = isl_alloc_array(ctx, int, aff2->ls->div->n_row);
675 div = isl_merge_divs(aff1->ls->div, aff2->ls->div, exp1, exp2);
676 aff1 = isl_aff_expand_divs(aff1, isl_mat_copy(div), exp1);
677 aff2 = isl_aff_expand_divs(aff2, div, exp2);
681 return add_expanded(aff1, aff2);
690 __isl_give isl_aff *isl_aff_sub(__isl_take isl_aff *aff1,
691 __isl_take isl_aff *aff2)
693 return isl_aff_add(aff1, isl_aff_neg(aff2));
696 __isl_give isl_aff *isl_aff_scale(__isl_take isl_aff *aff, isl_int f)
700 if (isl_int_is_one(f))
703 aff = isl_aff_cow(aff);
706 aff->v = isl_vec_cow(aff->v);
708 return isl_aff_free(aff);
711 isl_int_gcd(gcd, aff->v->el[0], f);
712 isl_int_divexact(aff->v->el[0], aff->v->el[0], gcd);
713 isl_int_divexact(gcd, f, gcd);
714 isl_seq_scale(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
720 __isl_give isl_aff *isl_aff_scale_down(__isl_take isl_aff *aff, isl_int f)
724 if (isl_int_is_one(f))
727 aff = isl_aff_cow(aff);
730 aff->v = isl_vec_cow(aff->v);
732 return isl_aff_free(aff);
735 isl_seq_gcd(aff->v->el + 1, aff->v->size - 1, &gcd);
736 isl_int_gcd(gcd, gcd, f);
737 isl_seq_scale_down(aff->v->el + 1, aff->v->el + 1, gcd, aff->v->size - 1);
738 isl_int_divexact(gcd, f, gcd);
739 isl_int_mul(aff->v->el[0], aff->v->el[0], gcd);
745 __isl_give isl_aff *isl_aff_scale_down_ui(__isl_take isl_aff *aff, unsigned f)
753 isl_int_set_ui(v, f);
754 aff = isl_aff_scale_down(aff, v);
760 __isl_give isl_aff *isl_aff_set_dim_name(__isl_take isl_aff *aff,
761 enum isl_dim_type type, unsigned pos, const char *s)
763 aff = isl_aff_cow(aff);
766 aff->ls = isl_local_space_set_dim_name(aff->ls, type, pos, s);
768 return isl_aff_free(aff);
773 /* Exploit the equalities in "eq" to simplify the affine expression
774 * and the expressions of the integer divisions in the local space.
775 * The integer divisions in this local space are assumed to appear
776 * as regular dimensions in "eq".
778 static __isl_give isl_aff *isl_aff_substitute_equalities_lifted(
779 __isl_take isl_aff *aff, __isl_take isl_basic_set *eq)
788 isl_basic_set_free(eq);
792 aff = isl_aff_cow(aff);
796 aff->ls = isl_local_space_substitute_equalities(aff->ls,
797 isl_basic_set_copy(eq));
801 total = 1 + isl_dim_total(eq->dim);
803 for (i = 0; i < eq->n_eq; ++i) {
804 j = isl_seq_last_non_zero(eq->eq[i], total + n_div);
805 if (j < 0 || j == 0 || j >= total)
808 isl_seq_elim(aff->v->el + 1, eq->eq[i], j, total,
812 isl_basic_set_free(eq);
815 isl_basic_set_free(eq);
820 /* Exploit the equalities in "eq" to simplify the affine expression
821 * and the expressions of the integer divisions in the local space.
823 static __isl_give isl_aff *isl_aff_substitute_equalities(
824 __isl_take isl_aff *aff, __isl_take isl_basic_set *eq)
830 n_div = isl_local_space_dim(aff->ls, isl_dim_div);
832 eq = isl_basic_set_add(eq, isl_dim_set, n_div);
833 return isl_aff_substitute_equalities_lifted(aff, eq);
835 isl_basic_set_free(eq);
840 /* Look for equalities among the variables shared by context and aff
841 * and the integer divisions of aff, if any.
842 * The equalities are then used to eliminate coefficients and/or integer
843 * divisions from aff.
845 __isl_give isl_aff *isl_aff_gist(__isl_take isl_aff *aff,
846 __isl_take isl_set *context)
853 n_div = isl_local_space_dim(aff->ls, isl_dim_div);
856 context = isl_set_add_dims(context, isl_dim_set, n_div);
857 bset = isl_basic_set_from_local_space(
858 isl_aff_get_local_space(aff));
859 bset = isl_basic_set_lift(bset);
860 bset = isl_basic_set_flatten(bset);
861 context = isl_set_intersect(context,
862 isl_set_from_basic_set(bset));
865 hull = isl_set_affine_hull(context);
866 return isl_aff_substitute_equalities_lifted(aff, hull);
869 isl_set_free(context);
873 /* Return a basic set containing those elements in the space
874 * of aff where it is non-negative.
876 __isl_give isl_basic_set *isl_aff_nonneg_basic_set(__isl_take isl_aff *aff)
878 isl_constraint *ineq;
880 ineq = isl_inequality_from_aff(aff);
882 return isl_basic_set_from_constraint(ineq);
885 /* Return a basic set containing those elements in the space
886 * of aff where it is zero.
888 __isl_give isl_basic_set *isl_aff_zero_basic_set(__isl_take isl_aff *aff)
890 isl_constraint *ineq;
892 ineq = isl_equality_from_aff(aff);
894 return isl_basic_set_from_constraint(ineq);
897 /* Return a basic set containing those elements in the shared space
898 * of aff1 and aff2 where aff1 is greater than or equal to aff2.
900 __isl_give isl_basic_set *isl_aff_ge_basic_set(__isl_take isl_aff *aff1,
901 __isl_take isl_aff *aff2)
903 aff1 = isl_aff_sub(aff1, aff2);
905 return isl_aff_nonneg_basic_set(aff1);
908 /* Return a basic set containing those elements in the shared space
909 * of aff1 and aff2 where aff1 is smaller than or equal to aff2.
911 __isl_give isl_basic_set *isl_aff_le_basic_set(__isl_take isl_aff *aff1,
912 __isl_take isl_aff *aff2)
914 return isl_aff_ge_basic_set(aff2, aff1);
917 __isl_give isl_aff *isl_aff_add_on_domain(__isl_keep isl_set *dom,
918 __isl_take isl_aff *aff1, __isl_take isl_aff *aff2)
920 aff1 = isl_aff_add(aff1, aff2);
921 aff1 = isl_aff_gist(aff1, isl_set_copy(dom));
925 int isl_aff_is_empty(__isl_keep isl_aff *aff)
933 /* Set active[i] to 1 if the dimension at position i is involved
934 * in the affine expression.
936 static int set_active(__isl_keep isl_aff *aff, int *active)
945 total = aff->v->size - 2;
946 for (i = 0; i < total; ++i)
947 active[i] = !isl_int_is_zero(aff->v->el[2 + i]);
949 offset = isl_local_space_offset(aff->ls, isl_dim_div) - 1;
950 for (i = aff->ls->div->n_row - 1; i >= 0; --i) {
951 if (!active[offset + i])
953 for (j = 0; j < total; ++j)
955 !isl_int_is_zero(aff->ls->div->row[i][2 + j]);
961 /* Check whether the given affine expression has non-zero coefficient
962 * for any dimension in the given range or if any of these dimensions
963 * appear with non-zero coefficients in any of the integer divisions
964 * involved in the affine expression.
966 int isl_aff_involves_dims(__isl_keep isl_aff *aff,
967 enum isl_dim_type type, unsigned first, unsigned n)
979 ctx = isl_aff_get_ctx(aff);
980 if (first + n > isl_aff_dim(aff, type))
981 isl_die(ctx, isl_error_invalid,
982 "range out of bounds", return -1);
984 active = isl_calloc_array(ctx, int,
985 isl_local_space_dim(aff->ls, isl_dim_all));
986 if (set_active(aff, active) < 0)
989 first += isl_local_space_offset(aff->ls, type) - 1;
990 for (i = 0; i < n; ++i)
991 if (active[first + i]) {
1004 __isl_give isl_aff *isl_aff_drop_dims(__isl_take isl_aff *aff,
1005 enum isl_dim_type type, unsigned first, unsigned n)
1011 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
1014 ctx = isl_aff_get_ctx(aff);
1015 if (first + n > isl_aff_dim(aff, type))
1016 isl_die(ctx, isl_error_invalid, "range out of bounds",
1017 return isl_aff_free(aff));
1019 aff = isl_aff_cow(aff);
1023 aff->ls = isl_local_space_drop_dims(aff->ls, type, first, n);
1025 return isl_aff_free(aff);
1027 first += 1 + isl_local_space_offset(aff->ls, type);
1028 aff->v = isl_vec_drop_els(aff->v, first, n);
1030 return isl_aff_free(aff);
1035 __isl_give isl_aff *isl_aff_insert_dims(__isl_take isl_aff *aff,
1036 enum isl_dim_type type, unsigned first, unsigned n)
1042 if (n == 0 && !isl_local_space_is_named_or_nested(aff->ls, type))
1045 ctx = isl_aff_get_ctx(aff);
1046 if (first > isl_aff_dim(aff, type))
1047 isl_die(ctx, isl_error_invalid, "position out of bounds",
1048 return isl_aff_free(aff));
1050 aff = isl_aff_cow(aff);
1054 aff->ls = isl_local_space_insert_dims(aff->ls, type, first, n);
1056 return isl_aff_free(aff);
1058 first += 1 + isl_local_space_offset(aff->ls, type);
1059 aff->v = isl_vec_insert_zero_els(aff->v, first, n);
1061 return isl_aff_free(aff);
1066 __isl_give isl_aff *isl_aff_add_dims(__isl_take isl_aff *aff,
1067 enum isl_dim_type type, unsigned n)
1071 pos = isl_aff_dim(aff, type);
1073 return isl_aff_insert_dims(aff, type, pos, n);
1076 __isl_give isl_pw_aff *isl_pw_aff_add_dims(__isl_take isl_pw_aff *pwaff,
1077 enum isl_dim_type type, unsigned n)
1081 pos = isl_pw_aff_dim(pwaff, type);
1083 return isl_pw_aff_insert_dims(pwaff, type, pos, n);
1086 __isl_give isl_pw_aff *isl_pw_aff_set_tuple_id(__isl_take isl_pw_aff *pwaff,
1087 __isl_take isl_id *id)
1091 dim = isl_pw_aff_get_dim(pwaff);
1092 dim = isl_dim_set_tuple_id(dim, isl_dim_set, id);
1094 return isl_pw_aff_reset_dim(pwaff, dim);
1097 __isl_give isl_pw_aff *isl_pw_aff_from_aff(__isl_take isl_aff *aff)
1099 isl_set *dom = isl_set_universe(isl_aff_get_dim(aff));
1100 return isl_pw_aff_alloc(dom, aff);
1104 #define PW isl_pw_aff
1108 #define EL_IS_ZERO is_empty
1112 #define IS_ZERO is_empty
1118 #define NO_MOVE_DIMS
1122 #include <isl_pw_templ.c>
1124 static __isl_give isl_set *align_params_pw_pw_set_and(
1125 __isl_take isl_pw_aff *pwaff1, __isl_take isl_pw_aff *pwaff2,
1126 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
1127 __isl_take isl_pw_aff *pwaff2))
1129 if (!pwaff1 || !pwaff2)
1131 if (isl_dim_match(pwaff1->dim, isl_dim_param,
1132 pwaff2->dim, isl_dim_param))
1133 return fn(pwaff1, pwaff2);
1134 if (!isl_dim_has_named_params(pwaff1->dim) ||
1135 !isl_dim_has_named_params(pwaff2->dim))
1136 isl_die(isl_pw_aff_get_ctx(pwaff1), isl_error_invalid,
1137 "unaligned unnamed parameters", goto error);
1138 pwaff1 = isl_pw_aff_align_params(pwaff1, isl_pw_aff_get_dim(pwaff2));
1139 pwaff2 = isl_pw_aff_align_params(pwaff2, isl_pw_aff_get_dim(pwaff1));
1140 return fn(pwaff1, pwaff2);
1142 isl_pw_aff_free(pwaff1);
1143 isl_pw_aff_free(pwaff2);
1147 /* Compute a piecewise quasi-affine expression with a domain that
1148 * is the union of those of pwaff1 and pwaff2 and such that on each
1149 * cell, the quasi-affine expression is the better (according to cmp)
1150 * of those of pwaff1 and pwaff2. If only one of pwaff1 or pwaff2
1151 * is defined on a given cell, then the associated expression
1152 * is the defined one.
1154 static __isl_give isl_pw_aff *pw_aff_union_opt(__isl_take isl_pw_aff *pwaff1,
1155 __isl_take isl_pw_aff *pwaff2,
1156 __isl_give isl_basic_set *(*cmp)(__isl_take isl_aff *aff1,
1157 __isl_take isl_aff *aff2))
1164 if (!pwaff1 || !pwaff2)
1167 ctx = isl_dim_get_ctx(pwaff1->dim);
1168 if (!isl_dim_equal(pwaff1->dim, pwaff2->dim))
1169 isl_die(ctx, isl_error_invalid,
1170 "arguments should live in same space", goto error);
1172 if (isl_pw_aff_is_empty(pwaff1)) {
1173 isl_pw_aff_free(pwaff1);
1177 if (isl_pw_aff_is_empty(pwaff2)) {
1178 isl_pw_aff_free(pwaff2);
1182 n = 2 * (pwaff1->n + 1) * (pwaff2->n + 1);
1183 res = isl_pw_aff_alloc_(isl_dim_copy(pwaff1->dim), n);
1185 for (i = 0; i < pwaff1->n; ++i) {
1186 set = isl_set_copy(pwaff1->p[i].set);
1187 for (j = 0; j < pwaff2->n; ++j) {
1188 struct isl_set *common;
1191 common = isl_set_intersect(
1192 isl_set_copy(pwaff1->p[i].set),
1193 isl_set_copy(pwaff2->p[j].set));
1194 better = isl_set_from_basic_set(cmp(
1195 isl_aff_copy(pwaff2->p[j].aff),
1196 isl_aff_copy(pwaff1->p[i].aff)));
1197 better = isl_set_intersect(common, better);
1198 if (isl_set_plain_is_empty(better)) {
1199 isl_set_free(better);
1202 set = isl_set_subtract(set, isl_set_copy(better));
1204 res = isl_pw_aff_add_piece(res, better,
1205 isl_aff_copy(pwaff2->p[j].aff));
1207 res = isl_pw_aff_add_piece(res, set,
1208 isl_aff_copy(pwaff1->p[i].aff));
1211 for (j = 0; j < pwaff2->n; ++j) {
1212 set = isl_set_copy(pwaff2->p[j].set);
1213 for (i = 0; i < pwaff1->n; ++i)
1214 set = isl_set_subtract(set,
1215 isl_set_copy(pwaff1->p[i].set));
1216 res = isl_pw_aff_add_piece(res, set,
1217 isl_aff_copy(pwaff2->p[j].aff));
1220 isl_pw_aff_free(pwaff1);
1221 isl_pw_aff_free(pwaff2);
1225 isl_pw_aff_free(pwaff1);
1226 isl_pw_aff_free(pwaff2);
1230 /* Compute a piecewise quasi-affine expression with a domain that
1231 * is the union of those of pwaff1 and pwaff2 and such that on each
1232 * cell, the quasi-affine expression is the maximum of those of pwaff1
1233 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
1234 * cell, then the associated expression is the defined one.
1236 static __isl_give isl_pw_aff *pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
1237 __isl_take isl_pw_aff *pwaff2)
1239 return pw_aff_union_opt(pwaff1, pwaff2, &isl_aff_ge_basic_set);
1242 __isl_give isl_pw_aff *isl_pw_aff_union_max(__isl_take isl_pw_aff *pwaff1,
1243 __isl_take isl_pw_aff *pwaff2)
1245 return align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_union_max);
1248 /* Compute a piecewise quasi-affine expression with a domain that
1249 * is the union of those of pwaff1 and pwaff2 and such that on each
1250 * cell, the quasi-affine expression is the minimum of those of pwaff1
1251 * and pwaff2. If only one of pwaff1 or pwaff2 is defined on a given
1252 * cell, then the associated expression is the defined one.
1254 static __isl_give isl_pw_aff *pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
1255 __isl_take isl_pw_aff *pwaff2)
1257 return pw_aff_union_opt(pwaff1, pwaff2, &isl_aff_le_basic_set);
1260 __isl_give isl_pw_aff *isl_pw_aff_union_min(__isl_take isl_pw_aff *pwaff1,
1261 __isl_take isl_pw_aff *pwaff2)
1263 return isl_pw_aff_align_params_pw_pw_and(pwaff1, pwaff2,
1267 /* Construct a map with as domain the domain of pwaff and
1268 * one-dimensional range corresponding to the affine expressions.
1270 __isl_give isl_map *isl_map_from_pw_aff(__isl_take isl_pw_aff *pwaff)
1279 dim = isl_pw_aff_get_dim(pwaff);
1280 dim = isl_dim_from_domain(dim);
1281 dim = isl_dim_add(dim, isl_dim_out, 1);
1282 map = isl_map_empty(dim);
1284 for (i = 0; i < pwaff->n; ++i) {
1285 isl_basic_map *bmap;
1288 bmap = isl_basic_map_from_aff(isl_aff_copy(pwaff->p[i].aff));
1289 map_i = isl_map_from_basic_map(bmap);
1290 map_i = isl_map_intersect_domain(map_i,
1291 isl_set_copy(pwaff->p[i].set));
1292 map = isl_map_union_disjoint(map, map_i);
1295 isl_pw_aff_free(pwaff);
1300 /* Return a set containing those elements in the domain
1301 * of pwaff where it is non-negative.
1303 __isl_give isl_set *isl_pw_aff_nonneg_set(__isl_take isl_pw_aff *pwaff)
1311 set = isl_set_empty(isl_pw_aff_get_dim(pwaff));
1313 for (i = 0; i < pwaff->n; ++i) {
1314 isl_basic_set *bset;
1317 bset = isl_aff_nonneg_basic_set(isl_aff_copy(pwaff->p[i].aff));
1318 set_i = isl_set_from_basic_set(bset);
1319 set_i = isl_set_intersect(set_i, isl_set_copy(pwaff->p[i].set));
1320 set = isl_set_union_disjoint(set, set_i);
1323 isl_pw_aff_free(pwaff);
1328 /* Return a set containing those elements in the domain
1329 * of pwaff where it is zero.
1331 __isl_give isl_set *isl_pw_aff_zero_set(__isl_take isl_pw_aff *pwaff)
1339 set = isl_set_empty(isl_pw_aff_get_dim(pwaff));
1341 for (i = 0; i < pwaff->n; ++i) {
1342 isl_basic_set *bset;
1345 bset = isl_aff_zero_basic_set(isl_aff_copy(pwaff->p[i].aff));
1346 set_i = isl_set_from_basic_set(bset);
1347 set_i = isl_set_intersect(set_i, isl_set_copy(pwaff->p[i].set));
1348 set = isl_set_union_disjoint(set, set_i);
1351 isl_pw_aff_free(pwaff);
1356 /* Return a set containing those elements in the domain
1357 * of pwaff where it is not zero.
1359 __isl_give isl_set *isl_pw_aff_non_zero_set(__isl_take isl_pw_aff *pwaff)
1361 return isl_set_complement(isl_pw_aff_zero_set(pwaff));
1364 /* Return a set containing those elements in the shared domain
1365 * of pwaff1 and pwaff2 where pwaff1 is greater than (or equal) to pwaff2.
1367 * We compute the difference on the shared domain and then construct
1368 * the set of values where this difference is non-negative.
1369 * If strict is set, we first subtract 1 from the difference.
1370 * If equal is set, we only return the elements where pwaff1 and pwaff2
1373 static __isl_give isl_set *pw_aff_gte_set(__isl_take isl_pw_aff *pwaff1,
1374 __isl_take isl_pw_aff *pwaff2, int strict, int equal)
1376 isl_set *set1, *set2;
1378 set1 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff1));
1379 set2 = isl_pw_aff_domain(isl_pw_aff_copy(pwaff2));
1380 set1 = isl_set_intersect(set1, set2);
1381 pwaff1 = isl_pw_aff_intersect_domain(pwaff1, isl_set_copy(set1));
1382 pwaff2 = isl_pw_aff_intersect_domain(pwaff2, isl_set_copy(set1));
1383 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_neg(pwaff2));
1386 isl_dim *dim = isl_set_get_dim(set1);
1388 aff = isl_aff_zero(isl_local_space_from_dim(dim));
1389 aff = isl_aff_add_constant_si(aff, -1);
1390 pwaff1 = isl_pw_aff_add(pwaff1, isl_pw_aff_alloc(set1, aff));
1395 return isl_pw_aff_zero_set(pwaff1);
1396 return isl_pw_aff_nonneg_set(pwaff1);
1399 /* Return a set containing those elements in the shared domain
1400 * of pwaff1 and pwaff2 where pwaff1 is equal to pwaff2.
1402 static __isl_give isl_set *pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
1403 __isl_take isl_pw_aff *pwaff2)
1405 return pw_aff_gte_set(pwaff1, pwaff2, 0, 1);
1408 __isl_give isl_set *isl_pw_aff_eq_set(__isl_take isl_pw_aff *pwaff1,
1409 __isl_take isl_pw_aff *pwaff2)
1411 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_eq_set);
1414 /* Return a set containing those elements in the shared domain
1415 * of pwaff1 and pwaff2 where pwaff1 is greater than or equal to pwaff2.
1417 static __isl_give isl_set *pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
1418 __isl_take isl_pw_aff *pwaff2)
1420 return pw_aff_gte_set(pwaff1, pwaff2, 0, 0);
1423 __isl_give isl_set *isl_pw_aff_ge_set(__isl_take isl_pw_aff *pwaff1,
1424 __isl_take isl_pw_aff *pwaff2)
1426 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ge_set);
1429 /* Return a set containing those elements in the shared domain
1430 * of pwaff1 and pwaff2 where pwaff1 is strictly greater than pwaff2.
1432 static __isl_give isl_set *pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
1433 __isl_take isl_pw_aff *pwaff2)
1435 return pw_aff_gte_set(pwaff1, pwaff2, 1, 0);
1438 __isl_give isl_set *isl_pw_aff_gt_set(__isl_take isl_pw_aff *pwaff1,
1439 __isl_take isl_pw_aff *pwaff2)
1441 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_gt_set);
1444 __isl_give isl_set *isl_pw_aff_le_set(__isl_take isl_pw_aff *pwaff1,
1445 __isl_take isl_pw_aff *pwaff2)
1447 return isl_pw_aff_ge_set(pwaff2, pwaff1);
1450 __isl_give isl_set *isl_pw_aff_lt_set(__isl_take isl_pw_aff *pwaff1,
1451 __isl_take isl_pw_aff *pwaff2)
1453 return isl_pw_aff_gt_set(pwaff2, pwaff1);
1456 /* Return a set containing those elements in the shared domain
1457 * of the elements of list1 and list2 where each element in list1
1458 * has the relation specified by "fn" with each element in list2.
1460 static __isl_give isl_set *pw_aff_list_set(__isl_take isl_pw_aff_list *list1,
1461 __isl_take isl_pw_aff_list *list2,
1462 __isl_give isl_set *(*fn)(__isl_take isl_pw_aff *pwaff1,
1463 __isl_take isl_pw_aff *pwaff2))
1469 if (!list1 || !list2)
1472 ctx = isl_pw_aff_list_get_ctx(list1);
1473 if (list1->n < 1 || list2->n < 1)
1474 isl_die(ctx, isl_error_invalid,
1475 "list should contain at least one element", goto error);
1477 set = isl_set_universe(isl_pw_aff_get_dim(list1->p[0]));
1478 for (i = 0; i < list1->n; ++i)
1479 for (j = 0; j < list2->n; ++j) {
1482 set_ij = fn(isl_pw_aff_copy(list1->p[i]),
1483 isl_pw_aff_copy(list2->p[j]));
1484 set = isl_set_intersect(set, set_ij);
1487 isl_pw_aff_list_free(list1);
1488 isl_pw_aff_list_free(list2);
1491 isl_pw_aff_list_free(list1);
1492 isl_pw_aff_list_free(list2);
1496 /* Return a set containing those elements in the shared domain
1497 * of the elements of list1 and list2 where each element in list1
1498 * is equal to each element in list2.
1500 __isl_give isl_set *isl_pw_aff_list_eq_set(__isl_take isl_pw_aff_list *list1,
1501 __isl_take isl_pw_aff_list *list2)
1503 return pw_aff_list_set(list1, list2, &isl_pw_aff_eq_set);
1506 __isl_give isl_set *isl_pw_aff_list_ne_set(__isl_take isl_pw_aff_list *list1,
1507 __isl_take isl_pw_aff_list *list2)
1509 return pw_aff_list_set(list1, list2, &isl_pw_aff_ne_set);
1512 /* Return a set containing those elements in the shared domain
1513 * of the elements of list1 and list2 where each element in list1
1514 * is less than or equal to each element in list2.
1516 __isl_give isl_set *isl_pw_aff_list_le_set(__isl_take isl_pw_aff_list *list1,
1517 __isl_take isl_pw_aff_list *list2)
1519 return pw_aff_list_set(list1, list2, &isl_pw_aff_le_set);
1522 __isl_give isl_set *isl_pw_aff_list_lt_set(__isl_take isl_pw_aff_list *list1,
1523 __isl_take isl_pw_aff_list *list2)
1525 return pw_aff_list_set(list1, list2, &isl_pw_aff_lt_set);
1528 __isl_give isl_set *isl_pw_aff_list_ge_set(__isl_take isl_pw_aff_list *list1,
1529 __isl_take isl_pw_aff_list *list2)
1531 return pw_aff_list_set(list1, list2, &isl_pw_aff_ge_set);
1534 __isl_give isl_set *isl_pw_aff_list_gt_set(__isl_take isl_pw_aff_list *list1,
1535 __isl_take isl_pw_aff_list *list2)
1537 return pw_aff_list_set(list1, list2, &isl_pw_aff_gt_set);
1541 /* Return a set containing those elements in the shared domain
1542 * of pwaff1 and pwaff2 where pwaff1 is not equal to pwaff2.
1544 static __isl_give isl_set *pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
1545 __isl_take isl_pw_aff *pwaff2)
1547 isl_set *set_lt, *set_gt;
1549 set_lt = isl_pw_aff_lt_set(isl_pw_aff_copy(pwaff1),
1550 isl_pw_aff_copy(pwaff2));
1551 set_gt = isl_pw_aff_gt_set(pwaff1, pwaff2);
1552 return isl_set_union_disjoint(set_lt, set_gt);
1555 __isl_give isl_set *isl_pw_aff_ne_set(__isl_take isl_pw_aff *pwaff1,
1556 __isl_take isl_pw_aff *pwaff2)
1558 return align_params_pw_pw_set_and(pwaff1, pwaff2, &pw_aff_ne_set);
1561 __isl_give isl_pw_aff *isl_pw_aff_scale_down(__isl_take isl_pw_aff *pwaff,
1566 if (isl_int_is_one(v))
1568 if (!isl_int_is_pos(v))
1569 isl_die(isl_pw_aff_get_ctx(pwaff), isl_error_invalid,
1570 "factor needs to be positive",
1571 return isl_pw_aff_free(pwaff));
1572 pwaff = isl_pw_aff_cow(pwaff);
1578 for (i = 0; i < pwaff->n; ++i) {
1579 pwaff->p[i].aff = isl_aff_scale_down(pwaff->p[i].aff, v);
1580 if (!pwaff->p[i].aff)
1581 return isl_pw_aff_free(pwaff);
1587 __isl_give isl_pw_aff *isl_pw_aff_floor(__isl_take isl_pw_aff *pwaff)
1591 pwaff = isl_pw_aff_cow(pwaff);
1597 for (i = 0; i < pwaff->n; ++i) {
1598 pwaff->p[i].aff = isl_aff_floor(pwaff->p[i].aff);
1599 if (!pwaff->p[i].aff)
1600 return isl_pw_aff_free(pwaff);
1606 __isl_give isl_pw_aff *isl_pw_aff_ceil(__isl_take isl_pw_aff *pwaff)
1610 pwaff = isl_pw_aff_cow(pwaff);
1616 for (i = 0; i < pwaff->n; ++i) {
1617 pwaff->p[i].aff = isl_aff_ceil(pwaff->p[i].aff);
1618 if (!pwaff->p[i].aff)
1619 return isl_pw_aff_free(pwaff);
1625 /* Return an affine expression that is equal to pwaff_true for elements
1626 * in "cond" and to pwaff_false for elements not in "cond".
1627 * That is, return cond ? pwaff_true : pwaff_false;
1629 __isl_give isl_pw_aff *isl_pw_aff_cond(__isl_take isl_set *cond,
1630 __isl_take isl_pw_aff *pwaff_true, __isl_take isl_pw_aff *pwaff_false)
1634 comp = isl_set_complement(isl_set_copy(cond));
1635 pwaff_true = isl_pw_aff_intersect_domain(pwaff_true, cond);
1636 pwaff_false = isl_pw_aff_intersect_domain(pwaff_false, comp);
1638 return isl_pw_aff_add_disjoint(pwaff_true, pwaff_false);
1641 int isl_aff_is_cst(__isl_keep isl_aff *aff)
1646 return isl_seq_first_non_zero(aff->v->el + 2, aff->v->size - 2) == -1;
1649 /* Check whether pwaff is a piecewise constant.
1651 int isl_pw_aff_is_cst(__isl_keep isl_pw_aff *pwaff)
1658 for (i = 0; i < pwaff->n; ++i) {
1659 int is_cst = isl_aff_is_cst(pwaff->p[i].aff);
1660 if (is_cst < 0 || !is_cst)
1667 __isl_give isl_aff *isl_aff_mul(__isl_take isl_aff *aff1,
1668 __isl_take isl_aff *aff2)
1670 if (!isl_aff_is_cst(aff2) && isl_aff_is_cst(aff1))
1671 return isl_aff_mul(aff2, aff1);
1673 if (!isl_aff_is_cst(aff2))
1674 isl_die(isl_aff_get_ctx(aff1), isl_error_invalid,
1675 "at least one affine expression should be constant",
1678 aff1 = isl_aff_cow(aff1);
1682 aff1 = isl_aff_scale(aff1, aff2->v->el[1]);
1683 aff1 = isl_aff_scale_down(aff1, aff2->v->el[0]);
1693 static __isl_give isl_pw_aff *pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
1694 __isl_take isl_pw_aff *pwaff2)
1699 if (!pwaff1 || !pwaff2)
1702 n = pwaff1->n * pwaff2->n;
1703 res = isl_pw_aff_alloc_(isl_dim_copy(pwaff1->dim), n);
1705 for (i = 0; i < pwaff1->n; ++i) {
1706 for (j = 0; j < pwaff2->n; ++j) {
1709 common = isl_set_intersect(
1710 isl_set_copy(pwaff1->p[i].set),
1711 isl_set_copy(pwaff2->p[j].set));
1712 if (isl_set_plain_is_empty(common)) {
1713 isl_set_free(common);
1717 prod = isl_aff_mul(isl_aff_copy(pwaff1->p[i].aff),
1718 isl_aff_copy(pwaff2->p[j].aff));
1720 res = isl_pw_aff_add_piece(res, common, prod);
1724 isl_pw_aff_free(pwaff1);
1725 isl_pw_aff_free(pwaff2);
1728 isl_pw_aff_free(pwaff1);
1729 isl_pw_aff_free(pwaff2);
1733 __isl_give isl_pw_aff *isl_pw_aff_mul(__isl_take isl_pw_aff *pwaff1,
1734 __isl_take isl_pw_aff *pwaff2)
1736 return align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_mul);
1739 static __isl_give isl_pw_aff *pw_aff_min(__isl_take isl_pw_aff *pwaff1,
1740 __isl_take isl_pw_aff *pwaff2)
1744 le = isl_pw_aff_le_set(isl_pw_aff_copy(pwaff1),
1745 isl_pw_aff_copy(pwaff2));
1746 return isl_pw_aff_cond(le, pwaff1, pwaff2);
1749 __isl_give isl_pw_aff *isl_pw_aff_min(__isl_take isl_pw_aff *pwaff1,
1750 __isl_take isl_pw_aff *pwaff2)
1752 return align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_min);
1755 static __isl_give isl_pw_aff *pw_aff_max(__isl_take isl_pw_aff *pwaff1,
1756 __isl_take isl_pw_aff *pwaff2)
1760 le = isl_pw_aff_ge_set(isl_pw_aff_copy(pwaff1),
1761 isl_pw_aff_copy(pwaff2));
1762 return isl_pw_aff_cond(le, pwaff1, pwaff2);
1765 __isl_give isl_pw_aff *isl_pw_aff_max(__isl_take isl_pw_aff *pwaff1,
1766 __isl_take isl_pw_aff *pwaff2)
1768 return align_params_pw_pw_and(pwaff1, pwaff2, &pw_aff_max);
1771 static __isl_give isl_pw_aff *pw_aff_list_reduce(
1772 __isl_take isl_pw_aff_list *list,
1773 __isl_give isl_pw_aff *(*fn)(__isl_take isl_pw_aff *pwaff1,
1774 __isl_take isl_pw_aff *pwaff2))
1783 ctx = isl_pw_aff_list_get_ctx(list);
1785 isl_die(ctx, isl_error_invalid,
1786 "list should contain at least one element",
1787 return isl_pw_aff_list_free(list));
1789 res = isl_pw_aff_copy(list->p[0]);
1790 for (i = 1; i < list->n; ++i)
1791 res = fn(res, isl_pw_aff_copy(list->p[i]));
1793 isl_pw_aff_list_free(list);
1797 /* Return an isl_pw_aff that maps each element in the intersection of the
1798 * domains of the elements of list to the minimal corresponding affine
1801 __isl_give isl_pw_aff *isl_pw_aff_list_min(__isl_take isl_pw_aff_list *list)
1803 return pw_aff_list_reduce(list, &isl_pw_aff_min);
1806 /* Return an isl_pw_aff that maps each element in the intersection of the
1807 * domains of the elements of list to the maximal corresponding affine
1810 __isl_give isl_pw_aff *isl_pw_aff_list_max(__isl_take isl_pw_aff_list *list)
1812 return pw_aff_list_reduce(list, &isl_pw_aff_max);