2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
10 #include <isl_ctx_private.h>
11 #include <isl_map_private.h>
13 #include <isl/union_set.h>
14 #include "isl_sample.h"
16 #include "isl_equalities.h"
17 #include <isl_aff_private.h>
18 #include <isl_local_space_private.h>
19 #include <isl_mat_private.h>
20 #include <isl_val_private.h>
21 #include <isl_vec_private.h>
22 #include <isl_lp_private.h>
23 #include <isl_ilp_private.h>
25 /* Given a basic set "bset", construct a basic set U such that for
26 * each element x in U, the whole unit box positioned at x is inside
27 * the given basic set.
28 * Note that U may not contain all points that satisfy this property.
30 * We simply add the sum of all negative coefficients to the constant
31 * term. This ensures that if x satisfies the resulting constraints,
32 * then x plus any sum of unit vectors satisfies the original constraints.
34 static __isl_give isl_basic_set
*unit_box_base_points(
35 __isl_take isl_basic_set
*bset
)
38 struct isl_basic_set
*unit_box
= NULL
;
44 if (bset
->n_eq
!= 0) {
45 isl_space
*space
= isl_basic_set_get_space(bset
);
46 isl_basic_set_free(bset
);
47 return isl_basic_set_empty(space
);
50 total
= isl_basic_set_dim(bset
, isl_dim_all
);
53 unit_box
= isl_basic_set_alloc_space(isl_basic_set_get_space(bset
),
56 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
57 k
= isl_basic_set_alloc_inequality(unit_box
);
60 isl_seq_cpy(unit_box
->ineq
[k
], bset
->ineq
[i
], 1 + total
);
61 for (j
= 0; j
< total
; ++j
) {
62 if (isl_int_is_nonneg(unit_box
->ineq
[k
][1 + j
]))
64 isl_int_add(unit_box
->ineq
[k
][0],
65 unit_box
->ineq
[k
][0], unit_box
->ineq
[k
][1 + j
]);
69 isl_basic_set_free(bset
);
72 isl_basic_set_free(bset
);
73 isl_basic_set_free(unit_box
);
77 /* Find an integer point in "bset", preferably one that is
78 * close to minimizing "f".
80 * We first check if we can easily put unit boxes inside bset.
81 * If so, we take the best base point of any of the unit boxes we can find
82 * and round it up to the nearest integer.
83 * If not, we simply pick any integer point in "bset".
85 static __isl_give isl_vec
*initial_solution(__isl_keep isl_basic_set
*bset
,
88 enum isl_lp_result res
;
89 struct isl_basic_set
*unit_box
;
92 unit_box
= unit_box_base_points(isl_basic_set_copy(bset
));
94 res
= isl_basic_set_solve_lp(unit_box
, 0, f
, bset
->ctx
->one
,
96 if (res
== isl_lp_ok
) {
97 isl_basic_set_free(unit_box
);
98 return isl_vec_ceil(sol
);
101 isl_basic_set_free(unit_box
);
103 return isl_basic_set_sample_vec(isl_basic_set_copy(bset
));
106 /* Restrict "bset" to those points with values for f in the interval [l, u].
108 static __isl_give isl_basic_set
*add_bounds(__isl_take isl_basic_set
*bset
,
109 isl_int
*f
, isl_int l
, isl_int u
)
114 total
= isl_basic_set_dim(bset
, isl_dim_all
);
116 return isl_basic_set_free(bset
);
117 bset
= isl_basic_set_extend_constraints(bset
, 0, 2);
119 k
= isl_basic_set_alloc_inequality(bset
);
122 isl_seq_cpy(bset
->ineq
[k
], f
, 1 + total
);
123 isl_int_sub(bset
->ineq
[k
][0], bset
->ineq
[k
][0], l
);
125 k
= isl_basic_set_alloc_inequality(bset
);
128 isl_seq_neg(bset
->ineq
[k
], f
, 1 + total
);
129 isl_int_add(bset
->ineq
[k
][0], bset
->ineq
[k
][0], u
);
133 isl_basic_set_free(bset
);
137 /* Find an integer point in "bset" that minimizes f (in any) such that
138 * the value of f lies inside the interval [l, u].
139 * Return this integer point if it can be found.
140 * Otherwise, return sol.
142 * We perform a number of steps until l > u.
143 * In each step, we look for an integer point with value in either
144 * the whole interval [l, u] or half of the interval [l, l+floor(u-l-1/2)].
145 * The choice depends on whether we have found an integer point in the
146 * previous step. If so, we look for the next point in half of the remaining
148 * If we find a point, the current solution is updated and u is set
149 * to its value minus 1.
150 * If no point can be found, we update l to the upper bound of the interval
151 * we checked (u or l+floor(u-l-1/2)) plus 1.
153 static __isl_give isl_vec
*solve_ilp_search(__isl_keep isl_basic_set
*bset
,
154 isl_int
*f
, isl_int
*opt
, __isl_take isl_vec
*sol
, isl_int l
, isl_int u
)
161 while (isl_int_le(l
, u
)) {
162 struct isl_basic_set
*slice
;
163 struct isl_vec
*sample
;
168 isl_int_sub(tmp
, u
, l
);
169 isl_int_fdiv_q_ui(tmp
, tmp
, 2);
170 isl_int_add(tmp
, tmp
, l
);
172 slice
= add_bounds(isl_basic_set_copy(bset
), f
, l
, tmp
);
173 sample
= isl_basic_set_sample_vec(slice
);
179 if (sample
->size
> 0) {
182 isl_seq_inner_product(f
, sol
->el
, sol
->size
, opt
);
183 isl_int_sub_ui(u
, *opt
, 1);
186 isl_vec_free(sample
);
189 isl_int_add_ui(l
, tmp
, 1);
199 /* Find an integer point in "bset" that minimizes f (if any).
200 * If sol_p is not NULL then the integer point is returned in *sol_p.
201 * The optimal value of f is returned in *opt.
203 * The algorithm maintains a currently best solution and an interval [l, u]
204 * of values of f for which integer solutions could potentially still be found.
205 * The initial value of the best solution so far is any solution.
206 * The initial value of l is minimal value of f over the rationals
207 * (rounded up to the nearest integer).
208 * The initial value of u is the value of f at the initial solution minus 1.
210 * We then call solve_ilp_search to perform a binary search on the interval.
212 static enum isl_lp_result
solve_ilp(__isl_keep isl_basic_set
*bset
,
213 isl_int
*f
, isl_int
*opt
, __isl_give isl_vec
**sol_p
)
215 enum isl_lp_result res
;
219 res
= isl_basic_set_solve_lp(bset
, 0, f
, bset
->ctx
->one
,
221 if (res
== isl_lp_ok
&& isl_int_is_one(sol
->el
[0])) {
229 if (res
== isl_lp_error
|| res
== isl_lp_empty
)
232 sol
= initial_solution(bset
, f
);
235 if (sol
->size
== 0) {
239 if (res
== isl_lp_unbounded
) {
241 return isl_lp_unbounded
;
247 isl_int_set(l
, *opt
);
249 isl_seq_inner_product(f
, sol
->el
, sol
->size
, opt
);
250 isl_int_sub_ui(u
, *opt
, 1);
252 sol
= solve_ilp_search(bset
, f
, opt
, sol
, l
, u
);
267 static enum isl_lp_result
solve_ilp_with_eq(__isl_keep isl_basic_set
*bset
,
268 int max
, isl_int
*f
, isl_int
*opt
, __isl_give isl_vec
**sol_p
)
271 enum isl_lp_result res
;
272 struct isl_mat
*T
= NULL
;
275 bset
= isl_basic_set_copy(bset
);
276 dim
= isl_basic_set_dim(bset
, isl_dim_all
);
279 v
= isl_vec_alloc(bset
->ctx
, 1 + dim
);
282 isl_seq_cpy(v
->el
, f
, 1 + dim
);
283 bset
= isl_basic_set_remove_equalities(bset
, &T
, NULL
);
284 v
= isl_vec_mat_product(v
, isl_mat_copy(T
));
287 res
= isl_basic_set_solve_ilp(bset
, max
, v
->el
, opt
, sol_p
);
289 if (res
== isl_lp_ok
&& sol_p
) {
290 *sol_p
= isl_mat_vec_product(T
, *sol_p
);
295 isl_basic_set_free(bset
);
299 isl_basic_set_free(bset
);
303 /* Find an integer point in "bset" that minimizes (or maximizes if max is set)
305 * If sol_p is not NULL then the integer point is returned in *sol_p.
306 * The optimal value of f is returned in *opt.
308 * If there is any equality among the points in "bset", then we first
309 * project it out. Otherwise, we continue with solve_ilp above.
311 enum isl_lp_result
isl_basic_set_solve_ilp(__isl_keep isl_basic_set
*bset
,
312 int max
, isl_int
*f
, isl_int
*opt
, __isl_give isl_vec
**sol_p
)
315 enum isl_lp_result res
;
320 if (isl_basic_set_check_no_params(bset
) < 0)
323 if (isl_basic_set_plain_is_empty(bset
))
327 return solve_ilp_with_eq(bset
, max
, f
, opt
, sol_p
);
329 dim
= isl_basic_set_dim(bset
, isl_dim_all
);
334 isl_seq_neg(f
, f
, 1 + dim
);
336 res
= solve_ilp(bset
, f
, opt
, sol_p
);
339 isl_seq_neg(f
, f
, 1 + dim
);
340 isl_int_neg(*opt
, *opt
);
346 static enum isl_lp_result
basic_set_opt(__isl_keep isl_basic_set
*bset
, int max
,
347 __isl_keep isl_aff
*obj
, isl_int
*opt
)
349 enum isl_lp_result res
;
353 bset
= isl_basic_set_copy(bset
);
354 bset
= isl_basic_set_underlying_set(bset
);
355 res
= isl_basic_set_solve_ilp(bset
, max
, obj
->v
->el
+ 1, opt
, NULL
);
356 isl_basic_set_free(bset
);
360 enum isl_lp_result
isl_basic_set_opt(__isl_keep isl_basic_set
*bset
, int max
,
361 __isl_keep isl_aff
*obj
, isl_int
*opt
)
366 isl_mat
*bset_div
= NULL
;
368 enum isl_lp_result res
;
369 isl_size bset_n_div
, obj_n_div
;
374 ctx
= isl_aff_get_ctx(obj
);
375 if (!isl_space_is_equal(bset
->dim
, obj
->ls
->dim
))
376 isl_die(ctx
, isl_error_invalid
,
377 "spaces don't match", return isl_lp_error
);
378 if (!isl_int_is_one(obj
->v
->el
[0]))
379 isl_die(ctx
, isl_error_unsupported
,
380 "expecting integer affine expression",
381 return isl_lp_error
);
383 bset_n_div
= isl_basic_set_dim(bset
, isl_dim_div
);
384 obj_n_div
= isl_aff_dim(obj
, isl_dim_div
);
385 if (bset_n_div
< 0 || obj_n_div
< 0)
387 if (bset_n_div
== 0 && obj_n_div
== 0)
388 return basic_set_opt(bset
, max
, obj
, opt
);
390 bset
= isl_basic_set_copy(bset
);
391 obj
= isl_aff_copy(obj
);
393 bset_div
= isl_basic_set_get_divs(bset
);
394 exp1
= isl_alloc_array(ctx
, int, bset_n_div
);
395 exp2
= isl_alloc_array(ctx
, int, obj_n_div
);
396 if (!bset_div
|| (bset_n_div
&& !exp1
) || (obj_n_div
&& !exp2
))
399 div
= isl_merge_divs(bset_div
, obj
->ls
->div
, exp1
, exp2
);
401 bset
= isl_basic_set_expand_divs(bset
, isl_mat_copy(div
), exp1
);
402 obj
= isl_aff_expand_divs(obj
, isl_mat_copy(div
), exp2
);
404 res
= basic_set_opt(bset
, max
, obj
, opt
);
406 isl_mat_free(bset_div
);
410 isl_basic_set_free(bset
);
416 isl_mat_free(bset_div
);
419 isl_basic_set_free(bset
);
424 /* Compute the minimum (maximum if max is set) of the integer affine
425 * expression obj over the points in set and put the result in *opt.
427 * The parameters are assumed to have been aligned.
429 static enum isl_lp_result
isl_set_opt_aligned(__isl_keep isl_set
*set
, int max
,
430 __isl_keep isl_aff
*obj
, isl_int
*opt
)
433 enum isl_lp_result res
;
442 res
= isl_basic_set_opt(set
->p
[0], max
, obj
, opt
);
443 if (res
== isl_lp_error
|| res
== isl_lp_unbounded
)
447 if (res
== isl_lp_ok
)
451 for (i
= 1; i
< set
->n
; ++i
) {
452 res
= isl_basic_set_opt(set
->p
[i
], max
, obj
, &opt_i
);
453 if (res
== isl_lp_error
|| res
== isl_lp_unbounded
) {
454 isl_int_clear(opt_i
);
457 if (res
== isl_lp_empty
)
460 if (max
? isl_int_gt(opt_i
, *opt
) : isl_int_lt(opt_i
, *opt
))
461 isl_int_set(*opt
, opt_i
);
463 isl_int_clear(opt_i
);
465 return empty
? isl_lp_empty
: isl_lp_ok
;
468 /* Compute the minimum (maximum if max is set) of the integer affine
469 * expression obj over the points in set and put the result in *opt.
471 enum isl_lp_result
isl_set_opt(__isl_keep isl_set
*set
, int max
,
472 __isl_keep isl_aff
*obj
, isl_int
*opt
)
474 enum isl_lp_result res
;
480 aligned
= isl_set_space_has_equal_params(set
, obj
->ls
->dim
);
484 return isl_set_opt_aligned(set
, max
, obj
, opt
);
486 set
= isl_set_copy(set
);
487 obj
= isl_aff_copy(obj
);
488 set
= isl_set_align_params(set
, isl_aff_get_domain_space(obj
));
489 obj
= isl_aff_align_params(obj
, isl_set_get_space(set
));
491 res
= isl_set_opt_aligned(set
, max
, obj
, opt
);
499 /* Convert the result of a function that returns an isl_lp_result
500 * to an isl_val. The numerator of "v" is set to the optimal value
501 * if lp_res is isl_lp_ok. "max" is set if a maximum was computed.
503 * Return "v" with denominator set to 1 if lp_res is isl_lp_ok.
504 * Return NULL on error.
505 * Return a NaN if lp_res is isl_lp_empty.
506 * Return infinity or negative infinity if lp_res is isl_lp_unbounded,
507 * depending on "max".
509 static __isl_give isl_val
*convert_lp_result(enum isl_lp_result lp_res
,
510 __isl_take isl_val
*v
, int max
)
514 if (lp_res
== isl_lp_ok
) {
515 isl_int_set_si(v
->d
, 1);
516 return isl_val_normalize(v
);
518 ctx
= isl_val_get_ctx(v
);
520 if (lp_res
== isl_lp_error
)
522 if (lp_res
== isl_lp_empty
)
523 return isl_val_nan(ctx
);
525 return isl_val_infty(ctx
);
527 return isl_val_neginfty(ctx
);
530 /* Return the minimum (maximum if max is set) of the integer affine
531 * expression "obj" over the points in "bset".
533 * Return infinity or negative infinity if the optimal value is unbounded and
534 * NaN if "bset" is empty.
536 * Call isl_basic_set_opt and translate the results.
538 __isl_give isl_val
*isl_basic_set_opt_val(__isl_keep isl_basic_set
*bset
,
539 int max
, __isl_keep isl_aff
*obj
)
543 enum isl_lp_result lp_res
;
548 ctx
= isl_aff_get_ctx(obj
);
549 res
= isl_val_alloc(ctx
);
552 lp_res
= isl_basic_set_opt(bset
, max
, obj
, &res
->n
);
553 return convert_lp_result(lp_res
, res
, max
);
556 /* Return the maximum of the integer affine
557 * expression "obj" over the points in "bset".
559 * Return infinity or negative infinity if the optimal value is unbounded and
560 * NaN if "bset" is empty.
562 __isl_give isl_val
*isl_basic_set_max_val(__isl_keep isl_basic_set
*bset
,
563 __isl_keep isl_aff
*obj
)
565 return isl_basic_set_opt_val(bset
, 1, obj
);
568 /* Return the minimum (maximum if max is set) of the integer affine
569 * expression "obj" over the points in "set".
571 * Return infinity or negative infinity if the optimal value is unbounded and
572 * NaN if "set" is empty.
574 * Call isl_set_opt and translate the results.
576 __isl_give isl_val
*isl_set_opt_val(__isl_keep isl_set
*set
, int max
,
577 __isl_keep isl_aff
*obj
)
581 enum isl_lp_result lp_res
;
586 ctx
= isl_aff_get_ctx(obj
);
587 res
= isl_val_alloc(ctx
);
590 lp_res
= isl_set_opt(set
, max
, obj
, &res
->n
);
591 return convert_lp_result(lp_res
, res
, max
);
594 /* Return the minimum of the integer affine
595 * expression "obj" over the points in "set".
597 * Return infinity or negative infinity if the optimal value is unbounded and
598 * NaN if "set" is empty.
600 __isl_give isl_val
*isl_set_min_val(__isl_keep isl_set
*set
,
601 __isl_keep isl_aff
*obj
)
603 return isl_set_opt_val(set
, 0, obj
);
606 /* Return the maximum of the integer affine
607 * expression "obj" over the points in "set".
609 * Return infinity or negative infinity if the optimal value is unbounded and
610 * NaN if "set" is empty.
612 __isl_give isl_val
*isl_set_max_val(__isl_keep isl_set
*set
,
613 __isl_keep isl_aff
*obj
)
615 return isl_set_opt_val(set
, 1, obj
);
618 /* Return the optimum (min or max depending on "max") of "v1" and "v2",
619 * where either may be NaN, signifying an uninitialized value.
620 * That is, if either is NaN, then return the other one.
622 static __isl_give isl_val
*val_opt(__isl_take isl_val
*v1
,
623 __isl_take isl_val
*v2
, int max
)
627 if (isl_val_is_nan(v1
)) {
631 if (isl_val_is_nan(v2
)) {
636 return isl_val_max(v1
, v2
);
638 return isl_val_min(v1
, v2
);
645 /* Internal data structure for isl_pw_aff_opt_val.
647 * "max" is set if the maximum should be computed.
648 * "res" contains the current optimum and is initialized to NaN.
650 struct isl_pw_aff_opt_data
{
656 /* Update the optimum in data->res with respect to the affine function
657 * "aff" defined over "set".
659 static isl_stat
piece_opt(__isl_take isl_set
*set
, __isl_take isl_aff
*aff
,
662 struct isl_pw_aff_opt_data
*data
= user
;
665 opt
= isl_set_opt_val(set
, data
->max
, aff
);
669 data
->res
= val_opt(data
->res
, opt
, data
->max
);
671 return isl_stat_error
;
676 /* Return the minimum (maximum if "max" is set) of the integer piecewise affine
677 * expression "pa" over its definition domain.
679 * Return infinity or negative infinity if the optimal value is unbounded and
680 * NaN if the domain of "pa" is empty.
682 * Initialize the result to NaN and then update it for each of the pieces
685 static __isl_give isl_val
*isl_pw_aff_opt_val(__isl_take isl_pw_aff
*pa
,
688 struct isl_pw_aff_opt_data data
= { max
};
690 data
.res
= isl_val_nan(isl_pw_aff_get_ctx(pa
));
691 if (isl_pw_aff_foreach_piece(pa
, &piece_opt
, &data
) < 0)
692 data
.res
= isl_val_free(data
.res
);
699 #define TYPE isl_pw_aff
700 #include "isl_ilp_opt_fn_val_templ.c"
703 #define TYPE isl_pw_multi_aff
704 #include "isl_ilp_opt_multi_val_templ.c"
707 #define TYPE isl_multi_pw_aff
708 #include "isl_ilp_opt_multi_val_templ.c"
710 /* Internal data structure for isl_union_pw_aff_opt_val.
712 * "max" is set if the maximum should be computed.
713 * "res" contains the current optimum and is initialized to NaN.
715 struct isl_union_pw_aff_opt_data
{
721 /* Update the optimum in data->res with the optimum of "pa".
723 static isl_stat
pw_aff_opt(__isl_take isl_pw_aff
*pa
, void *user
)
725 struct isl_union_pw_aff_opt_data
*data
= user
;
728 opt
= isl_pw_aff_opt_val(pa
, data
->max
);
730 data
->res
= val_opt(data
->res
, opt
, data
->max
);
732 return isl_stat_error
;
737 /* Return the minimum (maximum if "max" is set) of the integer piecewise affine
738 * expression "upa" over its definition domain.
740 * Return infinity or negative infinity if the optimal value is unbounded and
741 * NaN if the domain of the expression is empty.
743 * Initialize the result to NaN and then update it
744 * for each of the piecewise affine expressions in "upa".
746 static __isl_give isl_val
*isl_union_pw_aff_opt_val(
747 __isl_take isl_union_pw_aff
*upa
, int max
)
749 struct isl_union_pw_aff_opt_data data
= { max
};
751 data
.res
= isl_val_nan(isl_union_pw_aff_get_ctx(upa
));
752 if (isl_union_pw_aff_foreach_pw_aff(upa
, &pw_aff_opt
, &data
) < 0)
753 data
.res
= isl_val_free(data
.res
);
754 isl_union_pw_aff_free(upa
);
760 #define TYPE isl_union_pw_aff
761 #include "isl_ilp_opt_fn_val_templ.c"
763 /* Return a list of minima (maxima if "max" is set)
764 * for each of the expressions in "mupa" over their domains.
766 * An element in the list is infinity or negative infinity if the optimal
767 * value of the corresponding expression is unbounded and
768 * NaN if the domain of the expression is empty.
770 * Iterate over all the expressions in "mupa" and collect the results.
772 static __isl_give isl_multi_val
*isl_multi_union_pw_aff_opt_multi_val(
773 __isl_take isl_multi_union_pw_aff
*mupa
, int max
)
779 n
= isl_multi_union_pw_aff_size(mupa
);
781 mupa
= isl_multi_union_pw_aff_free(mupa
);
785 mv
= isl_multi_val_zero(isl_multi_union_pw_aff_get_space(mupa
));
787 for (i
= 0; i
< n
; ++i
) {
789 isl_union_pw_aff
*upa
;
791 upa
= isl_multi_union_pw_aff_get_union_pw_aff(mupa
, i
);
792 v
= isl_union_pw_aff_opt_val(upa
, max
);
793 mv
= isl_multi_val_set_val(mv
, i
, v
);
796 isl_multi_union_pw_aff_free(mupa
);
800 /* Return a list of minima (maxima if "max" is set) over the points in "uset"
801 * for each of the expressions in "obj".
803 * An element in the list is infinity or negative infinity if the optimal
804 * value of the corresponding expression is unbounded and
805 * NaN if the intersection of "uset" with the domain of the expression
808 static __isl_give isl_multi_val
*isl_union_set_opt_multi_union_pw_aff(
809 __isl_keep isl_union_set
*uset
, int max
,
810 __isl_keep isl_multi_union_pw_aff
*obj
)
812 uset
= isl_union_set_copy(uset
);
813 obj
= isl_multi_union_pw_aff_copy(obj
);
814 obj
= isl_multi_union_pw_aff_intersect_domain(obj
, uset
);
815 return isl_multi_union_pw_aff_opt_multi_val(obj
, max
);
818 /* Return a list of minima over the points in "uset"
819 * for each of the expressions in "obj".
821 * An element in the list is infinity or negative infinity if the optimal
822 * value of the corresponding expression is unbounded and
823 * NaN if the intersection of "uset" with the domain of the expression
826 __isl_give isl_multi_val
*isl_union_set_min_multi_union_pw_aff(
827 __isl_keep isl_union_set
*uset
, __isl_keep isl_multi_union_pw_aff
*obj
)
829 return isl_union_set_opt_multi_union_pw_aff(uset
, 0, obj
);
832 /* Return a list of minima
833 * for each of the expressions in "mupa" over their domains.
835 * An element in the list is negative infinity if the optimal
836 * value of the corresponding expression is unbounded and
837 * NaN if the domain of the expression is empty.
839 __isl_give isl_multi_val
*isl_multi_union_pw_aff_min_multi_val(
840 __isl_take isl_multi_union_pw_aff
*mupa
)
842 return isl_multi_union_pw_aff_opt_multi_val(mupa
, 0);
845 /* Return a list of maxima
846 * for each of the expressions in "mupa" over their domains.
848 * An element in the list is infinity if the optimal
849 * value of the corresponding expression is unbounded and
850 * NaN if the domain of the expression is empty.
852 __isl_give isl_multi_val
*isl_multi_union_pw_aff_max_multi_val(
853 __isl_take isl_multi_union_pw_aff
*mupa
)
855 return isl_multi_union_pw_aff_opt_multi_val(mupa
, 1);
859 #define BASE basic_set
860 #include "isl_ilp_opt_val_templ.c"
862 /* Return the maximal value attained by the given set dimension,
863 * independently of the parameter values and of any other dimensions.
865 * Return infinity if the optimal value is unbounded and
866 * NaN if "bset" is empty.
868 __isl_give isl_val
*isl_basic_set_dim_max_val(__isl_take isl_basic_set
*bset
,
871 return isl_basic_set_dim_opt_val(bset
, 1, pos
);
876 #include "isl_ilp_opt_val_templ.c"
878 /* Return the minimal value attained by the given set dimension,
879 * independently of the parameter values and of any other dimensions.
881 * Return negative infinity if the optimal value is unbounded and
882 * NaN if "set" is empty.
884 __isl_give isl_val
*isl_set_dim_min_val(__isl_take isl_set
*set
, int pos
)
886 return isl_set_dim_opt_val(set
, 0, pos
);
889 /* Return the maximal value attained by the given set dimension,
890 * independently of the parameter values and of any other dimensions.
892 * Return infinity if the optimal value is unbounded and
893 * NaN if "set" is empty.
895 __isl_give isl_val
*isl_set_dim_max_val(__isl_take isl_set
*set
, int pos
)
897 return isl_set_dim_opt_val(set
, 1, pos
);