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
);
658 #define PW isl_pw_qpolynomial_fold
660 #define EL isl_qpolynomial_fold
662 #define EL_IS_ZERO is_empty
666 #define IS_ZERO is_zero
669 #undef DEFAULT_IS_ZERO
670 #define DEFAULT_IS_ZERO 1
676 #include <isl_pw_templ.c>
679 #define UNION isl_union_pw_qpolynomial_fold
681 #define PART isl_pw_qpolynomial_fold
683 #define PARTS pw_qpolynomial_fold
687 #include <isl_union_templ.c>
689 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_empty(enum isl_fold type
,
690 __isl_take isl_space
*dim
)
692 return qpolynomial_fold_alloc(type
, dim
, 0);
695 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_alloc(
696 enum isl_fold type
, __isl_take isl_qpolynomial
*qp
)
698 isl_qpolynomial_fold
*fold
;
703 fold
= qpolynomial_fold_alloc(type
, isl_space_copy(qp
->dim
), 1);
712 isl_qpolynomial_fold_free(fold
);
713 isl_qpolynomial_free(qp
);
717 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_copy(
718 __isl_keep isl_qpolynomial_fold
*fold
)
727 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_dup(
728 __isl_keep isl_qpolynomial_fold
*fold
)
731 isl_qpolynomial_fold
*dup
;
735 dup
= qpolynomial_fold_alloc(fold
->type
,
736 isl_space_copy(fold
->dim
), fold
->n
);
741 for (i
= 0; i
< fold
->n
; ++i
) {
742 dup
->qp
[i
] = isl_qpolynomial_copy(fold
->qp
[i
]);
749 isl_qpolynomial_fold_free(dup
);
753 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_cow(
754 __isl_take isl_qpolynomial_fold
*fold
)
762 return isl_qpolynomial_fold_dup(fold
);
765 void isl_qpolynomial_fold_free(__isl_take isl_qpolynomial_fold
*fold
)
774 for (i
= 0; i
< fold
->n
; ++i
)
775 isl_qpolynomial_free(fold
->qp
[i
]);
776 isl_space_free(fold
->dim
);
780 int isl_qpolynomial_fold_is_empty(__isl_keep isl_qpolynomial_fold
*fold
)
788 /* Does "fold" represent max(NaN) or min(NaN)?
790 isl_bool
isl_qpolynomial_fold_is_nan(__isl_keep isl_qpolynomial_fold
*fold
)
793 return isl_bool_error
;
795 return isl_bool_false
;
796 return isl_qpolynomial_is_nan(fold
->qp
[0]);
799 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_fold(
800 __isl_take isl_qpolynomial_fold
*fold1
,
801 __isl_take isl_qpolynomial_fold
*fold2
)
804 struct isl_qpolynomial_fold
*res
= NULL
;
806 if (!fold1
|| !fold2
)
809 isl_assert(fold1
->dim
->ctx
, fold1
->type
== fold2
->type
, goto error
);
810 isl_assert(fold1
->dim
->ctx
, isl_space_is_equal(fold1
->dim
, fold2
->dim
),
813 if (isl_qpolynomial_fold_is_empty(fold1
)) {
814 isl_qpolynomial_fold_free(fold1
);
818 if (isl_qpolynomial_fold_is_empty(fold2
)) {
819 isl_qpolynomial_fold_free(fold2
);
823 res
= qpolynomial_fold_alloc(fold1
->type
, isl_space_copy(fold1
->dim
),
824 fold1
->n
+ fold2
->n
);
828 for (i
= 0; i
< fold1
->n
; ++i
) {
829 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold1
->qp
[i
]);
830 if (!res
->qp
[res
->n
])
835 for (i
= 0; i
< fold2
->n
; ++i
) {
836 res
->qp
[res
->n
] = isl_qpolynomial_copy(fold2
->qp
[i
]);
837 if (!res
->qp
[res
->n
])
842 isl_qpolynomial_fold_free(fold1
);
843 isl_qpolynomial_fold_free(fold2
);
847 isl_qpolynomial_fold_free(res
);
848 isl_qpolynomial_fold_free(fold1
);
849 isl_qpolynomial_fold_free(fold2
);
853 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_fold(
854 __isl_take isl_pw_qpolynomial_fold
*pw1
,
855 __isl_take isl_pw_qpolynomial_fold
*pw2
)
858 struct isl_pw_qpolynomial_fold
*res
;
864 isl_assert(pw1
->dim
->ctx
, isl_space_is_equal(pw1
->dim
, pw2
->dim
), goto error
);
866 if (isl_pw_qpolynomial_fold_is_zero(pw1
)) {
867 isl_pw_qpolynomial_fold_free(pw1
);
871 if (isl_pw_qpolynomial_fold_is_zero(pw2
)) {
872 isl_pw_qpolynomial_fold_free(pw2
);
876 if (pw1
->type
!= pw2
->type
)
877 isl_die(pw1
->dim
->ctx
, isl_error_invalid
,
878 "fold types don't match", goto error
);
880 n
= (pw1
->n
+ 1) * (pw2
->n
+ 1);
881 res
= isl_pw_qpolynomial_fold_alloc_size(isl_space_copy(pw1
->dim
),
884 for (i
= 0; i
< pw1
->n
; ++i
) {
885 set
= isl_set_copy(pw1
->p
[i
].set
);
886 for (j
= 0; j
< pw2
->n
; ++j
) {
887 struct isl_set
*common
;
888 isl_qpolynomial_fold
*sum
;
889 set
= isl_set_subtract(set
,
890 isl_set_copy(pw2
->p
[j
].set
));
891 common
= isl_set_intersect(isl_set_copy(pw1
->p
[i
].set
),
892 isl_set_copy(pw2
->p
[j
].set
));
893 if (isl_set_plain_is_empty(common
)) {
894 isl_set_free(common
);
898 sum
= isl_qpolynomial_fold_fold_on_domain(common
,
899 isl_qpolynomial_fold_copy(pw1
->p
[i
].fold
),
900 isl_qpolynomial_fold_copy(pw2
->p
[j
].fold
));
902 res
= isl_pw_qpolynomial_fold_add_piece(res
, common
, sum
);
904 res
= isl_pw_qpolynomial_fold_add_piece(res
, set
,
905 isl_qpolynomial_fold_copy(pw1
->p
[i
].fold
));
908 for (j
= 0; j
< pw2
->n
; ++j
) {
909 set
= isl_set_copy(pw2
->p
[j
].set
);
910 for (i
= 0; i
< pw1
->n
; ++i
)
911 set
= isl_set_subtract(set
, isl_set_copy(pw1
->p
[i
].set
));
912 res
= isl_pw_qpolynomial_fold_add_piece(res
, set
,
913 isl_qpolynomial_fold_copy(pw2
->p
[j
].fold
));
916 isl_pw_qpolynomial_fold_free(pw1
);
917 isl_pw_qpolynomial_fold_free(pw2
);
921 isl_pw_qpolynomial_fold_free(pw1
);
922 isl_pw_qpolynomial_fold_free(pw2
);
926 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(
927 __isl_take isl_union_pw_qpolynomial_fold
*u
,
928 __isl_take isl_pw_qpolynomial_fold
*part
)
930 struct isl_hash_table_entry
*entry
;
932 u
= isl_union_pw_qpolynomial_fold_cow(u
);
937 isl_assert(u
->space
->ctx
,
938 isl_space_match(part
->dim
, isl_dim_param
, u
->space
, isl_dim_param
),
941 entry
= isl_union_pw_qpolynomial_fold_find_part_entry(u
, part
->dim
, 1);
948 entry
->data
= isl_pw_qpolynomial_fold_fold(entry
->data
,
949 isl_pw_qpolynomial_fold_copy(part
));
952 isl_pw_qpolynomial_fold_free(part
);
957 isl_pw_qpolynomial_fold_free(part
);
958 isl_union_pw_qpolynomial_fold_free(u
);
962 static isl_stat
fold_part(__isl_take isl_pw_qpolynomial_fold
*part
, void *user
)
964 isl_union_pw_qpolynomial_fold
**u
;
965 u
= (isl_union_pw_qpolynomial_fold
**)user
;
967 *u
= isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(*u
, part
);
972 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_fold(
973 __isl_take isl_union_pw_qpolynomial_fold
*u1
,
974 __isl_take isl_union_pw_qpolynomial_fold
*u2
)
976 u1
= isl_union_pw_qpolynomial_fold_cow(u1
);
981 if (isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(u2
,
982 &fold_part
, &u1
) < 0)
985 isl_union_pw_qpolynomial_fold_free(u2
);
989 isl_union_pw_qpolynomial_fold_free(u1
);
990 isl_union_pw_qpolynomial_fold_free(u2
);
994 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_from_pw_qpolynomial(
995 enum isl_fold type
, __isl_take isl_pw_qpolynomial
*pwqp
)
998 isl_pw_qpolynomial_fold
*pwf
;
1003 pwf
= isl_pw_qpolynomial_fold_alloc_size(isl_space_copy(pwqp
->dim
),
1006 for (i
= 0; i
< pwqp
->n
; ++i
)
1007 pwf
= isl_pw_qpolynomial_fold_add_piece(pwf
,
1008 isl_set_copy(pwqp
->p
[i
].set
),
1009 isl_qpolynomial_fold_alloc(type
,
1010 isl_qpolynomial_copy(pwqp
->p
[i
].qp
)));
1012 isl_pw_qpolynomial_free(pwqp
);
1017 __isl_give isl_pw_qpolynomial_fold
*isl_pw_qpolynomial_fold_add(
1018 __isl_take isl_pw_qpolynomial_fold
*pwf1
,
1019 __isl_take isl_pw_qpolynomial_fold
*pwf2
)
1021 return isl_pw_qpolynomial_fold_union_add_(pwf1
, pwf2
);
1024 int isl_qpolynomial_fold_plain_is_equal(__isl_keep isl_qpolynomial_fold
*fold1
,
1025 __isl_keep isl_qpolynomial_fold
*fold2
)
1029 if (!fold1
|| !fold2
)
1032 if (fold1
->n
!= fold2
->n
)
1035 /* We probably want to sort the qps first... */
1036 for (i
= 0; i
< fold1
->n
; ++i
) {
1037 int eq
= isl_qpolynomial_plain_is_equal(fold1
->qp
[i
], fold2
->qp
[i
]);
1045 __isl_give isl_val
*isl_qpolynomial_fold_eval(
1046 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_point
*pnt
)
1053 ctx
= isl_point_get_ctx(pnt
);
1054 isl_assert(pnt
->dim
->ctx
, isl_space_is_equal(pnt
->dim
, fold
->dim
), goto error
);
1055 isl_assert(pnt
->dim
->ctx
,
1056 fold
->type
== isl_fold_max
|| fold
->type
== isl_fold_min
,
1060 v
= isl_val_zero(ctx
);
1063 v
= isl_qpolynomial_eval(isl_qpolynomial_copy(fold
->qp
[0]),
1064 isl_point_copy(pnt
));
1065 for (i
= 1; i
< fold
->n
; ++i
) {
1067 v_i
= isl_qpolynomial_eval(
1068 isl_qpolynomial_copy(fold
->qp
[i
]),
1069 isl_point_copy(pnt
));
1070 if (fold
->type
== isl_fold_max
)
1071 v
= isl_val_max(v
, v_i
);
1073 v
= isl_val_min(v
, v_i
);
1076 isl_qpolynomial_fold_free(fold
);
1077 isl_point_free(pnt
);
1081 isl_qpolynomial_fold_free(fold
);
1082 isl_point_free(pnt
);
1086 size_t isl_pw_qpolynomial_fold_size(__isl_keep isl_pw_qpolynomial_fold
*pwf
)
1091 for (i
= 0; i
< pwf
->n
; ++i
)
1092 n
+= pwf
->p
[i
].fold
->n
;
1097 __isl_give isl_val
*isl_qpolynomial_fold_opt_on_domain(
1098 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_set
*set
, int max
)
1107 opt
= isl_val_zero(isl_set_get_ctx(set
));
1109 isl_qpolynomial_fold_free(fold
);
1113 opt
= isl_qpolynomial_opt_on_domain(isl_qpolynomial_copy(fold
->qp
[0]),
1114 isl_set_copy(set
), max
);
1115 for (i
= 1; i
< fold
->n
; ++i
) {
1117 opt_i
= isl_qpolynomial_opt_on_domain(
1118 isl_qpolynomial_copy(fold
->qp
[i
]),
1119 isl_set_copy(set
), max
);
1121 opt
= isl_val_max(opt
, opt_i
);
1123 opt
= isl_val_min(opt
, opt_i
);
1127 isl_qpolynomial_fold_free(fold
);
1132 isl_qpolynomial_fold_free(fold
);
1136 /* Check whether for each quasi-polynomial in "fold2" there is
1137 * a quasi-polynomial in "fold1" that dominates it on "set".
1139 static int qpolynomial_fold_covers_on_domain(__isl_keep isl_set
*set
,
1140 __isl_keep isl_qpolynomial_fold
*fold1
,
1141 __isl_keep isl_qpolynomial_fold
*fold2
)
1146 if (!set
|| !fold1
|| !fold2
)
1149 covers
= fold1
->type
== isl_fold_max
? 1 : -1;
1151 for (i
= 0; i
< fold2
->n
; ++i
) {
1152 for (j
= 0; j
< fold1
->n
; ++j
) {
1156 d
= isl_qpolynomial_sub(
1157 isl_qpolynomial_copy(fold1
->qp
[j
]),
1158 isl_qpolynomial_copy(fold2
->qp
[i
]));
1159 sgn
= isl_qpolynomial_sign(set
, d
);
1160 isl_qpolynomial_free(d
);
1171 /* Check whether "pwf1" dominated "pwf2", i.e., the domain of "pwf1" contains
1172 * that of "pwf2" and on each cell, the corresponding fold from pwf1 dominates
1175 int isl_pw_qpolynomial_fold_covers(__isl_keep isl_pw_qpolynomial_fold
*pwf1
,
1176 __isl_keep isl_pw_qpolynomial_fold
*pwf2
)
1179 isl_set
*dom1
, *dom2
;
1190 dom1
= isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf1
));
1191 dom2
= isl_pw_qpolynomial_fold_domain(isl_pw_qpolynomial_fold_copy(pwf2
));
1192 is_subset
= isl_set_is_subset(dom2
, dom1
);
1196 if (is_subset
< 0 || !is_subset
)
1199 for (i
= 0; i
< pwf2
->n
; ++i
) {
1200 for (j
= 0; j
< pwf1
->n
; ++j
) {
1205 common
= isl_set_intersect(isl_set_copy(pwf1
->p
[j
].set
),
1206 isl_set_copy(pwf2
->p
[i
].set
));
1207 is_empty
= isl_set_is_empty(common
);
1208 if (is_empty
< 0 || is_empty
) {
1209 isl_set_free(common
);
1214 covers
= qpolynomial_fold_covers_on_domain(common
,
1215 pwf1
->p
[j
].fold
, pwf2
->p
[i
].fold
);
1216 isl_set_free(common
);
1217 if (covers
< 0 || !covers
)
1225 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_morph_domain(
1226 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_morph
*morph
)
1231 if (!fold
|| !morph
)
1234 ctx
= fold
->dim
->ctx
;
1235 isl_assert(ctx
, isl_space_is_equal(fold
->dim
, morph
->dom
->dim
), goto error
);
1237 fold
= isl_qpolynomial_fold_cow(fold
);
1241 isl_space_free(fold
->dim
);
1242 fold
->dim
= isl_space_copy(morph
->ran
->dim
);
1246 for (i
= 0; i
< fold
->n
; ++i
) {
1247 fold
->qp
[i
] = isl_qpolynomial_morph_domain(fold
->qp
[i
],
1248 isl_morph_copy(morph
));
1253 isl_morph_free(morph
);
1257 isl_qpolynomial_fold_free(fold
);
1258 isl_morph_free(morph
);
1262 enum isl_fold
isl_qpolynomial_fold_get_type(__isl_keep isl_qpolynomial_fold
*fold
)
1265 return isl_fold_list
;
1269 enum isl_fold
isl_union_pw_qpolynomial_fold_get_type(
1270 __isl_keep isl_union_pw_qpolynomial_fold
*upwf
)
1273 return isl_fold_list
;
1277 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_lift(
1278 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_space
*dim
)
1285 if (isl_space_is_equal(fold
->dim
, dim
)) {
1286 isl_space_free(dim
);
1290 fold
= isl_qpolynomial_fold_cow(fold
);
1294 isl_space_free(fold
->dim
);
1295 fold
->dim
= isl_space_copy(dim
);
1299 for (i
= 0; i
< fold
->n
; ++i
) {
1300 fold
->qp
[i
] = isl_qpolynomial_lift(fold
->qp
[i
],
1301 isl_space_copy(dim
));
1306 isl_space_free(dim
);
1310 isl_qpolynomial_fold_free(fold
);
1311 isl_space_free(dim
);
1315 isl_stat
isl_qpolynomial_fold_foreach_qpolynomial(
1316 __isl_keep isl_qpolynomial_fold
*fold
,
1317 isl_stat (*fn
)(__isl_take isl_qpolynomial
*qp
, void *user
), void *user
)
1322 return isl_stat_error
;
1324 for (i
= 0; i
< fold
->n
; ++i
)
1325 if (fn(isl_qpolynomial_copy(fold
->qp
[i
]), user
) < 0)
1326 return isl_stat_error
;
1331 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_move_dims(
1332 __isl_take isl_qpolynomial_fold
*fold
,
1333 enum isl_dim_type dst_type
, unsigned dst_pos
,
1334 enum isl_dim_type src_type
, unsigned src_pos
, unsigned n
)
1341 fold
= isl_qpolynomial_fold_cow(fold
);
1345 fold
->dim
= isl_space_move_dims(fold
->dim
, dst_type
, dst_pos
,
1346 src_type
, src_pos
, n
);
1350 for (i
= 0; i
< fold
->n
; ++i
) {
1351 fold
->qp
[i
] = isl_qpolynomial_move_dims(fold
->qp
[i
],
1352 dst_type
, dst_pos
, src_type
, src_pos
, n
);
1359 isl_qpolynomial_fold_free(fold
);
1363 /* For each 0 <= i < "n", replace variable "first" + i of type "type"
1364 * in fold->qp[k] by subs[i].
1366 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_substitute(
1367 __isl_take isl_qpolynomial_fold
*fold
,
1368 enum isl_dim_type type
, unsigned first
, unsigned n
,
1369 __isl_keep isl_qpolynomial
**subs
)
1376 fold
= isl_qpolynomial_fold_cow(fold
);
1380 for (i
= 0; i
< fold
->n
; ++i
) {
1381 fold
->qp
[i
] = isl_qpolynomial_substitute(fold
->qp
[i
],
1382 type
, first
, n
, subs
);
1389 isl_qpolynomial_fold_free(fold
);
1393 static isl_stat
add_pwqp(__isl_take isl_pw_qpolynomial
*pwqp
, void *user
)
1396 isl_pw_qpolynomial_fold
*pwf
;
1397 isl_union_pw_qpolynomial_fold
**upwf
;
1398 struct isl_hash_table_entry
*entry
;
1400 upwf
= (isl_union_pw_qpolynomial_fold
**)user
;
1402 ctx
= pwqp
->dim
->ctx
;
1403 entry
= isl_union_pw_qpolynomial_fold_find_part_entry(*upwf
,
1408 pwf
= isl_pw_qpolynomial_fold_from_pw_qpolynomial((*upwf
)->type
, pwqp
);
1412 entry
->data
= isl_pw_qpolynomial_fold_add(entry
->data
, pwf
);
1414 return isl_stat_error
;
1415 if (isl_pw_qpolynomial_fold_is_zero(entry
->data
)) {
1416 isl_pw_qpolynomial_fold_free(entry
->data
);
1417 isl_hash_table_remove(ctx
, &(*upwf
)->table
, entry
);
1423 isl_pw_qpolynomial_free(pwqp
);
1424 return isl_stat_error
;
1427 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_pw_qpolynomial_fold_add_union_pw_qpolynomial(
1428 __isl_take isl_union_pw_qpolynomial_fold
*upwf
,
1429 __isl_take isl_union_pw_qpolynomial
*upwqp
)
1431 upwf
= isl_union_pw_qpolynomial_fold_align_params(upwf
,
1432 isl_union_pw_qpolynomial_get_space(upwqp
));
1433 upwqp
= isl_union_pw_qpolynomial_align_params(upwqp
,
1434 isl_union_pw_qpolynomial_fold_get_space(upwf
));
1436 upwf
= isl_union_pw_qpolynomial_fold_cow(upwf
);
1437 if (!upwf
|| !upwqp
)
1440 if (isl_union_pw_qpolynomial_foreach_pw_qpolynomial(upwqp
, &add_pwqp
,
1444 isl_union_pw_qpolynomial_free(upwqp
);
1448 isl_union_pw_qpolynomial_fold_free(upwf
);
1449 isl_union_pw_qpolynomial_free(upwqp
);
1453 static int join_compatible(__isl_keep isl_space
*dim1
, __isl_keep isl_space
*dim2
)
1456 m
= isl_space_match(dim1
, isl_dim_param
, dim2
, isl_dim_param
);
1459 return isl_space_tuple_is_equal(dim1
, isl_dim_out
, dim2
, isl_dim_in
);
1462 /* Compute the intersection of the range of the map and the domain
1463 * of the piecewise quasipolynomial reduction and then compute a bound
1464 * on the associated quasipolynomial reduction over all elements
1465 * in this intersection.
1467 * We first introduce some unconstrained dimensions in the
1468 * piecewise quasipolynomial, intersect the resulting domain
1469 * with the wrapped map and the compute the sum.
1471 __isl_give isl_pw_qpolynomial_fold
*isl_map_apply_pw_qpolynomial_fold(
1472 __isl_take isl_map
*map
, __isl_take isl_pw_qpolynomial_fold
*pwf
,
1482 ctx
= isl_map_get_ctx(map
);
1486 map_dim
= isl_map_get_space(map
);
1487 pwf_dim
= isl_pw_qpolynomial_fold_get_space(pwf
);
1488 ok
= join_compatible(map_dim
, pwf_dim
);
1489 isl_space_free(map_dim
);
1490 isl_space_free(pwf_dim
);
1492 isl_die(ctx
, isl_error_invalid
, "incompatible dimensions",
1495 n_in
= isl_map_dim(map
, isl_dim_in
);
1496 pwf
= isl_pw_qpolynomial_fold_insert_dims(pwf
, isl_dim_in
, 0, n_in
);
1498 dom
= isl_map_wrap(map
);
1499 pwf
= isl_pw_qpolynomial_fold_reset_domain_space(pwf
,
1500 isl_set_get_space(dom
));
1502 pwf
= isl_pw_qpolynomial_fold_intersect_domain(pwf
, dom
);
1503 pwf
= isl_pw_qpolynomial_fold_bound(pwf
, tight
);
1508 isl_pw_qpolynomial_fold_free(pwf
);
1512 __isl_give isl_pw_qpolynomial_fold
*isl_set_apply_pw_qpolynomial_fold(
1513 __isl_take isl_set
*set
, __isl_take isl_pw_qpolynomial_fold
*pwf
,
1516 return isl_map_apply_pw_qpolynomial_fold(set
, pwf
, tight
);
1519 struct isl_apply_fold_data
{
1520 isl_union_pw_qpolynomial_fold
*upwf
;
1521 isl_union_pw_qpolynomial_fold
*res
;
1526 static isl_stat
pw_qpolynomial_fold_apply(
1527 __isl_take isl_pw_qpolynomial_fold
*pwf
, void *user
)
1531 struct isl_apply_fold_data
*data
= user
;
1534 map_dim
= isl_map_get_space(data
->map
);
1535 pwf_dim
= isl_pw_qpolynomial_fold_get_space(pwf
);
1536 ok
= join_compatible(map_dim
, pwf_dim
);
1537 isl_space_free(map_dim
);
1538 isl_space_free(pwf_dim
);
1541 pwf
= isl_map_apply_pw_qpolynomial_fold(isl_map_copy(data
->map
),
1542 pwf
, data
->tight
? &data
->tight
: NULL
);
1543 data
->res
= isl_union_pw_qpolynomial_fold_fold_pw_qpolynomial_fold(
1546 isl_pw_qpolynomial_fold_free(pwf
);
1551 static isl_stat
map_apply(__isl_take isl_map
*map
, void *user
)
1553 struct isl_apply_fold_data
*data
= user
;
1557 r
= isl_union_pw_qpolynomial_fold_foreach_pw_qpolynomial_fold(
1558 data
->upwf
, &pw_qpolynomial_fold_apply
, data
);
1564 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_map_apply_union_pw_qpolynomial_fold(
1565 __isl_take isl_union_map
*umap
,
1566 __isl_take isl_union_pw_qpolynomial_fold
*upwf
, int *tight
)
1570 struct isl_apply_fold_data data
;
1572 upwf
= isl_union_pw_qpolynomial_fold_align_params(upwf
,
1573 isl_union_map_get_space(umap
));
1574 umap
= isl_union_map_align_params(umap
,
1575 isl_union_pw_qpolynomial_fold_get_space(upwf
));
1578 data
.tight
= tight
? 1 : 0;
1579 dim
= isl_union_pw_qpolynomial_fold_get_space(upwf
);
1580 type
= isl_union_pw_qpolynomial_fold_get_type(upwf
);
1581 data
.res
= isl_union_pw_qpolynomial_fold_zero(dim
, type
);
1582 if (isl_union_map_foreach_map(umap
, &map_apply
, &data
) < 0)
1585 isl_union_map_free(umap
);
1586 isl_union_pw_qpolynomial_fold_free(upwf
);
1589 *tight
= data
.tight
;
1593 isl_union_map_free(umap
);
1594 isl_union_pw_qpolynomial_fold_free(upwf
);
1595 isl_union_pw_qpolynomial_fold_free(data
.res
);
1599 __isl_give isl_union_pw_qpolynomial_fold
*isl_union_set_apply_union_pw_qpolynomial_fold(
1600 __isl_take isl_union_set
*uset
,
1601 __isl_take isl_union_pw_qpolynomial_fold
*upwf
, int *tight
)
1603 return isl_union_map_apply_union_pw_qpolynomial_fold(uset
, upwf
, tight
);
1606 /* Reorder the dimension of "fold" according to the given reordering.
1608 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_realign_domain(
1609 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_reordering
*r
)
1613 fold
= isl_qpolynomial_fold_cow(fold
);
1617 for (i
= 0; i
< fold
->n
; ++i
) {
1618 fold
->qp
[i
] = isl_qpolynomial_realign_domain(fold
->qp
[i
],
1619 isl_reordering_copy(r
));
1624 fold
= isl_qpolynomial_fold_reset_domain_space(fold
,
1625 isl_space_copy(r
->dim
));
1627 isl_reordering_free(r
);
1631 isl_qpolynomial_fold_free(fold
);
1632 isl_reordering_free(r
);
1636 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_mul_isl_int(
1637 __isl_take isl_qpolynomial_fold
*fold
, isl_int v
)
1641 if (isl_int_is_one(v
))
1643 if (fold
&& isl_int_is_zero(v
)) {
1644 isl_qpolynomial_fold
*zero
;
1645 isl_space
*dim
= isl_space_copy(fold
->dim
);
1646 zero
= isl_qpolynomial_fold_empty(fold
->type
, dim
);
1647 isl_qpolynomial_fold_free(fold
);
1651 fold
= isl_qpolynomial_fold_cow(fold
);
1655 if (isl_int_is_neg(v
))
1656 fold
->type
= isl_fold_type_negate(fold
->type
);
1657 for (i
= 0; i
< fold
->n
; ++i
) {
1658 fold
->qp
[i
] = isl_qpolynomial_mul_isl_int(fold
->qp
[i
], v
);
1665 isl_qpolynomial_fold_free(fold
);
1669 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale(
1670 __isl_take isl_qpolynomial_fold
*fold
, isl_int v
)
1672 return isl_qpolynomial_fold_mul_isl_int(fold
, v
);
1675 /* Multiply "fold" by "v".
1677 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale_val(
1678 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_val
*v
)
1685 if (isl_val_is_one(v
)) {
1689 if (isl_val_is_zero(v
)) {
1690 isl_qpolynomial_fold
*zero
;
1691 isl_space
*space
= isl_qpolynomial_fold_get_domain_space(fold
);
1692 zero
= isl_qpolynomial_fold_empty(fold
->type
, space
);
1693 isl_qpolynomial_fold_free(fold
);
1697 if (!isl_val_is_rat(v
))
1698 isl_die(isl_qpolynomial_fold_get_ctx(fold
), isl_error_invalid
,
1699 "expecting rational factor", goto error
);
1701 fold
= isl_qpolynomial_fold_cow(fold
);
1705 if (isl_val_is_neg(v
))
1706 fold
->type
= isl_fold_type_negate(fold
->type
);
1707 for (i
= 0; i
< fold
->n
; ++i
) {
1708 fold
->qp
[i
] = isl_qpolynomial_scale_val(fold
->qp
[i
],
1718 isl_qpolynomial_fold_free(fold
);
1722 /* Divide "fold" by "v".
1724 __isl_give isl_qpolynomial_fold
*isl_qpolynomial_fold_scale_down_val(
1725 __isl_take isl_qpolynomial_fold
*fold
, __isl_take isl_val
*v
)
1730 if (isl_val_is_one(v
)) {
1734 if (!isl_val_is_rat(v
))
1735 isl_die(isl_qpolynomial_fold_get_ctx(fold
), isl_error_invalid
,
1736 "expecting rational factor", goto error
);
1737 if (isl_val_is_zero(v
))
1738 isl_die(isl_val_get_ctx(v
), isl_error_invalid
,
1739 "cannot scale down by zero", goto error
);
1741 return isl_qpolynomial_fold_scale_val(fold
, isl_val_inv(v
));
1744 isl_qpolynomial_fold_free(fold
);