2 * Copyright 2010 INRIA Saclay
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege, INRIA Saclay - Ile-de-France,
7 * Parc Club Orsay Universite, ZAC des vignes, 4 rue Jacques Monod,
12 #include <isl_map_private.h>
13 #include <isl_union_map_private.h>
14 #include <isl_polynomial_private.h>
15 #include <isl_point_private.h>
16 #include <isl_space_private.h>
17 #include <isl_lp_private.h>
19 #include <isl_mat_private.h>
20 #include <isl_val_private.h>
21 #include <isl_vec_private.h>
22 #include <isl_config.h>
23 #include <isl/deprecated/polynomial_int.h>
25 enum isl_fold
isl_fold_type_negate(enum isl_fold type
)
36 isl_die(NULL
, isl_error_internal
, "unhandled isl_fold type", abort());
39 static __isl_give isl_qpolynomial_fold
*qpolynomial_fold_alloc(
40 enum isl_fold type
, __isl_take isl_space
*dim
, int n
)
42 isl_qpolynomial_fold
*fold
;
47 isl_assert(dim
->ctx
, n
>= 0, goto error
);
48 fold
= isl_calloc(dim
->ctx
, struct isl_qpolynomial_fold
,
49 sizeof(struct isl_qpolynomial_fold
) +
50 (n
- 1) * sizeof(struct isl_qpolynomial
*));
66 isl_ctx
*isl_qpolynomial_fold_get_ctx(__isl_keep isl_qpolynomial_fold
*fold
)
68 return fold
? fold
->dim
->ctx
: NULL
;
71 __isl_give isl_space
*isl_qpolynomial_fold_get_domain_space(
72 __isl_keep isl_qpolynomial_fold
*fold
)
74 return fold
? isl_space_copy(fold
->dim
) : NULL
;
77 __isl_give isl_space
*isl_qpolynomial_fold_get_space(
78 __isl_keep isl_qpolynomial_fold
*fold
)
83 space
= isl_space_copy(fold
->dim
);
84 space
= isl_space_from_domain(space
);
85 space
= isl_space_add_dims(space
, isl_dim_out
, 1);
89 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_reset_domain_space(
90 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_space
*dim
)
94 fold
= isl_qpolynomial_fold_cow(fold
);
98 for (i
= 0; i
< fold
->n
; ++i
) {
99 fold
->qp
[i
] = isl_qpolynomial_reset_domain_space(fold
->qp
[i
],
100 isl_space_copy(dim
));
105 isl_space_free(fold
->dim
);
110 isl_qpolynomial_fold_free(fold
);
115 /* Reset the space of "fold". This function is called from isl_pw_templ.c
116 * and doesn't know if the space of an element object is represented
117 * directly or through its domain. It therefore passes along both.
119 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_reset_space_and_domain(
120 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_space
*space
,
121 __isl_take isl_space
*domain
)
123 isl_space_free(space
);
124 return isl_qpolynomial_fold_reset_domain_space(fold
, domain
);
127 int isl_qpolynomial_fold_involves_dims(__isl_keep isl_qpolynomial_fold
*fold
,
128 enum isl_dim_type type
, unsigned first
, unsigned n
)
134 if (fold
->n
== 0 || n
== 0)
137 for (i
= 0; i
< fold
->n
; ++i
) {
138 int involves
= isl_qpolynomial_involves_dims(fold
->qp
[i
],
140 if (involves
< 0 || involves
)
146 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_set_dim_name(
147 __isl_take isl_qpolynomial_fold
*fold
,
148 enum isl_dim_type type
, unsigned pos
, const char *s
)
152 fold
= isl_qpolynomial_fold_cow(fold
);
155 fold
->dim
= isl_space_set_dim_name(fold
->dim
, type
, pos
, s
);
159 for (i
= 0; i
< fold
->n
; ++i
) {
160 fold
->qp
[i
] = isl_qpolynomial_set_dim_name(fold
->qp
[i
],
168 isl_qpolynomial_fold_free(fold
);
172 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_drop_dims(
173 __isl_take isl_qpolynomial_fold
*fold
,
174 enum isl_dim_type type
, unsigned first
, unsigned n
)
177 enum isl_dim_type set_type
;
184 set_type
= type
== isl_dim_in
? isl_dim_set
: type
;
186 fold
= isl_qpolynomial_fold_cow(fold
);
189 fold
->dim
= isl_space_drop_dims(fold
->dim
, set_type
, first
, n
);
193 for (i
= 0; i
< fold
->n
; ++i
) {
194 fold
->qp
[i
] = isl_qpolynomial_drop_dims(fold
->qp
[i
],
202 isl_qpolynomial_fold_free(fold
);
206 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_insert_dims(
207 __isl_take isl_qpolynomial_fold
*fold
,
208 enum isl_dim_type type
, unsigned first
, unsigned n
)
214 if (n
== 0 && !isl_space_is_named_or_nested(fold
->dim
, type
))
217 fold
= isl_qpolynomial_fold_cow(fold
);
220 fold
->dim
= isl_space_insert_dims(fold
->dim
, type
, first
, n
);
224 for (i
= 0; i
< fold
->n
; ++i
) {
225 fold
->qp
[i
] = isl_qpolynomial_insert_dims(fold
->qp
[i
],
233 isl_qpolynomial_fold_free(fold
);
237 /* Determine the sign of the constant quasipolynomial "qp".
244 * For qp == 0, we can return either -1 or 1. In practice, we return 1.
245 * For qp == NaN, the sign is undefined, so we return 0.
247 static int isl_qpolynomial_cst_sign(__isl_keep isl_qpolynomial
*qp
)
249 struct isl_upoly_cst
*cst
;
251 if (isl_qpolynomial_is_nan(qp
))
254 cst
= isl_upoly_as_cst(qp
->upoly
);
258 return isl_int_sgn(cst
->n
) < 0 ? -1 : 1;
261 static int isl_qpolynomial_aff_sign(__isl_keep isl_set
*set
,
262 __isl_keep isl_qpolynomial
*qp
)
264 enum isl_lp_result res
;
269 aff
= isl_qpolynomial_extract_affine(qp
);
275 res
= isl_set_solve_lp(set
, 0, aff
->el
+ 1, aff
->el
[0],
277 if (res
== isl_lp_error
)
279 if (res
== isl_lp_empty
||
280 (res
== isl_lp_ok
&& !isl_int_is_neg(opt
))) {
285 res
= isl_set_solve_lp(set
, 1, aff
->el
+ 1, aff
->el
[0],
287 if (res
== isl_lp_ok
&& !isl_int_is_pos(opt
))
296 /* Determine, if possible, the sign of the quasipolynomial "qp" on
299 * If qp is a constant, then the problem is trivial.
300 * If qp is linear, then we check if the minimum of the corresponding
301 * affine constraint is non-negative or if the maximum is non-positive.
303 * Otherwise, we check if the outermost variable "v" has a lower bound "l"
304 * in "set". If so, we write qp(v,v') as
306 * q(v,v') * (v - l) + r(v')
308 * if q(v,v') and r(v') have the same known sign, then the original
309 * quasipolynomial has the same sign as well.
316 static int isl_qpolynomial_sign(__isl_keep isl_set
*set
,
317 __isl_keep isl_qpolynomial
*qp
)
322 struct isl_upoly_rec
*rec
;
325 enum isl_lp_result res
;
328 is
= isl_qpolynomial_is_cst(qp
, NULL
, NULL
);
332 return isl_qpolynomial_cst_sign(qp
);
334 is
= isl_qpolynomial_is_affine(qp
);
338 return isl_qpolynomial_aff_sign(set
, qp
);
340 if (qp
->div
->n_row
> 0)
343 rec
= isl_upoly_as_rec(qp
->upoly
);
347 d
= isl_space_dim(qp
->dim
, isl_dim_all
);
348 v
= isl_vec_alloc(set
->ctx
, 2 + d
);
352 isl_seq_clr(v
->el
+ 1, 1 + d
);
353 isl_int_set_si(v
->el
[0], 1);
354 isl_int_set_si(v
->el
[2 + qp
->upoly
->var
], 1);
358 res
= isl_set_solve_lp(set
, 0, v
->el
+ 1, v
->el
[0], &l
, NULL
, NULL
);
359 if (res
== isl_lp_ok
) {
360 isl_qpolynomial
*min
;
361 isl_qpolynomial
*base
;
362 isl_qpolynomial
*r
, *q
;
365 min
= isl_qpolynomial_cst_on_domain(isl_space_copy(qp
->dim
), l
);
366 base
= isl_qpolynomial_var_pow_on_domain(isl_space_copy(qp
->dim
),
369 r
= isl_qpolynomial_alloc(isl_space_copy(qp
->dim
), 0,
370 isl_upoly_copy(rec
->p
[rec
->n
- 1]));
371 q
= isl_qpolynomial_copy(r
);
373 for (i
= rec
->n
- 2; i
>= 0; --i
) {
374 r
= isl_qpolynomial_mul(r
, isl_qpolynomial_copy(min
));
375 t
= isl_qpolynomial_alloc(isl_space_copy(qp
->dim
), 0,
376 isl_upoly_copy(rec
->p
[i
]));
377 r
= isl_qpolynomial_add(r
, t
);
380 q
= isl_qpolynomial_mul(q
, isl_qpolynomial_copy(base
));
381 q
= isl_qpolynomial_add(q
, isl_qpolynomial_copy(r
));
384 if (isl_qpolynomial_is_zero(q
))
385 sgn
= isl_qpolynomial_sign(set
, r
);
386 else if (isl_qpolynomial_is_zero(r
))
387 sgn
= isl_qpolynomial_sign(set
, q
);
390 sgn_r
= isl_qpolynomial_sign(set
, r
);
391 sgn_q
= isl_qpolynomial_sign(set
, q
);
396 isl_qpolynomial_free(min
);
397 isl_qpolynomial_free(base
);
398 isl_qpolynomial_free(q
);
399 isl_qpolynomial_free(r
);
409 /* Combine "fold1" and "fold2" into a single reduction, eliminating
410 * those elements of one reduction that are already covered by the other
411 * reduction on "set".
413 * If "fold1" or "fold2" is an empty reduction, then return
414 * the other reduction.
415 * If "fold1" or "fold2" is a NaN, then return this NaN.
417 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_fold_on_domain(
418 __isl_keep isl_set
*set
,
419 __isl_take isl_qpolynomial_fold
*fold1
,
420 __isl_take isl_qpolynomial_fold
*fold2
)
424 struct isl_qpolynomial_fold
*res
= NULL
;
427 if (!fold1
|| !fold2
)
430 isl_assert(fold1
->dim
->ctx
, fold1
->type
== fold2
->type
, goto error
);
431 isl_assert(fold1
->dim
->ctx
, isl_space_is_equal(fold1
->dim
, fold2
->dim
),
434 better
= fold1
->type
== isl_fold_max
? -1 : 1;
436 if (isl_qpolynomial_fold_is_empty(fold1
) ||
437 isl_qpolynomial_fold_is_nan(fold2
)) {
438 isl_qpolynomial_fold_free(fold1
);
442 if (isl_qpolynomial_fold_is_empty(fold2
) ||
443 isl_qpolynomial_fold_is_nan(fold1
)) {
444 isl_qpolynomial_fold_free(fold2
);
448 res
= qpolynomial_fold_alloc(fold1
->type
, isl_space_copy(fold1
->dim
),
449 fold1
->n
+ fold2
->n
);
453 for (i
= 0; i
< fold1
->n
; ++i
) {
454 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold1
->qp
[i
]);
455 if (!res
->qp
[res
->n
])
461 for (i
= 0; i
< fold2
->n
; ++i
) {
462 for (j
= n1
- 1; j
>= 0; --j
) {
465 equal
= isl_qpolynomial_plain_is_equal(res
->qp
[j
],
471 d
= isl_qpolynomial_sub(
472 isl_qpolynomial_copy(res
->qp
[j
]),
473 isl_qpolynomial_copy(fold2
->qp
[i
]));
474 sgn
= isl_qpolynomial_sign(set
, d
);
475 isl_qpolynomial_free(d
);
480 isl_qpolynomial_free(res
->qp
[j
]);
482 res
->qp
[j
] = res
->qp
[n1
- 1];
484 if (n1
!= res
->n
- 1)
485 res
->qp
[n1
] = res
->qp
[res
->n
- 1];
490 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold2
->qp
[i
]);
491 if (!res
->qp
[res
->n
])
496 isl_qpolynomial_fold_free(fold1
);
497 isl_qpolynomial_fold_free(fold2
);
501 isl_qpolynomial_fold_free(res
);
502 isl_qpolynomial_fold_free(fold1
);
503 isl_qpolynomial_fold_free(fold2
);
507 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_add_qpolynomial(
508 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_qpolynomial
*qp
)
515 if (isl_qpolynomial_is_zero(qp
)) {
516 isl_qpolynomial_free(qp
);
520 fold
= isl_qpolynomial_fold_cow(fold
);
524 for (i
= 0; i
< fold
->n
; ++i
) {
525 fold
->qp
[i
] = isl_qpolynomial_add(fold
->qp
[i
],
526 isl_qpolynomial_copy(qp
));
531 isl_qpolynomial_free(qp
);
534 isl_qpolynomial_fold_free(fold
);
535 isl_qpolynomial_free(qp
);
539 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_add_on_domain(
540 __isl_keep isl_set
*dom
,
541 __isl_take isl_qpolynomial_fold
*fold1
,
542 __isl_take isl_qpolynomial_fold
*fold2
)
545 isl_qpolynomial_fold
*res
= NULL
;
547 if (!fold1
|| !fold2
)
550 if (isl_qpolynomial_fold_is_empty(fold1
)) {
551 isl_qpolynomial_fold_free(fold1
);
555 if (isl_qpolynomial_fold_is_empty(fold2
)) {
556 isl_qpolynomial_fold_free(fold2
);
560 if (fold1
->n
== 1 && fold2
->n
!= 1)
561 return isl_qpolynomial_fold_add_on_domain(dom
, fold2
, fold1
);
564 res
= isl_qpolynomial_fold_add_qpolynomial(fold1
,
565 isl_qpolynomial_copy(fold2
->qp
[0]));
566 isl_qpolynomial_fold_free(fold2
);
570 res
= isl_qpolynomial_fold_add_qpolynomial(
571 isl_qpolynomial_fold_copy(fold1
),
572 isl_qpolynomial_copy(fold2
->qp
[0]));
574 for (i
= 1; i
< fold2
->n
; ++i
) {
575 isl_qpolynomial_fold
*res_i
;
576 res_i
= isl_qpolynomial_fold_add_qpolynomial(
577 isl_qpolynomial_fold_copy(fold1
),
578 isl_qpolynomial_copy(fold2
->qp
[i
]));
579 res
= isl_qpolynomial_fold_fold_on_domain(dom
, res
, res_i
);
582 isl_qpolynomial_fold_free(fold1
);
583 isl_qpolynomial_fold_free(fold2
);
586 isl_qpolynomial_fold_free(res
);
587 isl_qpolynomial_fold_free(fold1
);
588 isl_qpolynomial_fold_free(fold2
);
592 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_substitute_equalities(
593 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_basic_set
*eq
)
600 fold
= isl_qpolynomial_fold_cow(fold
);
604 for (i
= 0; i
< fold
->n
; ++i
) {
605 fold
->qp
[i
] = isl_qpolynomial_substitute_equalities(fold
->qp
[i
],
606 isl_basic_set_copy(eq
));
611 isl_basic_set_free(eq
);
614 isl_basic_set_free(eq
);
615 isl_qpolynomial_fold_free(fold
);
619 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_gist(
620 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_set
*context
)
624 if (!fold
|| !context
)
627 fold
= isl_qpolynomial_fold_cow(fold
);
631 for (i
= 0; i
< fold
->n
; ++i
) {
632 fold
->qp
[i
] = isl_qpolynomial_gist(fold
->qp
[i
],
633 isl_set_copy(context
));
638 isl_set_free(context
);
641 isl_set_free(context
);
642 isl_qpolynomial_fold_free(fold
);
646 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_gist_params(
647 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_set
*context
)
649 isl_space
*space
= isl_qpolynomial_fold_get_domain_space(fold
);
650 isl_set
*dom_context
= isl_set_universe(space
);
651 dom_context
= isl_set_intersect_params(dom_context
, context
);
652 return isl_qpolynomial_fold_gist(fold
, dom_context
);
655 #define isl_qpolynomial_fold_involves_nan isl_qpolynomial_fold_is_nan
660 #define PW isl_pw_qpolynomial_fold
662 #define EL isl_qpolynomial_fold
664 #define EL_IS_ZERO is_empty
668 #define IS_ZERO is_zero
671 #undef DEFAULT_IS_ZERO
672 #define DEFAULT_IS_ZERO 1
678 #include <isl_pw_templ.c>
681 #define UNION isl_union_pw_qpolynomial_fold
683 #define PART isl_pw_qpolynomial_fold
685 #define PARTS pw_qpolynomial_fold
689 #include <isl_union_single.c>
690 #include <isl_union_eval.c>
692 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_empty(enum isl_fold type
,
693 __isl_take isl_space
*dim
)
695 return qpolynomial_fold_alloc(type
, dim
, 0);
698 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_alloc(
699 enum isl_fold type
, __isl_take isl_qpolynomial
*qp
)
701 isl_qpolynomial_fold
*fold
;
706 fold
= qpolynomial_fold_alloc(type
, isl_space_copy(qp
->dim
), 1);
715 isl_qpolynomial_fold_free(fold
);
716 isl_qpolynomial_free(qp
);
720 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_copy(
721 __isl_keep isl_qpolynomial_fold
*fold
)
730 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_dup(
731 __isl_keep isl_qpolynomial_fold
*fold
)
734 isl_qpolynomial_fold
*dup
;
738 dup
= qpolynomial_fold_alloc(fold
->type
,
739 isl_space_copy(fold
->dim
), fold
->n
);
744 for (i
= 0; i
< fold
->n
; ++i
) {
745 dup
->qp
[i
] = isl_qpolynomial_copy(fold
->qp
[i
]);
752 isl_qpolynomial_fold_free(dup
);
756 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_cow(
757 __isl_take isl_qpolynomial_fold
*fold
)
765 return isl_qpolynomial_fold_dup(fold
);
768 void isl_qpolynomial_fold_free(__isl_take isl_qpolynomial_fold
*fold
)
777 for (i
= 0; i
< fold
->n
; ++i
)
778 isl_qpolynomial_free(fold
->qp
[i
]);
779 isl_space_free(fold
->dim
);
783 int isl_qpolynomial_fold_is_empty(__isl_keep isl_qpolynomial_fold
*fold
)
791 /* Does "fold" represent max(NaN) or min(NaN)?
793 isl_bool
isl_qpolynomial_fold_is_nan(__isl_keep isl_qpolynomial_fold
*fold
)
796 return isl_bool_error
;
798 return isl_bool_false
;
799 return isl_qpolynomial_is_nan(fold
->qp
[0]);
802 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_fold(
803 __isl_take isl_qpolynomial_fold
*fold1
,
804 __isl_take isl_qpolynomial_fold
*fold2
)
807 struct isl_qpolynomial_fold
*res
= NULL
;
809 if (!fold1
|| !fold2
)
812 isl_assert(fold1
->dim
->ctx
, fold1
->type
== fold2
->type
, goto error
);
813 isl_assert(fold1
->dim
->ctx
, isl_space_is_equal(fold1
->dim
, fold2
->dim
),
816 if (isl_qpolynomial_fold_is_empty(fold1
)) {
817 isl_qpolynomial_fold_free(fold1
);
821 if (isl_qpolynomial_fold_is_empty(fold2
)) {
822 isl_qpolynomial_fold_free(fold2
);
826 res
= qpolynomial_fold_alloc(fold1
->type
, isl_space_copy(fold1
->dim
),
827 fold1
->n
+ fold2
->n
);
831 for (i
= 0; i
< fold1
->n
; ++i
) {
832 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold1
->qp
[i
]);
833 if (!res
->qp
[res
->n
])
838 for (i
= 0; i
< fold2
->n
; ++i
) {
839 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold2
->qp
[i
]);
840 if (!res
->qp
[res
->n
])
845 isl_qpolynomial_fold_free(fold1
);
846 isl_qpolynomial_fold_free(fold2
);
850 isl_qpolynomial_fold_free(res
);
851 isl_qpolynomial_fold_free(fold1
);
852 isl_qpolynomial_fold_free(fold2
);
856 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_fold(
857 __isl_take isl_pw_qpolynomial_fold
*pw1
,
858 __isl_take isl_pw_qpolynomial_fold
*pw2
)
861 struct isl_pw_qpolynomial_fold
*res
;
867 isl_assert(pw1
->dim
->ctx
, isl_space_is_equal(pw1
->dim
, pw2
->dim
), goto error
);
869 if (isl_pw_qpolynomial_fold_is_zero(pw1
)) {
870 isl_pw_qpolynomial_fold_free(pw1
);
874 if (isl_pw_qpolynomial_fold_is_zero(pw2
)) {
875 isl_pw_qpolynomial_fold_free(pw2
);
879 if (pw1
->type
!= pw2
->type
)
880 isl_die(pw1
->dim
->ctx
, isl_error_invalid
,
881 "fold types don't match", goto error
);
883 n
= (pw1
->n
+ 1) * (pw2
->n
+ 1);
884 res
= isl_pw_qpolynomial_fold_alloc_size(isl_space_copy(pw1
->dim
),
887 for (i
= 0; i
< pw1
->n
; ++i
) {
888 set
= isl_set_copy(pw1
->p
[i
].set
);
889 for (j
= 0; j
< pw2
->n
; ++j
) {
890 struct isl_set
*common
;
891 isl_qpolynomial_fold
*sum
;
892 set
= isl_set_subtract(set
,
893 isl_set_copy(pw2
->p
[j
].set
));
894 common
= isl_set_intersect(isl_set_copy(pw1
->p
[i
].set
),
895 isl_set_copy(pw2
->p
[j
].set
));
896 if (isl_set_plain_is_empty(common
)) {
897 isl_set_free(common
);
901 sum
= isl_qpolynomial_fold_fold_on_domain(common
,
902 isl_qpolynomial_fold_copy(pw1
->p
[i
].fold
),
903 isl_qpolynomial_fold_copy(pw2
->p
[j
].fold
));
905 res
= isl_pw_qpolynomial_fold_add_piece(res
, common
, sum
);
907 res
= isl_pw_qpolynomial_fold_add_piece(res
, set
,
908 isl_qpolynomial_fold_copy(pw1
->p
[i
].fold
));
911 for (j
= 0; j
< pw2
->n
; ++j
) {
912 set
= isl_set_copy(pw2
->p
[j
].set
);
913 for (i
= 0; i
< pw1
->n
; ++i
)
914 set
= isl_set_subtract(set
, isl_set_copy(pw1
->p
[i
].set
));
915 res
= isl_pw_qpolynomial_fold_add_piece(res
, set
,
916 isl_qpolynomial_fold_copy(pw2
->p
[j
].fold
));
919 isl_pw_qpolynomial_fold_free(pw1
);
920 isl_pw_qpolynomial_fold_free(pw2
);
924 isl_pw_qpolynomial_fold_free(pw1
);
925 isl_pw_qpolynomial_fold_free(pw2
);
929 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(
930 __isl_take isl_union_pw_qpolynomial_fold
*u
,
931 __isl_take isl_pw_qpolynomial_fold
*part
)
933 struct isl_hash_table_entry
*entry
;
935 u
= isl_union_pw_qpolynomial_fold_cow(u
);
940 isl_assert(u
->space
->ctx
,
941 isl_space_match(part
->dim
, isl_dim_param
, u
->space
, isl_dim_param
),
944 entry
= isl_union_pw_qpolynomial_fold_find_part_entry(u
, part
->dim
, 1);
951 entry
->data
= isl_pw_qpolynomial_fold_fold(entry
->data
,
952 isl_pw_qpolynomial_fold_copy(part
));
955 isl_pw_qpolynomial_fold_free(part
);
960 isl_pw_qpolynomial_fold_free(part
);
961 isl_union_pw_qpolynomial_fold_free(u
);
965 static isl_stat
fold_part(__isl_take isl_pw_qpolynomial_fold
*part
, void *user
)
967 isl_union_pw_qpolynomial_fold
**u
;
968 u
= (isl_union_pw_qpolynomial_fold
**)user
;
970 *u
= isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(*u
, part
);
975 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_fold(
976 __isl_take isl_union_pw_qpolynomial_fold
*u1
,
977 __isl_take isl_union_pw_qpolynomial_fold
*u2
)
979 u1
= isl_union_pw_qpolynomial_fold_cow(u1
);
984 if (isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(u2
,
985 &fold_part
, &u1
) < 0)
988 isl_union_pw_qpolynomial_fold_free(u2
);
992 isl_union_pw_qpolynomial_fold_free(u1
);
993 isl_union_pw_qpolynomial_fold_free(u2
);
997 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_from_pw_qpolynomial(
998 enum isl_fold type
, __isl_take isl_pw_qpolynomial
*pwqp
)
1001 isl_pw_qpolynomial_fold
*pwf
;
1006 pwf
= isl_pw_qpolynomial_fold_alloc_size(isl_space_copy(pwqp
->dim
),
1009 for (i
= 0; i
< pwqp
->n
; ++i
)
1010 pwf
= isl_pw_qpolynomial_fold_add_piece(pwf
,
1011 isl_set_copy(pwqp
->p
[i
].set
),
1012 isl_qpolynomial_fold_alloc(type
,
1013 isl_qpolynomial_copy(pwqp
->p
[i
].qp
)));
1015 isl_pw_qpolynomial_free(pwqp
);
1020 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_add(
1021 __isl_take isl_pw_qpolynomial_fold
*pwf1
,
1022 __isl_take isl_pw_qpolynomial_fold
*pwf2
)
1024 return isl_pw_qpolynomial_fold_union_add_(pwf1
, pwf2
);
1027 /* Compare two quasi-polynomial reductions.
1029 * Return -1 if "fold1" is "smaller" than "fold2", 1 if "fold1" is "greater"
1030 * than "fold2" and 0 if they are equal.
1032 int isl_qpolynomial_fold_plain_cmp(__isl_keep isl_qpolynomial_fold
*fold1
,
1033 __isl_keep isl_qpolynomial_fold
*fold2
)
1044 if (fold1
->n
!= fold2
->n
)
1045 return fold1
->n
- fold2
->n
;
1047 for (i
= 0; i
< fold1
->n
; ++i
) {
1050 cmp
= isl_qpolynomial_plain_cmp(fold1
->qp
[i
], fold2
->qp
[i
]);
1058 int isl_qpolynomial_fold_plain_is_equal(__isl_keep isl_qpolynomial_fold
*fold1
,
1059 __isl_keep isl_qpolynomial_fold
*fold2
)
1063 if (!fold1
|| !fold2
)
1066 if (fold1
->n
!= fold2
->n
)
1069 /* We probably want to sort the qps first... */
1070 for (i
= 0; i
< fold1
->n
; ++i
) {
1071 int eq
= isl_qpolynomial_plain_is_equal(fold1
->qp
[i
], fold2
->qp
[i
]);
1079 __isl_give isl_val
*isl_qpolynomial_fold_eval(
1080 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_point
*pnt
)
1087 ctx
= isl_point_get_ctx(pnt
);
1088 isl_assert(pnt
->dim
->ctx
, isl_space_is_equal(pnt
->dim
, fold
->dim
), goto error
);
1089 isl_assert(pnt
->dim
->ctx
,
1090 fold
->type
== isl_fold_max
|| fold
->type
== isl_fold_min
,
1094 v
= isl_val_zero(ctx
);
1097 v
= isl_qpolynomial_eval(isl_qpolynomial_copy(fold
->qp
[0]),
1098 isl_point_copy(pnt
));
1099 for (i
= 1; i
< fold
->n
; ++i
) {
1101 v_i
= isl_qpolynomial_eval(
1102 isl_qpolynomial_copy(fold
->qp
[i
]),
1103 isl_point_copy(pnt
));
1104 if (fold
->type
== isl_fold_max
)
1105 v
= isl_val_max(v
, v_i
);
1107 v
= isl_val_min(v
, v_i
);
1110 isl_qpolynomial_fold_free(fold
);
1111 isl_point_free(pnt
);
1115 isl_qpolynomial_fold_free(fold
);
1116 isl_point_free(pnt
);
1120 size_t isl_pw_qpolynomial_fold_size(__isl_keep isl_pw_qpolynomial_fold
*pwf
)
1125 for (i
= 0; i
< pwf
->n
; ++i
)
1126 n
+= pwf
->p
[i
].fold
->n
;
1131 __isl_give isl_val
*isl_qpolynomial_fold_opt_on_domain(
1132 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_set
*set
, int max
)
1141 opt
= isl_val_zero(isl_set_get_ctx(set
));
1143 isl_qpolynomial_fold_free(fold
);
1147 opt
= isl_qpolynomial_opt_on_domain(isl_qpolynomial_copy(fold
->qp
[0]),
1148 isl_set_copy(set
), max
);
1149 for (i
= 1; i
< fold
->n
; ++i
) {
1151 opt_i
= isl_qpolynomial_opt_on_domain(
1152 isl_qpolynomial_copy(fold
->qp
[i
]),
1153 isl_set_copy(set
), max
);
1155 opt
= isl_val_max(opt
, opt_i
);
1157 opt
= isl_val_min(opt
, opt_i
);
1161 isl_qpolynomial_fold_free(fold
);
1166 isl_qpolynomial_fold_free(fold
);
1170 /* Check whether for each quasi-polynomial in "fold2" there is
1171 * a quasi-polynomial in "fold1" that dominates it on "set".
1173 static int qpolynomial_fold_covers_on_domain(__isl_keep isl_set
*set
,
1174 __isl_keep isl_qpolynomial_fold
*fold1
,
1175 __isl_keep isl_qpolynomial_fold
*fold2
)
1180 if (!set
|| !fold1
|| !fold2
)
1183 covers
= fold1
->type
== isl_fold_max
? 1 : -1;
1185 for (i
= 0; i
< fold2
->n
; ++i
) {
1186 for (j
= 0; j
< fold1
->n
; ++j
) {
1190 d
= isl_qpolynomial_sub(
1191 isl_qpolynomial_copy(fold1
->qp
[j
]),
1192 isl_qpolynomial_copy(fold2
->qp
[i
]));
1193 sgn
= isl_qpolynomial_sign(set
, d
);
1194 isl_qpolynomial_free(d
);
1205 /* Check whether "pwf1" dominated "pwf2", i.e., the domain of "pwf1" contains
1206 * that of "pwf2" and on each cell, the corresponding fold from pwf1 dominates
1209 int isl_pw_qpolynomial_fold_covers(__isl_keep isl_pw_qpolynomial_fold
*pwf1
,
1210 __isl_keep isl_pw_qpolynomial_fold
*pwf2
)
1213 isl_set
*dom1
, *dom2
;
1224 dom1
= isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf1
));
1225 dom2
= isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf2
));
1226 is_subset
= isl_set_is_subset(dom2
, dom1
);
1230 if (is_subset
< 0 || !is_subset
)
1233 for (i
= 0; i
< pwf2
->n
; ++i
) {
1234 for (j
= 0; j
< pwf1
->n
; ++j
) {
1239 common
= isl_set_intersect(isl_set_copy(pwf1
->p
[j
].set
),
1240 isl_set_copy(pwf2
->p
[i
].set
));
1241 is_empty
= isl_set_is_empty(common
);
1242 if (is_empty
< 0 || is_empty
) {
1243 isl_set_free(common
);
1248 covers
= qpolynomial_fold_covers_on_domain(common
,
1249 pwf1
->p
[j
].fold
, pwf2
->p
[i
].fold
);
1250 isl_set_free(common
);
1251 if (covers
< 0 || !covers
)
1259 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_morph_domain(
1260 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_morph
*morph
)
1265 if (!fold
|| !morph
)
1268 ctx
= fold
->dim
->ctx
;
1269 isl_assert(ctx
, isl_space_is_equal(fold
->dim
, morph
->dom
->dim
), goto error
);
1271 fold
= isl_qpolynomial_fold_cow(fold
);
1275 isl_space_free(fold
->dim
);
1276 fold
->dim
= isl_space_copy(morph
->ran
->dim
);
1280 for (i
= 0; i
< fold
->n
; ++i
) {
1281 fold
->qp
[i
] = isl_qpolynomial_morph_domain(fold
->qp
[i
],
1282 isl_morph_copy(morph
));
1287 isl_morph_free(morph
);
1291 isl_qpolynomial_fold_free(fold
);
1292 isl_morph_free(morph
);
1296 enum isl_fold
isl_qpolynomial_fold_get_type(__isl_keep isl_qpolynomial_fold
*fold
)
1299 return isl_fold_list
;
1303 enum isl_fold
isl_union_pw_qpolynomial_fold_get_type(
1304 __isl_keep isl_union_pw_qpolynomial_fold
*upwf
)
1307 return isl_fold_list
;
1311 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_lift(
1312 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_space
*dim
)
1319 if (isl_space_is_equal(fold
->dim
, dim
)) {
1320 isl_space_free(dim
);
1324 fold
= isl_qpolynomial_fold_cow(fold
);
1328 isl_space_free(fold
->dim
);
1329 fold
->dim
= isl_space_copy(dim
);
1333 for (i
= 0; i
< fold
->n
; ++i
) {
1334 fold
->qp
[i
] = isl_qpolynomial_lift(fold
->qp
[i
],
1335 isl_space_copy(dim
));
1340 isl_space_free(dim
);
1344 isl_qpolynomial_fold_free(fold
);
1345 isl_space_free(dim
);
1349 isl_stat
isl_qpolynomial_fold_foreach_qpolynomial(
1350 __isl_keep isl_qpolynomial_fold
*fold
,
1351 isl_stat (*fn
)(__isl_take isl_qpolynomial
*qp
, void *user
), void *user
)
1356 return isl_stat_error
;
1358 for (i
= 0; i
< fold
->n
; ++i
)
1359 if (fn(isl_qpolynomial_copy(fold
->qp
[i
]), user
) < 0)
1360 return isl_stat_error
;
1365 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_move_dims(
1366 __isl_take isl_qpolynomial_fold
*fold
,
1367 enum isl_dim_type dst_type
, unsigned dst_pos
,
1368 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
1375 fold
= isl_qpolynomial_fold_cow(fold
);
1379 fold
->dim
= isl_space_move_dims(fold
->dim
, dst_type
, dst_pos
,
1380 src_type
, src_pos
, n
);
1384 for (i
= 0; i
< fold
->n
; ++i
) {
1385 fold
->qp
[i
] = isl_qpolynomial_move_dims(fold
->qp
[i
],
1386 dst_type
, dst_pos
, src_type
, src_pos
, n
);
1393 isl_qpolynomial_fold_free(fold
);
1397 /* For each 0 <= i < "n", replace variable "first" + i of type "type"
1398 * in fold->qp[k] by subs[i].
1400 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_substitute(
1401 __isl_take isl_qpolynomial_fold
*fold
,
1402 enum isl_dim_type type
, unsigned first
, unsigned n
,
1403 __isl_keep isl_qpolynomial
**subs
)
1410 fold
= isl_qpolynomial_fold_cow(fold
);
1414 for (i
= 0; i
< fold
->n
; ++i
) {
1415 fold
->qp
[i
] = isl_qpolynomial_substitute(fold
->qp
[i
],
1416 type
, first
, n
, subs
);
1423 isl_qpolynomial_fold_free(fold
);
1427 static isl_stat
add_pwqp(__isl_take isl_pw_qpolynomial
*pwqp
, void *user
)
1430 isl_pw_qpolynomial_fold
*pwf
;
1431 isl_union_pw_qpolynomial_fold
**upwf
;
1432 struct isl_hash_table_entry
*entry
;
1434 upwf
= (isl_union_pw_qpolynomial_fold
**)user
;
1436 ctx
= pwqp
->dim
->ctx
;
1437 entry
= isl_union_pw_qpolynomial_fold_find_part_entry(*upwf
,
1442 pwf
= isl_pw_qpolynomial_fold_from_pw_qpolynomial((*upwf
)->type
, pwqp
);
1446 entry
->data
= isl_pw_qpolynomial_fold_add(entry
->data
, pwf
);
1448 return isl_stat_error
;
1449 if (isl_pw_qpolynomial_fold_is_zero(entry
->data
))
1450 *upwf
= isl_union_pw_qpolynomial_fold_remove_part_entry(
1456 isl_pw_qpolynomial_free(pwqp
);
1457 return isl_stat_error
;
1460 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial(
1461 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
1462 __isl_take isl_union_pw_qpolynomial
*upwqp
)
1464 upwf
= isl_union_pw_qpolynomial_fold_align_params(upwf
,
1465 isl_union_pw_qpolynomial_get_space(upwqp
));
1466 upwqp
= isl_union_pw_qpolynomial_align_params(upwqp
,
1467 isl_union_pw_qpolynomial_fold_get_space(upwf
));
1469 upwf
= isl_union_pw_qpolynomial_fold_cow(upwf
);
1470 if (!upwf
|| !upwqp
)
1473 if (isl_union_pw_qpolynomial_foreach_pw_qpolynomial(upwqp
, &add_pwqp
,
1477 isl_union_pw_qpolynomial_free(upwqp
);
1481 isl_union_pw_qpolynomial_fold_free(upwf
);
1482 isl_union_pw_qpolynomial_free(upwqp
);
1486 static isl_bool
join_compatible(__isl_keep isl_space
*space1
,
1487 __isl_keep isl_space
*space2
)
1490 m
= isl_space_match(space1
, isl_dim_param
, space2
, isl_dim_param
);
1493 return isl_space_tuple_is_equal(space1
, isl_dim_out
,
1494 space2
, isl_dim_in
);
1497 /* Compute the intersection of the range of the map and the domain
1498 * of the piecewise quasipolynomial reduction and then compute a bound
1499 * on the associated quasipolynomial reduction over all elements
1500 * in this intersection.
1502 * We first introduce some unconstrained dimensions in the
1503 * piecewise quasipolynomial, intersect the resulting domain
1504 * with the wrapped map and the compute the sum.
1506 __isl_give isl_pw_qpolynomial_fold
*isl_map_apply_pw_qpolynomial_fold(
1507 __isl_take isl_map
*map
, __isl_take isl_pw_qpolynomial_fold
*pwf
,
1517 ctx
= isl_map_get_ctx(map
);
1521 map_dim
= isl_map_get_space(map
);
1522 pwf_dim
= isl_pw_qpolynomial_fold_get_space(pwf
);
1523 ok
= join_compatible(map_dim
, pwf_dim
);
1524 isl_space_free(map_dim
);
1525 isl_space_free(pwf_dim
);
1529 isl_die(ctx
, isl_error_invalid
, "incompatible dimensions",
1532 n_in
= isl_map_dim(map
, isl_dim_in
);
1533 pwf
= isl_pw_qpolynomial_fold_insert_dims(pwf
, isl_dim_in
, 0, n_in
);
1535 dom
= isl_map_wrap(map
);
1536 pwf
= isl_pw_qpolynomial_fold_reset_domain_space(pwf
,
1537 isl_set_get_space(dom
));
1539 pwf
= isl_pw_qpolynomial_fold_intersect_domain(pwf
, dom
);
1540 pwf
= isl_pw_qpolynomial_fold_bound(pwf
, tight
);
1545 isl_pw_qpolynomial_fold_free(pwf
);
1549 __isl_give isl_pw_qpolynomial_fold
*isl_set_apply_pw_qpolynomial_fold(
1550 __isl_take isl_set
*set
, __isl_take isl_pw_qpolynomial_fold
*pwf
,
1553 return isl_map_apply_pw_qpolynomial_fold(set
, pwf
, tight
);
1556 struct isl_apply_fold_data
{
1557 isl_union_pw_qpolynomial_fold
*upwf
;
1558 isl_union_pw_qpolynomial_fold
*res
;
1563 static isl_stat
pw_qpolynomial_fold_apply(
1564 __isl_take isl_pw_qpolynomial_fold
*pwf
, void *user
)
1568 struct isl_apply_fold_data
*data
= user
;
1571 map_dim
= isl_map_get_space(data
->map
);
1572 pwf_dim
= isl_pw_qpolynomial_fold_get_space(pwf
);
1573 ok
= join_compatible(map_dim
, pwf_dim
);
1574 isl_space_free(map_dim
);
1575 isl_space_free(pwf_dim
);
1578 return isl_stat_error
;
1580 pwf
= isl_map_apply_pw_qpolynomial_fold(isl_map_copy(data
->map
),
1581 pwf
, data
->tight
? &data
->tight
: NULL
);
1582 data
->res
= isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(
1585 isl_pw_qpolynomial_fold_free(pwf
);
1590 static isl_stat
map_apply(__isl_take isl_map
*map
, void *user
)
1592 struct isl_apply_fold_data
*data
= user
;
1596 r
= isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(
1597 data
->upwf
, &pw_qpolynomial_fold_apply
, data
);
1603 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_map_apply_union_pw_qpolynomial_fold(
1604 __isl_take isl_union_map
*umap
,
1605 __isl_take isl_union_pw_qpolynomial_fold
*upwf
, int *tight
)
1609 struct isl_apply_fold_data data
;
1611 upwf
= isl_union_pw_qpolynomial_fold_align_params(upwf
,
1612 isl_union_map_get_space(umap
));
1613 umap
= isl_union_map_align_params(umap
,
1614 isl_union_pw_qpolynomial_fold_get_space(upwf
));
1617 data
.tight
= tight
? 1 : 0;
1618 dim
= isl_union_pw_qpolynomial_fold_get_space(upwf
);
1619 type
= isl_union_pw_qpolynomial_fold_get_type(upwf
);
1620 data
.res
= isl_union_pw_qpolynomial_fold_zero(dim
, type
);
1621 if (isl_union_map_foreach_map(umap
, &map_apply
, &data
) < 0)
1624 isl_union_map_free(umap
);
1625 isl_union_pw_qpolynomial_fold_free(upwf
);
1628 *tight
= data
.tight
;
1632 isl_union_map_free(umap
);
1633 isl_union_pw_qpolynomial_fold_free(upwf
);
1634 isl_union_pw_qpolynomial_fold_free(data
.res
);
1638 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_set_apply_union_pw_qpolynomial_fold(
1639 __isl_take isl_union_set
*uset
,
1640 __isl_take isl_union_pw_qpolynomial_fold
*upwf
, int *tight
)
1642 return isl_union_map_apply_union_pw_qpolynomial_fold(uset
, upwf
, tight
);
1645 /* Reorder the dimension of "fold" according to the given reordering.
1647 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_realign_domain(
1648 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_reordering
*r
)
1652 fold
= isl_qpolynomial_fold_cow(fold
);
1656 for (i
= 0; i
< fold
->n
; ++i
) {
1657 fold
->qp
[i
] = isl_qpolynomial_realign_domain(fold
->qp
[i
],
1658 isl_reordering_copy(r
));
1663 fold
= isl_qpolynomial_fold_reset_domain_space(fold
,
1664 isl_space_copy(r
->dim
));
1666 isl_reordering_free(r
);
1670 isl_qpolynomial_fold_free(fold
);
1671 isl_reordering_free(r
);
1675 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_mul_isl_int(
1676 __isl_take isl_qpolynomial_fold
*fold
, isl_int v
)
1680 if (isl_int_is_one(v
))
1682 if (fold
&& isl_int_is_zero(v
)) {
1683 isl_qpolynomial_fold
*zero
;
1684 isl_space
*dim
= isl_space_copy(fold
->dim
);
1685 zero
= isl_qpolynomial_fold_empty(fold
->type
, dim
);
1686 isl_qpolynomial_fold_free(fold
);
1690 fold
= isl_qpolynomial_fold_cow(fold
);
1694 if (isl_int_is_neg(v
))
1695 fold
->type
= isl_fold_type_negate(fold
->type
);
1696 for (i
= 0; i
< fold
->n
; ++i
) {
1697 fold
->qp
[i
] = isl_qpolynomial_mul_isl_int(fold
->qp
[i
], v
);
1704 isl_qpolynomial_fold_free(fold
);
1708 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale(
1709 __isl_take isl_qpolynomial_fold
*fold
, isl_int v
)
1711 return isl_qpolynomial_fold_mul_isl_int(fold
, v
);
1714 /* Multiply "fold" by "v".
1716 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale_val(
1717 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_val
*v
)
1724 if (isl_val_is_one(v
)) {
1728 if (isl_val_is_zero(v
)) {
1729 isl_qpolynomial_fold
*zero
;
1730 isl_space
*space
= isl_qpolynomial_fold_get_domain_space(fold
);
1731 zero
= isl_qpolynomial_fold_empty(fold
->type
, space
);
1732 isl_qpolynomial_fold_free(fold
);
1736 if (!isl_val_is_rat(v
))
1737 isl_die(isl_qpolynomial_fold_get_ctx(fold
), isl_error_invalid
,
1738 "expecting rational factor", goto error
);
1740 fold
= isl_qpolynomial_fold_cow(fold
);
1744 if (isl_val_is_neg(v
))
1745 fold
->type
= isl_fold_type_negate(fold
->type
);
1746 for (i
= 0; i
< fold
->n
; ++i
) {
1747 fold
->qp
[i
] = isl_qpolynomial_scale_val(fold
->qp
[i
],
1757 isl_qpolynomial_fold_free(fold
);
1761 /* Divide "fold" by "v".
1763 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale_down_val(
1764 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_val
*v
)
1769 if (isl_val_is_one(v
)) {
1773 if (!isl_val_is_rat(v
))
1774 isl_die(isl_qpolynomial_fold_get_ctx(fold
), isl_error_invalid
,
1775 "expecting rational factor", goto error
);
1776 if (isl_val_is_zero(v
))
1777 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
1778 "cannot scale down by zero", goto error
);
1780 return isl_qpolynomial_fold_scale_val(fold
, isl_val_inv(v
));
1783 isl_qpolynomial_fold_free(fold
);