add isl_space_extend_domain_with_range
[isl.git] / isl_range.c
blob123b6263aa6545dbd3ac35da57d90f329e93c67e
1 #include <isl_ctx_private.h>
2 #include <isl/constraint.h>
3 #include <isl/set.h>
4 #include <isl_polynomial_private.h>
5 #include <isl_morph.h>
6 #include <isl_range.h>
8 struct range_data {
9 struct isl_bound *bound;
10 int *signs;
11 int sign;
12 int test_monotonicity;
13 int monotonicity;
14 int tight;
15 isl_qpolynomial *poly;
16 isl_pw_qpolynomial_fold *pwf;
17 isl_pw_qpolynomial_fold *pwf_tight;
20 static int propagate_on_domain(__isl_take isl_basic_set *bset,
21 __isl_take isl_qpolynomial *poly, struct range_data *data);
23 /* Check whether the polynomial "poly" has sign "sign" over "bset",
24 * i.e., if sign == 1, check that the lower bound on the polynomial
25 * is non-negative and if sign == -1, check that the upper bound on
26 * the polynomial is non-positive.
28 static int has_sign(__isl_keep isl_basic_set *bset,
29 __isl_keep isl_qpolynomial *poly, int sign, int *signs)
31 struct range_data data_m;
32 unsigned nvar;
33 unsigned nparam;
34 isl_space *dim;
35 isl_qpolynomial *opt;
36 int r;
37 enum isl_fold type;
39 nparam = isl_basic_set_dim(bset, isl_dim_param);
40 nvar = isl_basic_set_dim(bset, isl_dim_set);
42 bset = isl_basic_set_copy(bset);
43 poly = isl_qpolynomial_copy(poly);
45 bset = isl_basic_set_move_dims(bset, isl_dim_set, 0,
46 isl_dim_param, 0, nparam);
47 poly = isl_qpolynomial_move_dims(poly, isl_dim_set, 0,
48 isl_dim_param, 0, nparam);
50 dim = isl_qpolynomial_get_space(poly);
51 dim = isl_space_params(dim);
53 data_m.test_monotonicity = 0;
54 data_m.signs = signs;
55 data_m.sign = -sign;
56 type = data_m.sign < 0 ? isl_fold_min : isl_fold_max;
57 data_m.pwf = isl_pw_qpolynomial_fold_zero(dim, type);
58 data_m.tight = 0;
59 data_m.pwf_tight = NULL;
61 if (propagate_on_domain(bset, poly, &data_m) < 0)
62 goto error;
64 if (sign > 0)
65 opt = isl_pw_qpolynomial_fold_min(data_m.pwf);
66 else
67 opt = isl_pw_qpolynomial_fold_max(data_m.pwf);
69 if (!opt)
70 r = -1;
71 else if (isl_qpolynomial_is_nan(opt) ||
72 isl_qpolynomial_is_infty(opt) ||
73 isl_qpolynomial_is_neginfty(opt))
74 r = 0;
75 else
76 r = sign * isl_qpolynomial_sgn(opt) >= 0;
78 isl_qpolynomial_free(opt);
80 return r;
81 error:
82 isl_pw_qpolynomial_fold_free(data_m.pwf);
83 return -1;
86 /* Return 1 if poly is monotonically increasing in the last set variable,
87 * -1 if poly is monotonically decreasing in the last set variable,
88 * 0 if no conclusion,
89 * -2 on error.
91 * We simply check the sign of p(x+1)-p(x)
93 static int monotonicity(__isl_keep isl_basic_set *bset,
94 __isl_keep isl_qpolynomial *poly, struct range_data *data)
96 isl_ctx *ctx;
97 isl_space *dim;
98 isl_qpolynomial *sub = NULL;
99 isl_qpolynomial *diff = NULL;
100 int result = 0;
101 int s;
102 unsigned nvar;
104 ctx = isl_qpolynomial_get_ctx(poly);
105 dim = isl_qpolynomial_get_space(poly);
107 nvar = isl_basic_set_dim(bset, isl_dim_set);
109 sub = isl_qpolynomial_var(isl_space_copy(dim), isl_dim_set, nvar - 1);
110 sub = isl_qpolynomial_add(sub,
111 isl_qpolynomial_rat_cst(dim, ctx->one, ctx->one));
113 diff = isl_qpolynomial_substitute(isl_qpolynomial_copy(poly),
114 isl_dim_set, nvar - 1, 1, &sub);
115 diff = isl_qpolynomial_sub(diff, isl_qpolynomial_copy(poly));
117 s = has_sign(bset, diff, 1, data->signs);
118 if (s < 0)
119 goto error;
120 if (s)
121 result = 1;
122 else {
123 s = has_sign(bset, diff, -1, data->signs);
124 if (s < 0)
125 goto error;
126 if (s)
127 result = -1;
130 isl_qpolynomial_free(diff);
131 isl_qpolynomial_free(sub);
133 return result;
134 error:
135 isl_qpolynomial_free(diff);
136 isl_qpolynomial_free(sub);
137 return -2;
140 static __isl_give isl_qpolynomial *bound2poly(__isl_take isl_constraint *bound,
141 __isl_take isl_space *dim, unsigned pos, int sign)
143 if (!bound) {
144 if (sign > 0)
145 return isl_qpolynomial_infty(dim);
146 else
147 return isl_qpolynomial_neginfty(dim);
149 isl_space_free(dim);
150 return isl_qpolynomial_from_constraint(bound, isl_dim_set, pos);
153 static int bound_is_integer(__isl_take isl_constraint *bound, unsigned pos)
155 isl_int c;
156 int is_int;
158 if (!bound)
159 return 1;
161 isl_int_init(c);
162 isl_constraint_get_coefficient(bound, isl_dim_set, pos, &c);
163 is_int = isl_int_is_one(c) || isl_int_is_negone(c);
164 isl_int_clear(c);
166 return is_int;
169 struct isl_fixed_sign_data {
170 int *signs;
171 int sign;
172 isl_qpolynomial *poly;
175 /* Add term "term" to data->poly if it has sign data->sign.
176 * The sign is determined based on the signs of the parameters
177 * and variables in data->signs. The integer divisions, if
178 * any, are assumed to be non-negative.
180 static int collect_fixed_sign_terms(__isl_take isl_term *term, void *user)
182 struct isl_fixed_sign_data *data = (struct isl_fixed_sign_data *)user;
183 isl_int n;
184 int i;
185 int sign;
186 unsigned nparam;
187 unsigned nvar;
189 if (!term)
190 return -1;
192 nparam = isl_term_dim(term, isl_dim_param);
193 nvar = isl_term_dim(term, isl_dim_set);
195 isl_int_init(n);
197 isl_term_get_num(term, &n);
199 sign = isl_int_sgn(n);
200 for (i = 0; i < nparam; ++i) {
201 if (data->signs[i] > 0)
202 continue;
203 if (isl_term_get_exp(term, isl_dim_param, i) % 2)
204 sign = -sign;
206 for (i = 0; i < nvar; ++i) {
207 if (data->signs[nparam + i] > 0)
208 continue;
209 if (isl_term_get_exp(term, isl_dim_set, i) % 2)
210 sign = -sign;
213 if (sign == data->sign) {
214 isl_qpolynomial *t = isl_qpolynomial_from_term(term);
216 data->poly = isl_qpolynomial_add(data->poly, t);
217 } else
218 isl_term_free(term);
220 isl_int_clear(n);
222 return 0;
225 /* Construct and return a polynomial that consists of the terms
226 * in "poly" that have sign "sign". The integer divisions, if
227 * any, are assumed to be non-negative.
229 __isl_give isl_qpolynomial *isl_qpolynomial_terms_of_sign(
230 __isl_keep isl_qpolynomial *poly, int *signs, int sign)
232 struct isl_fixed_sign_data data = { signs, sign };
233 data.poly = isl_qpolynomial_zero(isl_qpolynomial_get_space(poly));
235 if (isl_qpolynomial_foreach_term(poly, collect_fixed_sign_terms, &data) < 0)
236 goto error;
238 return data.poly;
239 error:
240 isl_qpolynomial_free(data.poly);
241 return NULL;
244 /* Helper function to add a guarded polynomial to either pwf_tight or pwf,
245 * depending on whether the result has been determined to be tight.
247 static int add_guarded_poly(__isl_take isl_basic_set *bset,
248 __isl_take isl_qpolynomial *poly, struct range_data *data)
250 enum isl_fold type = data->sign < 0 ? isl_fold_min : isl_fold_max;
251 isl_set *set;
252 isl_qpolynomial_fold *fold;
253 isl_pw_qpolynomial_fold *pwf;
255 bset = isl_basic_set_params(bset);
256 poly = isl_qpolynomial_project_domain_on_params(poly);
258 fold = isl_qpolynomial_fold_alloc(type, poly);
259 set = isl_set_from_basic_set(bset);
260 pwf = isl_pw_qpolynomial_fold_alloc(type, set, fold);
261 if (data->tight)
262 data->pwf_tight = isl_pw_qpolynomial_fold_fold(
263 data->pwf_tight, pwf);
264 else
265 data->pwf = isl_pw_qpolynomial_fold_fold(data->pwf, pwf);
267 return 0;
270 /* Given a lower and upper bound on the final variable and constraints
271 * on the remaining variables where these bounds are active,
272 * eliminate the variable from data->poly based on these bounds.
273 * If the polynomial has been determined to be monotonic
274 * in the variable, then simply plug in the appropriate bound.
275 * If the current polynomial is tight and if this bound is integer,
276 * then the result is still tight. In all other cases, the results
277 * may not be tight.
278 * Otherwise, plug in the largest bound (in absolute value) in
279 * the positive terms (if an upper bound is wanted) or the negative terms
280 * (if a lower bounded is wanted) and the other bound in the other terms.
282 * If all variables have been eliminated, then record the result.
283 * Ohterwise, recurse on the next variable.
285 static int propagate_on_bound_pair(__isl_take isl_constraint *lower,
286 __isl_take isl_constraint *upper, __isl_take isl_basic_set *bset,
287 void *user)
289 struct range_data *data = (struct range_data *)user;
290 int save_tight = data->tight;
291 isl_qpolynomial *poly;
292 int r;
293 unsigned nvar;
295 nvar = isl_basic_set_dim(bset, isl_dim_set);
297 if (data->monotonicity) {
298 isl_qpolynomial *sub;
299 isl_space *dim = isl_qpolynomial_get_space(data->poly);
300 if (data->monotonicity * data->sign > 0) {
301 if (data->tight)
302 data->tight = bound_is_integer(upper, nvar);
303 sub = bound2poly(upper, dim, nvar, 1);
304 isl_constraint_free(lower);
305 } else {
306 if (data->tight)
307 data->tight = bound_is_integer(lower, nvar);
308 sub = bound2poly(lower, dim, nvar, -1);
309 isl_constraint_free(upper);
311 poly = isl_qpolynomial_copy(data->poly);
312 poly = isl_qpolynomial_substitute(poly, isl_dim_set, nvar, 1, &sub);
313 poly = isl_qpolynomial_drop_dims(poly, isl_dim_set, nvar, 1);
315 isl_qpolynomial_free(sub);
316 } else {
317 isl_qpolynomial *l, *u;
318 isl_qpolynomial *pos, *neg;
319 isl_space *dim = isl_qpolynomial_get_space(data->poly);
320 unsigned nparam = isl_basic_set_dim(bset, isl_dim_param);
321 int sign = data->sign * data->signs[nparam + nvar];
323 data->tight = 0;
325 u = bound2poly(upper, isl_space_copy(dim), nvar, 1);
326 l = bound2poly(lower, dim, nvar, -1);
328 pos = isl_qpolynomial_terms_of_sign(data->poly, data->signs, sign);
329 neg = isl_qpolynomial_terms_of_sign(data->poly, data->signs, -sign);
331 pos = isl_qpolynomial_substitute(pos, isl_dim_set, nvar, 1, &u);
332 neg = isl_qpolynomial_substitute(neg, isl_dim_set, nvar, 1, &l);
334 poly = isl_qpolynomial_add(pos, neg);
335 poly = isl_qpolynomial_drop_dims(poly, isl_dim_set, nvar, 1);
337 isl_qpolynomial_free(u);
338 isl_qpolynomial_free(l);
341 if (isl_basic_set_dim(bset, isl_dim_set) == 0)
342 r = add_guarded_poly(bset, poly, data);
343 else
344 r = propagate_on_domain(bset, poly, data);
346 data->tight = save_tight;
348 return r;
351 /* Recursively perform range propagation on the polynomial "poly"
352 * defined over the basic set "bset" and collect the results in "data".
354 static int propagate_on_domain(__isl_take isl_basic_set *bset,
355 __isl_take isl_qpolynomial *poly, struct range_data *data)
357 isl_ctx *ctx;
358 isl_qpolynomial *save_poly = data->poly;
359 int save_monotonicity = data->monotonicity;
360 unsigned d;
362 if (!bset || !poly)
363 goto error;
365 ctx = isl_basic_set_get_ctx(bset);
366 d = isl_basic_set_dim(bset, isl_dim_set);
367 isl_assert(ctx, d >= 1, goto error);
369 if (isl_qpolynomial_is_cst(poly, NULL, NULL)) {
370 bset = isl_basic_set_project_out(bset, isl_dim_set, 0, d);
371 poly = isl_qpolynomial_drop_dims(poly, isl_dim_set, 0, d);
372 return add_guarded_poly(bset, poly, data);
375 if (data->test_monotonicity)
376 data->monotonicity = monotonicity(bset, poly, data);
377 else
378 data->monotonicity = 0;
379 if (data->monotonicity < -1)
380 goto error;
382 data->poly = poly;
383 if (isl_basic_set_foreach_bound_pair(bset, isl_dim_set, d - 1,
384 &propagate_on_bound_pair, data) < 0)
385 goto error;
387 isl_basic_set_free(bset);
388 isl_qpolynomial_free(poly);
389 data->monotonicity = save_monotonicity;
390 data->poly = save_poly;
392 return 0;
393 error:
394 isl_basic_set_free(bset);
395 isl_qpolynomial_free(poly);
396 data->monotonicity = save_monotonicity;
397 data->poly = save_poly;
398 return -1;
401 static int basic_guarded_poly_bound(__isl_take isl_basic_set *bset, void *user)
403 struct range_data *data = (struct range_data *)user;
404 isl_ctx *ctx;
405 unsigned nparam = isl_basic_set_dim(bset, isl_dim_param);
406 unsigned dim = isl_basic_set_dim(bset, isl_dim_set);
407 int r;
409 data->signs = NULL;
411 ctx = isl_basic_set_get_ctx(bset);
412 data->signs = isl_alloc_array(ctx, int,
413 isl_basic_set_dim(bset, isl_dim_all));
415 if (isl_basic_set_dims_get_sign(bset, isl_dim_set, 0, dim,
416 data->signs + nparam) < 0)
417 goto error;
418 if (isl_basic_set_dims_get_sign(bset, isl_dim_param, 0, nparam,
419 data->signs) < 0)
420 goto error;
422 r = propagate_on_domain(bset, isl_qpolynomial_copy(data->poly), data);
424 free(data->signs);
426 return r;
427 error:
428 free(data->signs);
429 isl_basic_set_free(bset);
430 return -1;
433 static int qpolynomial_bound_on_domain_range(__isl_take isl_basic_set *bset,
434 __isl_take isl_qpolynomial *poly, struct range_data *data)
436 unsigned nparam = isl_basic_set_dim(bset, isl_dim_param);
437 unsigned nvar = isl_basic_set_dim(bset, isl_dim_set);
438 isl_set *set;
440 if (!bset)
441 goto error;
443 if (nvar == 0)
444 return add_guarded_poly(bset, poly, data);
446 set = isl_set_from_basic_set(bset);
447 set = isl_set_split_dims(set, isl_dim_param, 0, nparam);
448 set = isl_set_split_dims(set, isl_dim_set, 0, nvar);
450 data->poly = poly;
452 data->test_monotonicity = 1;
453 if (isl_set_foreach_basic_set(set, &basic_guarded_poly_bound, data) < 0)
454 goto error;
456 isl_set_free(set);
457 isl_qpolynomial_free(poly);
459 return 0;
460 error:
461 isl_set_free(set);
462 isl_qpolynomial_free(poly);
463 return -1;
466 int isl_qpolynomial_bound_on_domain_range(__isl_take isl_basic_set *bset,
467 __isl_take isl_qpolynomial *poly, struct isl_bound *bound)
469 struct range_data data;
470 int r;
472 data.pwf = bound->pwf;
473 data.pwf_tight = bound->pwf_tight;
474 data.tight = bound->check_tight;
475 if (bound->type == isl_fold_min)
476 data.sign = -1;
477 else
478 data.sign = 1;
480 r = qpolynomial_bound_on_domain_range(bset, poly, &data);
482 bound->pwf = data.pwf;
483 bound->pwf_tight = data.pwf_tight;
485 return r;