Mark the compute out feature experimental
[isl.git] / isl_tab_pip.c
blob26429a0073c2a58700f939de7647d6511567229b
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, K.U.Leuven, Departement
8 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
10 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 #include <isl_ctx_private.h>
14 #include "isl_map_private.h"
15 #include <isl_seq.h>
16 #include "isl_tab.h"
17 #include "isl_sample.h"
18 #include <isl_mat_private.h>
19 #include <isl_vec_private.h>
20 #include <isl_aff_private.h>
21 #include <isl_options_private.h>
22 #include <isl_config.h>
25 * The implementation of parametric integer linear programming in this file
26 * was inspired by the paper "Parametric Integer Programming" and the
27 * report "Solving systems of affine (in)equalities" by Paul Feautrier
28 * (and others).
30 * The strategy used for obtaining a feasible solution is different
31 * from the one used in isl_tab.c. In particular, in isl_tab.c,
32 * upon finding a constraint that is not yet satisfied, we pivot
33 * in a row that increases the constant term of the row holding the
34 * constraint, making sure the sample solution remains feasible
35 * for all the constraints it already satisfied.
36 * Here, we always pivot in the row holding the constraint,
37 * choosing a column that induces the lexicographically smallest
38 * increment to the sample solution.
40 * By starting out from a sample value that is lexicographically
41 * smaller than any integer point in the problem space, the first
42 * feasible integer sample point we find will also be the lexicographically
43 * smallest. If all variables can be assumed to be non-negative,
44 * then the initial sample value may be chosen equal to zero.
45 * However, we will not make this assumption. Instead, we apply
46 * the "big parameter" trick. Any variable x is then not directly
47 * used in the tableau, but instead it is represented by another
48 * variable x' = M + x, where M is an arbitrarily large (positive)
49 * value. x' is therefore always non-negative, whatever the value of x.
50 * Taking as initial sample value x' = 0 corresponds to x = -M,
51 * which is always smaller than any possible value of x.
53 * The big parameter trick is used in the main tableau and
54 * also in the context tableau if isl_context_lex is used.
55 * In this case, each tableaus has its own big parameter.
56 * Before doing any real work, we check if all the parameters
57 * happen to be non-negative. If so, we drop the column corresponding
58 * to M from the initial context tableau.
59 * If isl_context_gbr is used, then the big parameter trick is only
60 * used in the main tableau.
63 struct isl_context;
64 struct isl_context_op {
65 /* detect nonnegative parameters in context and mark them in tab */
66 struct isl_tab *(*detect_nonnegative_parameters)(
67 struct isl_context *context, struct isl_tab *tab);
68 /* return temporary reference to basic set representation of context */
69 struct isl_basic_set *(*peek_basic_set)(struct isl_context *context);
70 /* return temporary reference to tableau representation of context */
71 struct isl_tab *(*peek_tab)(struct isl_context *context);
72 /* add equality; check is 1 if eq may not be valid;
73 * update is 1 if we may want to call ineq_sign on context later.
75 void (*add_eq)(struct isl_context *context, isl_int *eq,
76 int check, int update);
77 /* add inequality; check is 1 if ineq may not be valid;
78 * update is 1 if we may want to call ineq_sign on context later.
80 void (*add_ineq)(struct isl_context *context, isl_int *ineq,
81 int check, int update);
82 /* check sign of ineq based on previous information.
83 * strict is 1 if saturation should be treated as a positive sign.
85 enum isl_tab_row_sign (*ineq_sign)(struct isl_context *context,
86 isl_int *ineq, int strict);
87 /* check if inequality maintains feasibility */
88 int (*test_ineq)(struct isl_context *context, isl_int *ineq);
89 /* return index of a div that corresponds to "div" */
90 int (*get_div)(struct isl_context *context, struct isl_tab *tab,
91 struct isl_vec *div);
92 /* add div "div" to context and return non-negativity */
93 int (*add_div)(struct isl_context *context, struct isl_vec *div);
94 int (*detect_equalities)(struct isl_context *context,
95 struct isl_tab *tab);
96 /* return row index of "best" split */
97 int (*best_split)(struct isl_context *context, struct isl_tab *tab);
98 /* check if context has already been determined to be empty */
99 int (*is_empty)(struct isl_context *context);
100 /* check if context is still usable */
101 int (*is_ok)(struct isl_context *context);
102 /* save a copy/snapshot of context */
103 void *(*save)(struct isl_context *context);
104 /* restore saved context */
105 void (*restore)(struct isl_context *context, void *);
106 /* discard saved context */
107 void (*discard)(void *);
108 /* invalidate context */
109 void (*invalidate)(struct isl_context *context);
110 /* free context */
111 void (*free)(struct isl_context *context);
114 struct isl_context {
115 struct isl_context_op *op;
118 struct isl_context_lex {
119 struct isl_context context;
120 struct isl_tab *tab;
123 /* A stack (linked list) of solutions of subtrees of the search space.
125 * "M" describes the solution in terms of the dimensions of "dom".
126 * The number of columns of "M" is one more than the total number
127 * of dimensions of "dom".
129 * If "M" is NULL, then there is no solution on "dom".
131 struct isl_partial_sol {
132 int level;
133 struct isl_basic_set *dom;
134 struct isl_mat *M;
136 struct isl_partial_sol *next;
139 struct isl_sol;
140 struct isl_sol_callback {
141 struct isl_tab_callback callback;
142 struct isl_sol *sol;
145 /* isl_sol is an interface for constructing a solution to
146 * a parametric integer linear programming problem.
147 * Every time the algorithm reaches a state where a solution
148 * can be read off from the tableau (including cases where the tableau
149 * is empty), the function "add" is called on the isl_sol passed
150 * to find_solutions_main.
152 * The context tableau is owned by isl_sol and is updated incrementally.
154 * There are currently two implementations of this interface,
155 * isl_sol_map, which simply collects the solutions in an isl_map
156 * and (optionally) the parts of the context where there is no solution
157 * in an isl_set, and
158 * isl_sol_for, which calls a user-defined function for each part of
159 * the solution.
161 struct isl_sol {
162 int error;
163 int rational;
164 int level;
165 int max;
166 int n_out;
167 struct isl_context *context;
168 struct isl_partial_sol *partial;
169 void (*add)(struct isl_sol *sol,
170 struct isl_basic_set *dom, struct isl_mat *M);
171 void (*add_empty)(struct isl_sol *sol, struct isl_basic_set *bset);
172 void (*free)(struct isl_sol *sol);
173 struct isl_sol_callback dec_level;
176 static void sol_free(struct isl_sol *sol)
178 struct isl_partial_sol *partial, *next;
179 if (!sol)
180 return;
181 for (partial = sol->partial; partial; partial = next) {
182 next = partial->next;
183 isl_basic_set_free(partial->dom);
184 isl_mat_free(partial->M);
185 free(partial);
187 sol->free(sol);
190 /* Push a partial solution represented by a domain and mapping M
191 * onto the stack of partial solutions.
193 static void sol_push_sol(struct isl_sol *sol,
194 struct isl_basic_set *dom, struct isl_mat *M)
196 struct isl_partial_sol *partial;
198 if (sol->error || !dom)
199 goto error;
201 partial = isl_alloc_type(dom->ctx, struct isl_partial_sol);
202 if (!partial)
203 goto error;
205 partial->level = sol->level;
206 partial->dom = dom;
207 partial->M = M;
208 partial->next = sol->partial;
210 sol->partial = partial;
212 return;
213 error:
214 isl_basic_set_free(dom);
215 isl_mat_free(M);
216 sol->error = 1;
219 /* Pop one partial solution from the partial solution stack and
220 * pass it on to sol->add or sol->add_empty.
222 static void sol_pop_one(struct isl_sol *sol)
224 struct isl_partial_sol *partial;
226 partial = sol->partial;
227 sol->partial = partial->next;
229 if (partial->M)
230 sol->add(sol, partial->dom, partial->M);
231 else
232 sol->add_empty(sol, partial->dom);
233 free(partial);
236 /* Return a fresh copy of the domain represented by the context tableau.
238 static struct isl_basic_set *sol_domain(struct isl_sol *sol)
240 struct isl_basic_set *bset;
242 if (sol->error)
243 return NULL;
245 bset = isl_basic_set_dup(sol->context->op->peek_basic_set(sol->context));
246 bset = isl_basic_set_update_from_tab(bset,
247 sol->context->op->peek_tab(sol->context));
249 return bset;
252 /* Check whether two partial solutions have the same mapping, where n_div
253 * is the number of divs that the two partial solutions have in common.
255 static int same_solution(struct isl_partial_sol *s1, struct isl_partial_sol *s2,
256 unsigned n_div)
258 int i;
259 unsigned dim;
261 if (!s1->M != !s2->M)
262 return 0;
263 if (!s1->M)
264 return 1;
266 dim = isl_basic_set_total_dim(s1->dom) - s1->dom->n_div;
268 for (i = 0; i < s1->M->n_row; ++i) {
269 if (isl_seq_first_non_zero(s1->M->row[i]+1+dim+n_div,
270 s1->M->n_col-1-dim-n_div) != -1)
271 return 0;
272 if (isl_seq_first_non_zero(s2->M->row[i]+1+dim+n_div,
273 s2->M->n_col-1-dim-n_div) != -1)
274 return 0;
275 if (!isl_seq_eq(s1->M->row[i], s2->M->row[i], 1+dim+n_div))
276 return 0;
278 return 1;
281 /* Pop all solutions from the partial solution stack that were pushed onto
282 * the stack at levels that are deeper than the current level.
283 * If the two topmost elements on the stack have the same level
284 * and represent the same solution, then their domains are combined.
285 * This combined domain is the same as the current context domain
286 * as sol_pop is called each time we move back to a higher level.
288 static void sol_pop(struct isl_sol *sol)
290 struct isl_partial_sol *partial;
291 unsigned n_div;
293 if (sol->error)
294 return;
296 if (sol->level == 0) {
297 for (partial = sol->partial; partial; partial = sol->partial)
298 sol_pop_one(sol);
299 return;
302 partial = sol->partial;
303 if (!partial)
304 return;
306 if (partial->level <= sol->level)
307 return;
309 if (partial->next && partial->next->level == partial->level) {
310 n_div = isl_basic_set_dim(
311 sol->context->op->peek_basic_set(sol->context),
312 isl_dim_div);
314 if (!same_solution(partial, partial->next, n_div)) {
315 sol_pop_one(sol);
316 sol_pop_one(sol);
317 } else {
318 struct isl_basic_set *bset;
319 isl_mat *M;
320 unsigned n;
322 n = isl_basic_set_dim(partial->next->dom, isl_dim_div);
323 n -= n_div;
324 bset = sol_domain(sol);
325 isl_basic_set_free(partial->next->dom);
326 partial->next->dom = bset;
327 M = partial->next->M;
328 if (M) {
329 M = isl_mat_drop_cols(M, M->n_col - n, n);
330 partial->next->M = M;
331 if (!M)
332 goto error;
334 partial->next->level = sol->level;
336 if (!bset)
337 goto error;
339 sol->partial = partial->next;
340 isl_basic_set_free(partial->dom);
341 isl_mat_free(partial->M);
342 free(partial);
344 } else
345 sol_pop_one(sol);
347 if (0)
348 error: sol->error = 1;
351 static void sol_dec_level(struct isl_sol *sol)
353 if (sol->error)
354 return;
356 sol->level--;
358 sol_pop(sol);
361 static int sol_dec_level_wrap(struct isl_tab_callback *cb)
363 struct isl_sol_callback *callback = (struct isl_sol_callback *)cb;
365 sol_dec_level(callback->sol);
367 return callback->sol->error ? -1 : 0;
370 /* Move down to next level and push callback onto context tableau
371 * to decrease the level again when it gets rolled back across
372 * the current state. That is, dec_level will be called with
373 * the context tableau in the same state as it is when inc_level
374 * is called.
376 static void sol_inc_level(struct isl_sol *sol)
378 struct isl_tab *tab;
380 if (sol->error)
381 return;
383 sol->level++;
384 tab = sol->context->op->peek_tab(sol->context);
385 if (isl_tab_push_callback(tab, &sol->dec_level.callback) < 0)
386 sol->error = 1;
389 static void scale_rows(struct isl_mat *mat, isl_int m, int n_row)
391 int i;
393 if (isl_int_is_one(m))
394 return;
396 for (i = 0; i < n_row; ++i)
397 isl_seq_scale(mat->row[i], mat->row[i], m, mat->n_col);
400 /* Add the solution identified by the tableau and the context tableau.
402 * The layout of the variables is as follows.
403 * tab->n_var is equal to the total number of variables in the input
404 * map (including divs that were copied from the context)
405 * + the number of extra divs constructed
406 * Of these, the first tab->n_param and the last tab->n_div variables
407 * correspond to the variables in the context, i.e.,
408 * tab->n_param + tab->n_div = context_tab->n_var
409 * tab->n_param is equal to the number of parameters and input
410 * dimensions in the input map
411 * tab->n_div is equal to the number of divs in the context
413 * If there is no solution, then call add_empty with a basic set
414 * that corresponds to the context tableau. (If add_empty is NULL,
415 * then do nothing).
417 * If there is a solution, then first construct a matrix that maps
418 * all dimensions of the context to the output variables, i.e.,
419 * the output dimensions in the input map.
420 * The divs in the input map (if any) that do not correspond to any
421 * div in the context do not appear in the solution.
422 * The algorithm will make sure that they have an integer value,
423 * but these values themselves are of no interest.
424 * We have to be careful not to drop or rearrange any divs in the
425 * context because that would change the meaning of the matrix.
427 * To extract the value of the output variables, it should be noted
428 * that we always use a big parameter M in the main tableau and so
429 * the variable stored in this tableau is not an output variable x itself, but
430 * x' = M + x (in case of minimization)
431 * or
432 * x' = M - x (in case of maximization)
433 * If x' appears in a column, then its optimal value is zero,
434 * which means that the optimal value of x is an unbounded number
435 * (-M for minimization and M for maximization).
436 * We currently assume that the output dimensions in the original map
437 * are bounded, so this cannot occur.
438 * Similarly, when x' appears in a row, then the coefficient of M in that
439 * row is necessarily 1.
440 * If the row in the tableau represents
441 * d x' = c + d M + e(y)
442 * then, in case of minimization, the corresponding row in the matrix
443 * will be
444 * a c + a e(y)
445 * with a d = m, the (updated) common denominator of the matrix.
446 * In case of maximization, the row will be
447 * -a c - a e(y)
449 static void sol_add(struct isl_sol *sol, struct isl_tab *tab)
451 struct isl_basic_set *bset = NULL;
452 struct isl_mat *mat = NULL;
453 unsigned off;
454 int row;
455 isl_int m;
457 if (sol->error || !tab)
458 goto error;
460 if (tab->empty && !sol->add_empty)
461 return;
462 if (sol->context->op->is_empty(sol->context))
463 return;
465 bset = sol_domain(sol);
467 if (tab->empty) {
468 sol_push_sol(sol, bset, NULL);
469 return;
472 off = 2 + tab->M;
474 mat = isl_mat_alloc(tab->mat->ctx, 1 + sol->n_out,
475 1 + tab->n_param + tab->n_div);
476 if (!mat)
477 goto error;
479 isl_int_init(m);
481 isl_seq_clr(mat->row[0] + 1, mat->n_col - 1);
482 isl_int_set_si(mat->row[0][0], 1);
483 for (row = 0; row < sol->n_out; ++row) {
484 int i = tab->n_param + row;
485 int r, j;
487 isl_seq_clr(mat->row[1 + row], mat->n_col);
488 if (!tab->var[i].is_row) {
489 if (tab->M)
490 isl_die(mat->ctx, isl_error_invalid,
491 "unbounded optimum", goto error2);
492 continue;
495 r = tab->var[i].index;
496 if (tab->M &&
497 isl_int_ne(tab->mat->row[r][2], tab->mat->row[r][0]))
498 isl_die(mat->ctx, isl_error_invalid,
499 "unbounded optimum", goto error2);
500 isl_int_gcd(m, mat->row[0][0], tab->mat->row[r][0]);
501 isl_int_divexact(m, tab->mat->row[r][0], m);
502 scale_rows(mat, m, 1 + row);
503 isl_int_divexact(m, mat->row[0][0], tab->mat->row[r][0]);
504 isl_int_mul(mat->row[1 + row][0], m, tab->mat->row[r][1]);
505 for (j = 0; j < tab->n_param; ++j) {
506 int col;
507 if (tab->var[j].is_row)
508 continue;
509 col = tab->var[j].index;
510 isl_int_mul(mat->row[1 + row][1 + j], m,
511 tab->mat->row[r][off + col]);
513 for (j = 0; j < tab->n_div; ++j) {
514 int col;
515 if (tab->var[tab->n_var - tab->n_div+j].is_row)
516 continue;
517 col = tab->var[tab->n_var - tab->n_div+j].index;
518 isl_int_mul(mat->row[1 + row][1 + tab->n_param + j], m,
519 tab->mat->row[r][off + col]);
521 if (sol->max)
522 isl_seq_neg(mat->row[1 + row], mat->row[1 + row],
523 mat->n_col);
526 isl_int_clear(m);
528 sol_push_sol(sol, bset, mat);
529 return;
530 error2:
531 isl_int_clear(m);
532 error:
533 isl_basic_set_free(bset);
534 isl_mat_free(mat);
535 sol->error = 1;
538 struct isl_sol_map {
539 struct isl_sol sol;
540 struct isl_map *map;
541 struct isl_set *empty;
544 static void sol_map_free(struct isl_sol_map *sol_map)
546 if (!sol_map)
547 return;
548 if (sol_map->sol.context)
549 sol_map->sol.context->op->free(sol_map->sol.context);
550 isl_map_free(sol_map->map);
551 isl_set_free(sol_map->empty);
552 free(sol_map);
555 static void sol_map_free_wrap(struct isl_sol *sol)
557 sol_map_free((struct isl_sol_map *)sol);
560 /* This function is called for parts of the context where there is
561 * no solution, with "bset" corresponding to the context tableau.
562 * Simply add the basic set to the set "empty".
564 static void sol_map_add_empty(struct isl_sol_map *sol,
565 struct isl_basic_set *bset)
567 if (!bset)
568 goto error;
569 isl_assert(bset->ctx, sol->empty, goto error);
571 sol->empty = isl_set_grow(sol->empty, 1);
572 bset = isl_basic_set_simplify(bset);
573 bset = isl_basic_set_finalize(bset);
574 sol->empty = isl_set_add_basic_set(sol->empty, isl_basic_set_copy(bset));
575 if (!sol->empty)
576 goto error;
577 isl_basic_set_free(bset);
578 return;
579 error:
580 isl_basic_set_free(bset);
581 sol->sol.error = 1;
584 static void sol_map_add_empty_wrap(struct isl_sol *sol,
585 struct isl_basic_set *bset)
587 sol_map_add_empty((struct isl_sol_map *)sol, bset);
590 /* Given a basic map "dom" that represents the context and an affine
591 * matrix "M" that maps the dimensions of the context to the
592 * output variables, construct a basic map with the same parameters
593 * and divs as the context, the dimensions of the context as input
594 * dimensions and a number of output dimensions that is equal to
595 * the number of output dimensions in the input map.
597 * The constraints and divs of the context are simply copied
598 * from "dom". For each row
599 * x = c + e(y)
600 * an equality
601 * c + e(y) - d x = 0
602 * is added, with d the common denominator of M.
604 static void sol_map_add(struct isl_sol_map *sol,
605 struct isl_basic_set *dom, struct isl_mat *M)
607 int i;
608 struct isl_basic_map *bmap = NULL;
609 unsigned n_eq;
610 unsigned n_ineq;
611 unsigned nparam;
612 unsigned total;
613 unsigned n_div;
614 unsigned n_out;
616 if (sol->sol.error || !dom || !M)
617 goto error;
619 n_out = sol->sol.n_out;
620 n_eq = dom->n_eq + n_out;
621 n_ineq = dom->n_ineq;
622 n_div = dom->n_div;
623 nparam = isl_basic_set_total_dim(dom) - n_div;
624 total = isl_map_dim(sol->map, isl_dim_all);
625 bmap = isl_basic_map_alloc_space(isl_map_get_space(sol->map),
626 n_div, n_eq, 2 * n_div + n_ineq);
627 if (!bmap)
628 goto error;
629 if (sol->sol.rational)
630 ISL_F_SET(bmap, ISL_BASIC_MAP_RATIONAL);
631 for (i = 0; i < dom->n_div; ++i) {
632 int k = isl_basic_map_alloc_div(bmap);
633 if (k < 0)
634 goto error;
635 isl_seq_cpy(bmap->div[k], dom->div[i], 1 + 1 + nparam);
636 isl_seq_clr(bmap->div[k] + 1 + 1 + nparam, total - nparam);
637 isl_seq_cpy(bmap->div[k] + 1 + 1 + total,
638 dom->div[i] + 1 + 1 + nparam, i);
640 for (i = 0; i < dom->n_eq; ++i) {
641 int k = isl_basic_map_alloc_equality(bmap);
642 if (k < 0)
643 goto error;
644 isl_seq_cpy(bmap->eq[k], dom->eq[i], 1 + nparam);
645 isl_seq_clr(bmap->eq[k] + 1 + nparam, total - nparam);
646 isl_seq_cpy(bmap->eq[k] + 1 + total,
647 dom->eq[i] + 1 + nparam, n_div);
649 for (i = 0; i < dom->n_ineq; ++i) {
650 int k = isl_basic_map_alloc_inequality(bmap);
651 if (k < 0)
652 goto error;
653 isl_seq_cpy(bmap->ineq[k], dom->ineq[i], 1 + nparam);
654 isl_seq_clr(bmap->ineq[k] + 1 + nparam, total - nparam);
655 isl_seq_cpy(bmap->ineq[k] + 1 + total,
656 dom->ineq[i] + 1 + nparam, n_div);
658 for (i = 0; i < M->n_row - 1; ++i) {
659 int k = isl_basic_map_alloc_equality(bmap);
660 if (k < 0)
661 goto error;
662 isl_seq_cpy(bmap->eq[k], M->row[1 + i], 1 + nparam);
663 isl_seq_clr(bmap->eq[k] + 1 + nparam, n_out);
664 isl_int_neg(bmap->eq[k][1 + nparam + i], M->row[0][0]);
665 isl_seq_cpy(bmap->eq[k] + 1 + nparam + n_out,
666 M->row[1 + i] + 1 + nparam, n_div);
668 bmap = isl_basic_map_simplify(bmap);
669 bmap = isl_basic_map_finalize(bmap);
670 sol->map = isl_map_grow(sol->map, 1);
671 sol->map = isl_map_add_basic_map(sol->map, bmap);
672 isl_basic_set_free(dom);
673 isl_mat_free(M);
674 if (!sol->map)
675 sol->sol.error = 1;
676 return;
677 error:
678 isl_basic_set_free(dom);
679 isl_mat_free(M);
680 isl_basic_map_free(bmap);
681 sol->sol.error = 1;
684 static void sol_map_add_wrap(struct isl_sol *sol,
685 struct isl_basic_set *dom, struct isl_mat *M)
687 sol_map_add((struct isl_sol_map *)sol, dom, M);
691 /* Store the "parametric constant" of row "row" of tableau "tab" in "line",
692 * i.e., the constant term and the coefficients of all variables that
693 * appear in the context tableau.
694 * Note that the coefficient of the big parameter M is NOT copied.
695 * The context tableau may not have a big parameter and even when it
696 * does, it is a different big parameter.
698 static void get_row_parameter_line(struct isl_tab *tab, int row, isl_int *line)
700 int i;
701 unsigned off = 2 + tab->M;
703 isl_int_set(line[0], tab->mat->row[row][1]);
704 for (i = 0; i < tab->n_param; ++i) {
705 if (tab->var[i].is_row)
706 isl_int_set_si(line[1 + i], 0);
707 else {
708 int col = tab->var[i].index;
709 isl_int_set(line[1 + i], tab->mat->row[row][off + col]);
712 for (i = 0; i < tab->n_div; ++i) {
713 if (tab->var[tab->n_var - tab->n_div + i].is_row)
714 isl_int_set_si(line[1 + tab->n_param + i], 0);
715 else {
716 int col = tab->var[tab->n_var - tab->n_div + i].index;
717 isl_int_set(line[1 + tab->n_param + i],
718 tab->mat->row[row][off + col]);
723 /* Check if rows "row1" and "row2" have identical "parametric constants",
724 * as explained above.
725 * In this case, we also insist that the coefficients of the big parameter
726 * be the same as the values of the constants will only be the same
727 * if these coefficients are also the same.
729 static int identical_parameter_line(struct isl_tab *tab, int row1, int row2)
731 int i;
732 unsigned off = 2 + tab->M;
734 if (isl_int_ne(tab->mat->row[row1][1], tab->mat->row[row2][1]))
735 return 0;
737 if (tab->M && isl_int_ne(tab->mat->row[row1][2],
738 tab->mat->row[row2][2]))
739 return 0;
741 for (i = 0; i < tab->n_param + tab->n_div; ++i) {
742 int pos = i < tab->n_param ? i :
743 tab->n_var - tab->n_div + i - tab->n_param;
744 int col;
746 if (tab->var[pos].is_row)
747 continue;
748 col = tab->var[pos].index;
749 if (isl_int_ne(tab->mat->row[row1][off + col],
750 tab->mat->row[row2][off + col]))
751 return 0;
753 return 1;
756 /* Return an inequality that expresses that the "parametric constant"
757 * should be non-negative.
758 * This function is only called when the coefficient of the big parameter
759 * is equal to zero.
761 static struct isl_vec *get_row_parameter_ineq(struct isl_tab *tab, int row)
763 struct isl_vec *ineq;
765 ineq = isl_vec_alloc(tab->mat->ctx, 1 + tab->n_param + tab->n_div);
766 if (!ineq)
767 return NULL;
769 get_row_parameter_line(tab, row, ineq->el);
770 if (ineq)
771 ineq = isl_vec_normalize(ineq);
773 return ineq;
776 /* Normalize a div expression of the form
778 * [(g*f(x) + c)/(g * m)]
780 * with c the constant term and f(x) the remaining coefficients, to
782 * [(f(x) + [c/g])/m]
784 static void normalize_div(__isl_keep isl_vec *div)
786 isl_ctx *ctx = isl_vec_get_ctx(div);
787 int len = div->size - 2;
789 isl_seq_gcd(div->el + 2, len, &ctx->normalize_gcd);
790 isl_int_gcd(ctx->normalize_gcd, ctx->normalize_gcd, div->el[0]);
792 if (isl_int_is_one(ctx->normalize_gcd))
793 return;
795 isl_int_divexact(div->el[0], div->el[0], ctx->normalize_gcd);
796 isl_int_fdiv_q(div->el[1], div->el[1], ctx->normalize_gcd);
797 isl_seq_scale_down(div->el + 2, div->el + 2, ctx->normalize_gcd, len);
800 /* Return a integer division for use in a parametric cut based on the given row.
801 * In particular, let the parametric constant of the row be
803 * \sum_i a_i y_i
805 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
806 * The div returned is equal to
808 * floor(\sum_i {-a_i} y_i) = floor((\sum_i (-a_i mod d) y_i)/d)
810 static struct isl_vec *get_row_parameter_div(struct isl_tab *tab, int row)
812 struct isl_vec *div;
814 div = isl_vec_alloc(tab->mat->ctx, 1 + 1 + tab->n_param + tab->n_div);
815 if (!div)
816 return NULL;
818 isl_int_set(div->el[0], tab->mat->row[row][0]);
819 get_row_parameter_line(tab, row, div->el + 1);
820 isl_seq_neg(div->el + 1, div->el + 1, div->size - 1);
821 normalize_div(div);
822 isl_seq_fdiv_r(div->el + 1, div->el + 1, div->el[0], div->size - 1);
824 return div;
827 /* Return a integer division for use in transferring an integrality constraint
828 * to the context.
829 * In particular, let the parametric constant of the row be
831 * \sum_i a_i y_i
833 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
834 * The the returned div is equal to
836 * floor(\sum_i {a_i} y_i) = floor((\sum_i (a_i mod d) y_i)/d)
838 static struct isl_vec *get_row_split_div(struct isl_tab *tab, int row)
840 struct isl_vec *div;
842 div = isl_vec_alloc(tab->mat->ctx, 1 + 1 + tab->n_param + tab->n_div);
843 if (!div)
844 return NULL;
846 isl_int_set(div->el[0], tab->mat->row[row][0]);
847 get_row_parameter_line(tab, row, div->el + 1);
848 normalize_div(div);
849 isl_seq_fdiv_r(div->el + 1, div->el + 1, div->el[0], div->size - 1);
851 return div;
854 /* Construct and return an inequality that expresses an upper bound
855 * on the given div.
856 * In particular, if the div is given by
858 * d = floor(e/m)
860 * then the inequality expresses
862 * m d <= e
864 static struct isl_vec *ineq_for_div(struct isl_basic_set *bset, unsigned div)
866 unsigned total;
867 unsigned div_pos;
868 struct isl_vec *ineq;
870 if (!bset)
871 return NULL;
873 total = isl_basic_set_total_dim(bset);
874 div_pos = 1 + total - bset->n_div + div;
876 ineq = isl_vec_alloc(bset->ctx, 1 + total);
877 if (!ineq)
878 return NULL;
880 isl_seq_cpy(ineq->el, bset->div[div] + 1, 1 + total);
881 isl_int_neg(ineq->el[div_pos], bset->div[div][0]);
882 return ineq;
885 /* Given a row in the tableau and a div that was created
886 * using get_row_split_div and that has been constrained to equality, i.e.,
888 * d = floor(\sum_i {a_i} y_i) = \sum_i {a_i} y_i
890 * replace the expression "\sum_i {a_i} y_i" in the row by d,
891 * i.e., we subtract "\sum_i {a_i} y_i" and add 1 d.
892 * The coefficients of the non-parameters in the tableau have been
893 * verified to be integral. We can therefore simply replace coefficient b
894 * by floor(b). For the coefficients of the parameters we have
895 * floor(a_i) = a_i - {a_i}, while for the other coefficients, we have
896 * floor(b) = b.
898 static struct isl_tab *set_row_cst_to_div(struct isl_tab *tab, int row, int div)
900 isl_seq_fdiv_q(tab->mat->row[row] + 1, tab->mat->row[row] + 1,
901 tab->mat->row[row][0], 1 + tab->M + tab->n_col);
903 isl_int_set_si(tab->mat->row[row][0], 1);
905 if (tab->var[tab->n_var - tab->n_div + div].is_row) {
906 int drow = tab->var[tab->n_var - tab->n_div + div].index;
908 isl_assert(tab->mat->ctx,
909 isl_int_is_one(tab->mat->row[drow][0]), goto error);
910 isl_seq_combine(tab->mat->row[row] + 1,
911 tab->mat->ctx->one, tab->mat->row[row] + 1,
912 tab->mat->ctx->one, tab->mat->row[drow] + 1,
913 1 + tab->M + tab->n_col);
914 } else {
915 int dcol = tab->var[tab->n_var - tab->n_div + div].index;
917 isl_int_add_ui(tab->mat->row[row][2 + tab->M + dcol],
918 tab->mat->row[row][2 + tab->M + dcol], 1);
921 return tab;
922 error:
923 isl_tab_free(tab);
924 return NULL;
927 /* Check if the (parametric) constant of the given row is obviously
928 * negative, meaning that we don't need to consult the context tableau.
929 * If there is a big parameter and its coefficient is non-zero,
930 * then this coefficient determines the outcome.
931 * Otherwise, we check whether the constant is negative and
932 * all non-zero coefficients of parameters are negative and
933 * belong to non-negative parameters.
935 static int is_obviously_neg(struct isl_tab *tab, int row)
937 int i;
938 int col;
939 unsigned off = 2 + tab->M;
941 if (tab->M) {
942 if (isl_int_is_pos(tab->mat->row[row][2]))
943 return 0;
944 if (isl_int_is_neg(tab->mat->row[row][2]))
945 return 1;
948 if (isl_int_is_nonneg(tab->mat->row[row][1]))
949 return 0;
950 for (i = 0; i < tab->n_param; ++i) {
951 /* Eliminated parameter */
952 if (tab->var[i].is_row)
953 continue;
954 col = tab->var[i].index;
955 if (isl_int_is_zero(tab->mat->row[row][off + col]))
956 continue;
957 if (!tab->var[i].is_nonneg)
958 return 0;
959 if (isl_int_is_pos(tab->mat->row[row][off + col]))
960 return 0;
962 for (i = 0; i < tab->n_div; ++i) {
963 if (tab->var[tab->n_var - tab->n_div + i].is_row)
964 continue;
965 col = tab->var[tab->n_var - tab->n_div + i].index;
966 if (isl_int_is_zero(tab->mat->row[row][off + col]))
967 continue;
968 if (!tab->var[tab->n_var - tab->n_div + i].is_nonneg)
969 return 0;
970 if (isl_int_is_pos(tab->mat->row[row][off + col]))
971 return 0;
973 return 1;
976 /* Check if the (parametric) constant of the given row is obviously
977 * non-negative, meaning that we don't need to consult the context tableau.
978 * If there is a big parameter and its coefficient is non-zero,
979 * then this coefficient determines the outcome.
980 * Otherwise, we check whether the constant is non-negative and
981 * all non-zero coefficients of parameters are positive and
982 * belong to non-negative parameters.
984 static int is_obviously_nonneg(struct isl_tab *tab, int row)
986 int i;
987 int col;
988 unsigned off = 2 + tab->M;
990 if (tab->M) {
991 if (isl_int_is_pos(tab->mat->row[row][2]))
992 return 1;
993 if (isl_int_is_neg(tab->mat->row[row][2]))
994 return 0;
997 if (isl_int_is_neg(tab->mat->row[row][1]))
998 return 0;
999 for (i = 0; i < tab->n_param; ++i) {
1000 /* Eliminated parameter */
1001 if (tab->var[i].is_row)
1002 continue;
1003 col = tab->var[i].index;
1004 if (isl_int_is_zero(tab->mat->row[row][off + col]))
1005 continue;
1006 if (!tab->var[i].is_nonneg)
1007 return 0;
1008 if (isl_int_is_neg(tab->mat->row[row][off + col]))
1009 return 0;
1011 for (i = 0; i < tab->n_div; ++i) {
1012 if (tab->var[tab->n_var - tab->n_div + i].is_row)
1013 continue;
1014 col = tab->var[tab->n_var - tab->n_div + i].index;
1015 if (isl_int_is_zero(tab->mat->row[row][off + col]))
1016 continue;
1017 if (!tab->var[tab->n_var - tab->n_div + i].is_nonneg)
1018 return 0;
1019 if (isl_int_is_neg(tab->mat->row[row][off + col]))
1020 return 0;
1022 return 1;
1025 /* Given a row r and two columns, return the column that would
1026 * lead to the lexicographically smallest increment in the sample
1027 * solution when leaving the basis in favor of the row.
1028 * Pivoting with column c will increment the sample value by a non-negative
1029 * constant times a_{V,c}/a_{r,c}, with a_{V,c} the elements of column c
1030 * corresponding to the non-parametric variables.
1031 * If variable v appears in a column c_v, the a_{v,c} = 1 iff c = c_v,
1032 * with all other entries in this virtual row equal to zero.
1033 * If variable v appears in a row, then a_{v,c} is the element in column c
1034 * of that row.
1036 * Let v be the first variable with a_{v,c1}/a_{r,c1} != a_{v,c2}/a_{r,c2}.
1037 * Then if a_{v,c1}/a_{r,c1} < a_{v,c2}/a_{r,c2}, i.e.,
1038 * a_{v,c2} a_{r,c1} - a_{v,c1} a_{r,c2} > 0, c1 results in the minimal
1039 * increment. Otherwise, it's c2.
1041 static int lexmin_col_pair(struct isl_tab *tab,
1042 int row, int col1, int col2, isl_int tmp)
1044 int i;
1045 isl_int *tr;
1047 tr = tab->mat->row[row] + 2 + tab->M;
1049 for (i = tab->n_param; i < tab->n_var - tab->n_div; ++i) {
1050 int s1, s2;
1051 isl_int *r;
1053 if (!tab->var[i].is_row) {
1054 if (tab->var[i].index == col1)
1055 return col2;
1056 if (tab->var[i].index == col2)
1057 return col1;
1058 continue;
1061 if (tab->var[i].index == row)
1062 continue;
1064 r = tab->mat->row[tab->var[i].index] + 2 + tab->M;
1065 s1 = isl_int_sgn(r[col1]);
1066 s2 = isl_int_sgn(r[col2]);
1067 if (s1 == 0 && s2 == 0)
1068 continue;
1069 if (s1 < s2)
1070 return col1;
1071 if (s2 < s1)
1072 return col2;
1074 isl_int_mul(tmp, r[col2], tr[col1]);
1075 isl_int_submul(tmp, r[col1], tr[col2]);
1076 if (isl_int_is_pos(tmp))
1077 return col1;
1078 if (isl_int_is_neg(tmp))
1079 return col2;
1081 return -1;
1084 /* Given a row in the tableau, find and return the column that would
1085 * result in the lexicographically smallest, but positive, increment
1086 * in the sample point.
1087 * If there is no such column, then return tab->n_col.
1088 * If anything goes wrong, return -1.
1090 static int lexmin_pivot_col(struct isl_tab *tab, int row)
1092 int j;
1093 int col = tab->n_col;
1094 isl_int *tr;
1095 isl_int tmp;
1097 tr = tab->mat->row[row] + 2 + tab->M;
1099 isl_int_init(tmp);
1101 for (j = tab->n_dead; j < tab->n_col; ++j) {
1102 if (tab->col_var[j] >= 0 &&
1103 (tab->col_var[j] < tab->n_param ||
1104 tab->col_var[j] >= tab->n_var - tab->n_div))
1105 continue;
1107 if (!isl_int_is_pos(tr[j]))
1108 continue;
1110 if (col == tab->n_col)
1111 col = j;
1112 else
1113 col = lexmin_col_pair(tab, row, col, j, tmp);
1114 isl_assert(tab->mat->ctx, col >= 0, goto error);
1117 isl_int_clear(tmp);
1118 return col;
1119 error:
1120 isl_int_clear(tmp);
1121 return -1;
1124 /* Return the first known violated constraint, i.e., a non-negative
1125 * constraint that currently has an either obviously negative value
1126 * or a previously determined to be negative value.
1128 * If any constraint has a negative coefficient for the big parameter,
1129 * if any, then we return one of these first.
1131 static int first_neg(struct isl_tab *tab)
1133 int row;
1135 if (tab->M)
1136 for (row = tab->n_redundant; row < tab->n_row; ++row) {
1137 if (!isl_tab_var_from_row(tab, row)->is_nonneg)
1138 continue;
1139 if (!isl_int_is_neg(tab->mat->row[row][2]))
1140 continue;
1141 if (tab->row_sign)
1142 tab->row_sign[row] = isl_tab_row_neg;
1143 return row;
1145 for (row = tab->n_redundant; row < tab->n_row; ++row) {
1146 if (!isl_tab_var_from_row(tab, row)->is_nonneg)
1147 continue;
1148 if (tab->row_sign) {
1149 if (tab->row_sign[row] == 0 &&
1150 is_obviously_neg(tab, row))
1151 tab->row_sign[row] = isl_tab_row_neg;
1152 if (tab->row_sign[row] != isl_tab_row_neg)
1153 continue;
1154 } else if (!is_obviously_neg(tab, row))
1155 continue;
1156 return row;
1158 return -1;
1161 /* Check whether the invariant that all columns are lexico-positive
1162 * is satisfied. This function is not called from the current code
1163 * but is useful during debugging.
1165 static void check_lexpos(struct isl_tab *tab) __attribute__ ((unused));
1166 static void check_lexpos(struct isl_tab *tab)
1168 unsigned off = 2 + tab->M;
1169 int col;
1170 int var;
1171 int row;
1173 for (col = tab->n_dead; col < tab->n_col; ++col) {
1174 if (tab->col_var[col] >= 0 &&
1175 (tab->col_var[col] < tab->n_param ||
1176 tab->col_var[col] >= tab->n_var - tab->n_div))
1177 continue;
1178 for (var = tab->n_param; var < tab->n_var - tab->n_div; ++var) {
1179 if (!tab->var[var].is_row) {
1180 if (tab->var[var].index == col)
1181 break;
1182 else
1183 continue;
1185 row = tab->var[var].index;
1186 if (isl_int_is_zero(tab->mat->row[row][off + col]))
1187 continue;
1188 if (isl_int_is_pos(tab->mat->row[row][off + col]))
1189 break;
1190 fprintf(stderr, "lexneg column %d (row %d)\n",
1191 col, row);
1193 if (var >= tab->n_var - tab->n_div)
1194 fprintf(stderr, "zero column %d\n", col);
1198 /* Report to the caller that the given constraint is part of an encountered
1199 * conflict.
1201 static int report_conflicting_constraint(struct isl_tab *tab, int con)
1203 return tab->conflict(con, tab->conflict_user);
1206 /* Given a conflicting row in the tableau, report all constraints
1207 * involved in the row to the caller. That is, the row itself
1208 * (if it represents a constraint) and all constraint columns with
1209 * non-zero (and therefore negative) coefficients.
1211 static int report_conflict(struct isl_tab *tab, int row)
1213 int j;
1214 isl_int *tr;
1216 if (!tab->conflict)
1217 return 0;
1219 if (tab->row_var[row] < 0 &&
1220 report_conflicting_constraint(tab, ~tab->row_var[row]) < 0)
1221 return -1;
1223 tr = tab->mat->row[row] + 2 + tab->M;
1225 for (j = tab->n_dead; j < tab->n_col; ++j) {
1226 if (tab->col_var[j] >= 0 &&
1227 (tab->col_var[j] < tab->n_param ||
1228 tab->col_var[j] >= tab->n_var - tab->n_div))
1229 continue;
1231 if (!isl_int_is_neg(tr[j]))
1232 continue;
1234 if (tab->col_var[j] < 0 &&
1235 report_conflicting_constraint(tab, ~tab->col_var[j]) < 0)
1236 return -1;
1239 return 0;
1242 /* Resolve all known or obviously violated constraints through pivoting.
1243 * In particular, as long as we can find any violated constraint, we
1244 * look for a pivoting column that would result in the lexicographically
1245 * smallest increment in the sample point. If there is no such column
1246 * then the tableau is infeasible.
1248 static int restore_lexmin(struct isl_tab *tab) WARN_UNUSED;
1249 static int restore_lexmin(struct isl_tab *tab)
1251 int row, col;
1253 if (!tab)
1254 return -1;
1255 if (tab->empty)
1256 return 0;
1257 while ((row = first_neg(tab)) != -1) {
1258 col = lexmin_pivot_col(tab, row);
1259 if (col >= tab->n_col) {
1260 if (report_conflict(tab, row) < 0)
1261 return -1;
1262 if (isl_tab_mark_empty(tab) < 0)
1263 return -1;
1264 return 0;
1266 if (col < 0)
1267 return -1;
1268 if (isl_tab_pivot(tab, row, col) < 0)
1269 return -1;
1271 return 0;
1274 /* Given a row that represents an equality, look for an appropriate
1275 * pivoting column.
1276 * In particular, if there are any non-zero coefficients among
1277 * the non-parameter variables, then we take the last of these
1278 * variables. Eliminating this variable in terms of the other
1279 * variables and/or parameters does not influence the property
1280 * that all column in the initial tableau are lexicographically
1281 * positive. The row corresponding to the eliminated variable
1282 * will only have non-zero entries below the diagonal of the
1283 * initial tableau. That is, we transform
1285 * I I
1286 * 1 into a
1287 * I I
1289 * If there is no such non-parameter variable, then we are dealing with
1290 * pure parameter equality and we pick any parameter with coefficient 1 or -1
1291 * for elimination. This will ensure that the eliminated parameter
1292 * always has an integer value whenever all the other parameters are integral.
1293 * If there is no such parameter then we return -1.
1295 static int last_var_col_or_int_par_col(struct isl_tab *tab, int row)
1297 unsigned off = 2 + tab->M;
1298 int i;
1300 for (i = tab->n_var - tab->n_div - 1; i >= 0 && i >= tab->n_param; --i) {
1301 int col;
1302 if (tab->var[i].is_row)
1303 continue;
1304 col = tab->var[i].index;
1305 if (col <= tab->n_dead)
1306 continue;
1307 if (!isl_int_is_zero(tab->mat->row[row][off + col]))
1308 return col;
1310 for (i = tab->n_dead; i < tab->n_col; ++i) {
1311 if (isl_int_is_one(tab->mat->row[row][off + i]))
1312 return i;
1313 if (isl_int_is_negone(tab->mat->row[row][off + i]))
1314 return i;
1316 return -1;
1319 /* Add an equality that is known to be valid to the tableau.
1320 * We first check if we can eliminate a variable or a parameter.
1321 * If not, we add the equality as two inequalities.
1322 * In this case, the equality was a pure parameter equality and there
1323 * is no need to resolve any constraint violations.
1325 static struct isl_tab *add_lexmin_valid_eq(struct isl_tab *tab, isl_int *eq)
1327 int i;
1328 int r;
1330 if (!tab)
1331 return NULL;
1332 r = isl_tab_add_row(tab, eq);
1333 if (r < 0)
1334 goto error;
1336 r = tab->con[r].index;
1337 i = last_var_col_or_int_par_col(tab, r);
1338 if (i < 0) {
1339 tab->con[r].is_nonneg = 1;
1340 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r]) < 0)
1341 goto error;
1342 isl_seq_neg(eq, eq, 1 + tab->n_var);
1343 r = isl_tab_add_row(tab, eq);
1344 if (r < 0)
1345 goto error;
1346 tab->con[r].is_nonneg = 1;
1347 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r]) < 0)
1348 goto error;
1349 } else {
1350 if (isl_tab_pivot(tab, r, i) < 0)
1351 goto error;
1352 if (isl_tab_kill_col(tab, i) < 0)
1353 goto error;
1354 tab->n_eq++;
1357 return tab;
1358 error:
1359 isl_tab_free(tab);
1360 return NULL;
1363 /* Check if the given row is a pure constant.
1365 static int is_constant(struct isl_tab *tab, int row)
1367 unsigned off = 2 + tab->M;
1369 return isl_seq_first_non_zero(tab->mat->row[row] + off + tab->n_dead,
1370 tab->n_col - tab->n_dead) == -1;
1373 /* Add an equality that may or may not be valid to the tableau.
1374 * If the resulting row is a pure constant, then it must be zero.
1375 * Otherwise, the resulting tableau is empty.
1377 * If the row is not a pure constant, then we add two inequalities,
1378 * each time checking that they can be satisfied.
1379 * In the end we try to use one of the two constraints to eliminate
1380 * a column.
1382 static int add_lexmin_eq(struct isl_tab *tab, isl_int *eq) WARN_UNUSED;
1383 static int add_lexmin_eq(struct isl_tab *tab, isl_int *eq)
1385 int r1, r2;
1386 int row;
1387 struct isl_tab_undo *snap;
1389 if (!tab)
1390 return -1;
1391 snap = isl_tab_snap(tab);
1392 r1 = isl_tab_add_row(tab, eq);
1393 if (r1 < 0)
1394 return -1;
1395 tab->con[r1].is_nonneg = 1;
1396 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r1]) < 0)
1397 return -1;
1399 row = tab->con[r1].index;
1400 if (is_constant(tab, row)) {
1401 if (!isl_int_is_zero(tab->mat->row[row][1]) ||
1402 (tab->M && !isl_int_is_zero(tab->mat->row[row][2]))) {
1403 if (isl_tab_mark_empty(tab) < 0)
1404 return -1;
1405 return 0;
1407 if (isl_tab_rollback(tab, snap) < 0)
1408 return -1;
1409 return 0;
1412 if (restore_lexmin(tab) < 0)
1413 return -1;
1414 if (tab->empty)
1415 return 0;
1417 isl_seq_neg(eq, eq, 1 + tab->n_var);
1419 r2 = isl_tab_add_row(tab, eq);
1420 if (r2 < 0)
1421 return -1;
1422 tab->con[r2].is_nonneg = 1;
1423 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r2]) < 0)
1424 return -1;
1426 if (restore_lexmin(tab) < 0)
1427 return -1;
1428 if (tab->empty)
1429 return 0;
1431 if (!tab->con[r1].is_row) {
1432 if (isl_tab_kill_col(tab, tab->con[r1].index) < 0)
1433 return -1;
1434 } else if (!tab->con[r2].is_row) {
1435 if (isl_tab_kill_col(tab, tab->con[r2].index) < 0)
1436 return -1;
1439 if (tab->bmap) {
1440 tab->bmap = isl_basic_map_add_ineq(tab->bmap, eq);
1441 if (isl_tab_push(tab, isl_tab_undo_bmap_ineq) < 0)
1442 return -1;
1443 isl_seq_neg(eq, eq, 1 + tab->n_var);
1444 tab->bmap = isl_basic_map_add_ineq(tab->bmap, eq);
1445 isl_seq_neg(eq, eq, 1 + tab->n_var);
1446 if (isl_tab_push(tab, isl_tab_undo_bmap_ineq) < 0)
1447 return -1;
1448 if (!tab->bmap)
1449 return -1;
1452 return 0;
1455 /* Add an inequality to the tableau, resolving violations using
1456 * restore_lexmin.
1458 static struct isl_tab *add_lexmin_ineq(struct isl_tab *tab, isl_int *ineq)
1460 int r;
1462 if (!tab)
1463 return NULL;
1464 if (tab->bmap) {
1465 tab->bmap = isl_basic_map_add_ineq(tab->bmap, ineq);
1466 if (isl_tab_push(tab, isl_tab_undo_bmap_ineq) < 0)
1467 goto error;
1468 if (!tab->bmap)
1469 goto error;
1471 r = isl_tab_add_row(tab, ineq);
1472 if (r < 0)
1473 goto error;
1474 tab->con[r].is_nonneg = 1;
1475 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r]) < 0)
1476 goto error;
1477 if (isl_tab_row_is_redundant(tab, tab->con[r].index)) {
1478 if (isl_tab_mark_redundant(tab, tab->con[r].index) < 0)
1479 goto error;
1480 return tab;
1483 if (restore_lexmin(tab) < 0)
1484 goto error;
1485 if (!tab->empty && tab->con[r].is_row &&
1486 isl_tab_row_is_redundant(tab, tab->con[r].index))
1487 if (isl_tab_mark_redundant(tab, tab->con[r].index) < 0)
1488 goto error;
1489 return tab;
1490 error:
1491 isl_tab_free(tab);
1492 return NULL;
1495 /* Check if the coefficients of the parameters are all integral.
1497 static int integer_parameter(struct isl_tab *tab, int row)
1499 int i;
1500 int col;
1501 unsigned off = 2 + tab->M;
1503 for (i = 0; i < tab->n_param; ++i) {
1504 /* Eliminated parameter */
1505 if (tab->var[i].is_row)
1506 continue;
1507 col = tab->var[i].index;
1508 if (!isl_int_is_divisible_by(tab->mat->row[row][off + col],
1509 tab->mat->row[row][0]))
1510 return 0;
1512 for (i = 0; i < tab->n_div; ++i) {
1513 if (tab->var[tab->n_var - tab->n_div + i].is_row)
1514 continue;
1515 col = tab->var[tab->n_var - tab->n_div + i].index;
1516 if (!isl_int_is_divisible_by(tab->mat->row[row][off + col],
1517 tab->mat->row[row][0]))
1518 return 0;
1520 return 1;
1523 /* Check if the coefficients of the non-parameter variables are all integral.
1525 static int integer_variable(struct isl_tab *tab, int row)
1527 int i;
1528 unsigned off = 2 + tab->M;
1530 for (i = tab->n_dead; i < tab->n_col; ++i) {
1531 if (tab->col_var[i] >= 0 &&
1532 (tab->col_var[i] < tab->n_param ||
1533 tab->col_var[i] >= tab->n_var - tab->n_div))
1534 continue;
1535 if (!isl_int_is_divisible_by(tab->mat->row[row][off + i],
1536 tab->mat->row[row][0]))
1537 return 0;
1539 return 1;
1542 /* Check if the constant term is integral.
1544 static int integer_constant(struct isl_tab *tab, int row)
1546 return isl_int_is_divisible_by(tab->mat->row[row][1],
1547 tab->mat->row[row][0]);
1550 #define I_CST 1 << 0
1551 #define I_PAR 1 << 1
1552 #define I_VAR 1 << 2
1554 /* Check for next (non-parameter) variable after "var" (first if var == -1)
1555 * that is non-integer and therefore requires a cut and return
1556 * the index of the variable.
1557 * For parametric tableaus, there are three parts in a row,
1558 * the constant, the coefficients of the parameters and the rest.
1559 * For each part, we check whether the coefficients in that part
1560 * are all integral and if so, set the corresponding flag in *f.
1561 * If the constant and the parameter part are integral, then the
1562 * current sample value is integral and no cut is required
1563 * (irrespective of whether the variable part is integral).
1565 static int next_non_integer_var(struct isl_tab *tab, int var, int *f)
1567 var = var < 0 ? tab->n_param : var + 1;
1569 for (; var < tab->n_var - tab->n_div; ++var) {
1570 int flags = 0;
1571 int row;
1572 if (!tab->var[var].is_row)
1573 continue;
1574 row = tab->var[var].index;
1575 if (integer_constant(tab, row))
1576 ISL_FL_SET(flags, I_CST);
1577 if (integer_parameter(tab, row))
1578 ISL_FL_SET(flags, I_PAR);
1579 if (ISL_FL_ISSET(flags, I_CST) && ISL_FL_ISSET(flags, I_PAR))
1580 continue;
1581 if (integer_variable(tab, row))
1582 ISL_FL_SET(flags, I_VAR);
1583 *f = flags;
1584 return var;
1586 return -1;
1589 /* Check for first (non-parameter) variable that is non-integer and
1590 * therefore requires a cut and return the corresponding row.
1591 * For parametric tableaus, there are three parts in a row,
1592 * the constant, the coefficients of the parameters and the rest.
1593 * For each part, we check whether the coefficients in that part
1594 * are all integral and if so, set the corresponding flag in *f.
1595 * If the constant and the parameter part are integral, then the
1596 * current sample value is integral and no cut is required
1597 * (irrespective of whether the variable part is integral).
1599 static int first_non_integer_row(struct isl_tab *tab, int *f)
1601 int var = next_non_integer_var(tab, -1, f);
1603 return var < 0 ? -1 : tab->var[var].index;
1606 /* Add a (non-parametric) cut to cut away the non-integral sample
1607 * value of the given row.
1609 * If the row is given by
1611 * m r = f + \sum_i a_i y_i
1613 * then the cut is
1615 * c = - {-f/m} + \sum_i {a_i/m} y_i >= 0
1617 * The big parameter, if any, is ignored, since it is assumed to be big
1618 * enough to be divisible by any integer.
1619 * If the tableau is actually a parametric tableau, then this function
1620 * is only called when all coefficients of the parameters are integral.
1621 * The cut therefore has zero coefficients for the parameters.
1623 * The current value is known to be negative, so row_sign, if it
1624 * exists, is set accordingly.
1626 * Return the row of the cut or -1.
1628 static int add_cut(struct isl_tab *tab, int row)
1630 int i;
1631 int r;
1632 isl_int *r_row;
1633 unsigned off = 2 + tab->M;
1635 if (isl_tab_extend_cons(tab, 1) < 0)
1636 return -1;
1637 r = isl_tab_allocate_con(tab);
1638 if (r < 0)
1639 return -1;
1641 r_row = tab->mat->row[tab->con[r].index];
1642 isl_int_set(r_row[0], tab->mat->row[row][0]);
1643 isl_int_neg(r_row[1], tab->mat->row[row][1]);
1644 isl_int_fdiv_r(r_row[1], r_row[1], tab->mat->row[row][0]);
1645 isl_int_neg(r_row[1], r_row[1]);
1646 if (tab->M)
1647 isl_int_set_si(r_row[2], 0);
1648 for (i = 0; i < tab->n_col; ++i)
1649 isl_int_fdiv_r(r_row[off + i],
1650 tab->mat->row[row][off + i], tab->mat->row[row][0]);
1652 tab->con[r].is_nonneg = 1;
1653 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r]) < 0)
1654 return -1;
1655 if (tab->row_sign)
1656 tab->row_sign[tab->con[r].index] = isl_tab_row_neg;
1658 return tab->con[r].index;
1661 #define CUT_ALL 1
1662 #define CUT_ONE 0
1664 /* Given a non-parametric tableau, add cuts until an integer
1665 * sample point is obtained or until the tableau is determined
1666 * to be integer infeasible.
1667 * As long as there is any non-integer value in the sample point,
1668 * we add appropriate cuts, if possible, for each of these
1669 * non-integer values and then resolve the violated
1670 * cut constraints using restore_lexmin.
1671 * If one of the corresponding rows is equal to an integral
1672 * combination of variables/constraints plus a non-integral constant,
1673 * then there is no way to obtain an integer point and we return
1674 * a tableau that is marked empty.
1675 * The parameter cutting_strategy controls the strategy used when adding cuts
1676 * to remove non-integer points. CUT_ALL adds all possible cuts
1677 * before continuing the search. CUT_ONE adds only one cut at a time.
1679 static struct isl_tab *cut_to_integer_lexmin(struct isl_tab *tab,
1680 int cutting_strategy)
1682 int var;
1683 int row;
1684 int flags;
1686 if (!tab)
1687 return NULL;
1688 if (tab->empty)
1689 return tab;
1691 while ((var = next_non_integer_var(tab, -1, &flags)) != -1) {
1692 do {
1693 if (ISL_FL_ISSET(flags, I_VAR)) {
1694 if (isl_tab_mark_empty(tab) < 0)
1695 goto error;
1696 return tab;
1698 row = tab->var[var].index;
1699 row = add_cut(tab, row);
1700 if (row < 0)
1701 goto error;
1702 if (cutting_strategy == CUT_ONE)
1703 break;
1704 } while ((var = next_non_integer_var(tab, var, &flags)) != -1);
1705 if (restore_lexmin(tab) < 0)
1706 goto error;
1707 if (tab->empty)
1708 break;
1710 return tab;
1711 error:
1712 isl_tab_free(tab);
1713 return NULL;
1716 /* Check whether all the currently active samples also satisfy the inequality
1717 * "ineq" (treated as an equality if eq is set).
1718 * Remove those samples that do not.
1720 static struct isl_tab *check_samples(struct isl_tab *tab, isl_int *ineq, int eq)
1722 int i;
1723 isl_int v;
1725 if (!tab)
1726 return NULL;
1728 isl_assert(tab->mat->ctx, tab->bmap, goto error);
1729 isl_assert(tab->mat->ctx, tab->samples, goto error);
1730 isl_assert(tab->mat->ctx, tab->samples->n_col == 1 + tab->n_var, goto error);
1732 isl_int_init(v);
1733 for (i = tab->n_outside; i < tab->n_sample; ++i) {
1734 int sgn;
1735 isl_seq_inner_product(ineq, tab->samples->row[i],
1736 1 + tab->n_var, &v);
1737 sgn = isl_int_sgn(v);
1738 if (eq ? (sgn == 0) : (sgn >= 0))
1739 continue;
1740 tab = isl_tab_drop_sample(tab, i);
1741 if (!tab)
1742 break;
1744 isl_int_clear(v);
1746 return tab;
1747 error:
1748 isl_tab_free(tab);
1749 return NULL;
1752 /* Check whether the sample value of the tableau is finite,
1753 * i.e., either the tableau does not use a big parameter, or
1754 * all values of the variables are equal to the big parameter plus
1755 * some constant. This constant is the actual sample value.
1757 static int sample_is_finite(struct isl_tab *tab)
1759 int i;
1761 if (!tab->M)
1762 return 1;
1764 for (i = 0; i < tab->n_var; ++i) {
1765 int row;
1766 if (!tab->var[i].is_row)
1767 return 0;
1768 row = tab->var[i].index;
1769 if (isl_int_ne(tab->mat->row[row][0], tab->mat->row[row][2]))
1770 return 0;
1772 return 1;
1775 /* Check if the context tableau of sol has any integer points.
1776 * Leave tab in empty state if no integer point can be found.
1777 * If an integer point can be found and if moreover it is finite,
1778 * then it is added to the list of sample values.
1780 * This function is only called when none of the currently active sample
1781 * values satisfies the most recently added constraint.
1783 static struct isl_tab *check_integer_feasible(struct isl_tab *tab)
1785 struct isl_tab_undo *snap;
1787 if (!tab)
1788 return NULL;
1790 snap = isl_tab_snap(tab);
1791 if (isl_tab_push_basis(tab) < 0)
1792 goto error;
1794 tab = cut_to_integer_lexmin(tab, CUT_ALL);
1795 if (!tab)
1796 goto error;
1798 if (!tab->empty && sample_is_finite(tab)) {
1799 struct isl_vec *sample;
1801 sample = isl_tab_get_sample_value(tab);
1803 if (isl_tab_add_sample(tab, sample) < 0)
1804 goto error;
1807 if (!tab->empty && isl_tab_rollback(tab, snap) < 0)
1808 goto error;
1810 return tab;
1811 error:
1812 isl_tab_free(tab);
1813 return NULL;
1816 /* Check if any of the currently active sample values satisfies
1817 * the inequality "ineq" (an equality if eq is set).
1819 static int tab_has_valid_sample(struct isl_tab *tab, isl_int *ineq, int eq)
1821 int i;
1822 isl_int v;
1824 if (!tab)
1825 return -1;
1827 isl_assert(tab->mat->ctx, tab->bmap, return -1);
1828 isl_assert(tab->mat->ctx, tab->samples, return -1);
1829 isl_assert(tab->mat->ctx, tab->samples->n_col == 1 + tab->n_var, return -1);
1831 isl_int_init(v);
1832 for (i = tab->n_outside; i < tab->n_sample; ++i) {
1833 int sgn;
1834 isl_seq_inner_product(ineq, tab->samples->row[i],
1835 1 + tab->n_var, &v);
1836 sgn = isl_int_sgn(v);
1837 if (eq ? (sgn == 0) : (sgn >= 0))
1838 break;
1840 isl_int_clear(v);
1842 return i < tab->n_sample;
1845 /* Add a div specified by "div" to the tableau "tab" and return
1846 * 1 if the div is obviously non-negative.
1848 static int context_tab_add_div(struct isl_tab *tab, struct isl_vec *div,
1849 int (*add_ineq)(void *user, isl_int *), void *user)
1851 int i;
1852 int r;
1853 struct isl_mat *samples;
1854 int nonneg;
1856 r = isl_tab_add_div(tab, div, add_ineq, user);
1857 if (r < 0)
1858 return -1;
1859 nonneg = tab->var[r].is_nonneg;
1860 tab->var[r].frozen = 1;
1862 samples = isl_mat_extend(tab->samples,
1863 tab->n_sample, 1 + tab->n_var);
1864 tab->samples = samples;
1865 if (!samples)
1866 return -1;
1867 for (i = tab->n_outside; i < samples->n_row; ++i) {
1868 isl_seq_inner_product(div->el + 1, samples->row[i],
1869 div->size - 1, &samples->row[i][samples->n_col - 1]);
1870 isl_int_fdiv_q(samples->row[i][samples->n_col - 1],
1871 samples->row[i][samples->n_col - 1], div->el[0]);
1874 return nonneg;
1877 /* Add a div specified by "div" to both the main tableau and
1878 * the context tableau. In case of the main tableau, we only
1879 * need to add an extra div. In the context tableau, we also
1880 * need to express the meaning of the div.
1881 * Return the index of the div or -1 if anything went wrong.
1883 static int add_div(struct isl_tab *tab, struct isl_context *context,
1884 struct isl_vec *div)
1886 int r;
1887 int nonneg;
1889 if ((nonneg = context->op->add_div(context, div)) < 0)
1890 goto error;
1892 if (!context->op->is_ok(context))
1893 goto error;
1895 if (isl_tab_extend_vars(tab, 1) < 0)
1896 goto error;
1897 r = isl_tab_allocate_var(tab);
1898 if (r < 0)
1899 goto error;
1900 if (nonneg)
1901 tab->var[r].is_nonneg = 1;
1902 tab->var[r].frozen = 1;
1903 tab->n_div++;
1905 return tab->n_div - 1;
1906 error:
1907 context->op->invalidate(context);
1908 return -1;
1911 static int find_div(struct isl_tab *tab, isl_int *div, isl_int denom)
1913 int i;
1914 unsigned total = isl_basic_map_total_dim(tab->bmap);
1916 for (i = 0; i < tab->bmap->n_div; ++i) {
1917 if (isl_int_ne(tab->bmap->div[i][0], denom))
1918 continue;
1919 if (!isl_seq_eq(tab->bmap->div[i] + 1, div, 1 + total))
1920 continue;
1921 return i;
1923 return -1;
1926 /* Return the index of a div that corresponds to "div".
1927 * We first check if we already have such a div and if not, we create one.
1929 static int get_div(struct isl_tab *tab, struct isl_context *context,
1930 struct isl_vec *div)
1932 int d;
1933 struct isl_tab *context_tab = context->op->peek_tab(context);
1935 if (!context_tab)
1936 return -1;
1938 d = find_div(context_tab, div->el + 1, div->el[0]);
1939 if (d != -1)
1940 return d;
1942 return add_div(tab, context, div);
1945 /* Add a parametric cut to cut away the non-integral sample value
1946 * of the give row.
1947 * Let a_i be the coefficients of the constant term and the parameters
1948 * and let b_i be the coefficients of the variables or constraints
1949 * in basis of the tableau.
1950 * Let q be the div q = floor(\sum_i {-a_i} y_i).
1952 * The cut is expressed as
1954 * c = \sum_i -{-a_i} y_i + \sum_i {b_i} x_i + q >= 0
1956 * If q did not already exist in the context tableau, then it is added first.
1957 * If q is in a column of the main tableau then the "+ q" can be accomplished
1958 * by setting the corresponding entry to the denominator of the constraint.
1959 * If q happens to be in a row of the main tableau, then the corresponding
1960 * row needs to be added instead (taking care of the denominators).
1961 * Note that this is very unlikely, but perhaps not entirely impossible.
1963 * The current value of the cut is known to be negative (or at least
1964 * non-positive), so row_sign is set accordingly.
1966 * Return the row of the cut or -1.
1968 static int add_parametric_cut(struct isl_tab *tab, int row,
1969 struct isl_context *context)
1971 struct isl_vec *div;
1972 int d;
1973 int i;
1974 int r;
1975 isl_int *r_row;
1976 int col;
1977 int n;
1978 unsigned off = 2 + tab->M;
1980 if (!context)
1981 return -1;
1983 div = get_row_parameter_div(tab, row);
1984 if (!div)
1985 return -1;
1987 n = tab->n_div;
1988 d = context->op->get_div(context, tab, div);
1989 isl_vec_free(div);
1990 if (d < 0)
1991 return -1;
1993 if (isl_tab_extend_cons(tab, 1) < 0)
1994 return -1;
1995 r = isl_tab_allocate_con(tab);
1996 if (r < 0)
1997 return -1;
1999 r_row = tab->mat->row[tab->con[r].index];
2000 isl_int_set(r_row[0], tab->mat->row[row][0]);
2001 isl_int_neg(r_row[1], tab->mat->row[row][1]);
2002 isl_int_fdiv_r(r_row[1], r_row[1], tab->mat->row[row][0]);
2003 isl_int_neg(r_row[1], r_row[1]);
2004 if (tab->M)
2005 isl_int_set_si(r_row[2], 0);
2006 for (i = 0; i < tab->n_param; ++i) {
2007 if (tab->var[i].is_row)
2008 continue;
2009 col = tab->var[i].index;
2010 isl_int_neg(r_row[off + col], tab->mat->row[row][off + col]);
2011 isl_int_fdiv_r(r_row[off + col], r_row[off + col],
2012 tab->mat->row[row][0]);
2013 isl_int_neg(r_row[off + col], r_row[off + col]);
2015 for (i = 0; i < tab->n_div; ++i) {
2016 if (tab->var[tab->n_var - tab->n_div + i].is_row)
2017 continue;
2018 col = tab->var[tab->n_var - tab->n_div + i].index;
2019 isl_int_neg(r_row[off + col], tab->mat->row[row][off + col]);
2020 isl_int_fdiv_r(r_row[off + col], r_row[off + col],
2021 tab->mat->row[row][0]);
2022 isl_int_neg(r_row[off + col], r_row[off + col]);
2024 for (i = 0; i < tab->n_col; ++i) {
2025 if (tab->col_var[i] >= 0 &&
2026 (tab->col_var[i] < tab->n_param ||
2027 tab->col_var[i] >= tab->n_var - tab->n_div))
2028 continue;
2029 isl_int_fdiv_r(r_row[off + i],
2030 tab->mat->row[row][off + i], tab->mat->row[row][0]);
2032 if (tab->var[tab->n_var - tab->n_div + d].is_row) {
2033 isl_int gcd;
2034 int d_row = tab->var[tab->n_var - tab->n_div + d].index;
2035 isl_int_init(gcd);
2036 isl_int_gcd(gcd, tab->mat->row[d_row][0], r_row[0]);
2037 isl_int_divexact(r_row[0], r_row[0], gcd);
2038 isl_int_divexact(gcd, tab->mat->row[d_row][0], gcd);
2039 isl_seq_combine(r_row + 1, gcd, r_row + 1,
2040 r_row[0], tab->mat->row[d_row] + 1,
2041 off - 1 + tab->n_col);
2042 isl_int_mul(r_row[0], r_row[0], tab->mat->row[d_row][0]);
2043 isl_int_clear(gcd);
2044 } else {
2045 col = tab->var[tab->n_var - tab->n_div + d].index;
2046 isl_int_set(r_row[off + col], tab->mat->row[row][0]);
2049 tab->con[r].is_nonneg = 1;
2050 if (isl_tab_push_var(tab, isl_tab_undo_nonneg, &tab->con[r]) < 0)
2051 return -1;
2052 if (tab->row_sign)
2053 tab->row_sign[tab->con[r].index] = isl_tab_row_neg;
2055 row = tab->con[r].index;
2057 if (d >= n && context->op->detect_equalities(context, tab) < 0)
2058 return -1;
2060 return row;
2063 /* Construct a tableau for bmap that can be used for computing
2064 * the lexicographic minimum (or maximum) of bmap.
2065 * If not NULL, then dom is the domain where the minimum
2066 * should be computed. In this case, we set up a parametric
2067 * tableau with row signs (initialized to "unknown").
2068 * If M is set, then the tableau will use a big parameter.
2069 * If max is set, then a maximum should be computed instead of a minimum.
2070 * This means that for each variable x, the tableau will contain the variable
2071 * x' = M - x, rather than x' = M + x. This in turn means that the coefficient
2072 * of the variables in all constraints are negated prior to adding them
2073 * to the tableau.
2075 static struct isl_tab *tab_for_lexmin(struct isl_basic_map *bmap,
2076 struct isl_basic_set *dom, unsigned M, int max)
2078 int i;
2079 struct isl_tab *tab;
2080 unsigned n_var;
2081 unsigned o_var;
2083 tab = isl_tab_alloc(bmap->ctx, 2 * bmap->n_eq + bmap->n_ineq + 1,
2084 isl_basic_map_total_dim(bmap), M);
2085 if (!tab)
2086 return NULL;
2088 tab->rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
2089 if (dom) {
2090 tab->n_param = isl_basic_set_total_dim(dom) - dom->n_div;
2091 tab->n_div = dom->n_div;
2092 tab->row_sign = isl_calloc_array(bmap->ctx,
2093 enum isl_tab_row_sign, tab->mat->n_row);
2094 if (tab->mat->n_row && !tab->row_sign)
2095 goto error;
2097 if (ISL_F_ISSET(bmap, ISL_BASIC_MAP_EMPTY)) {
2098 if (isl_tab_mark_empty(tab) < 0)
2099 goto error;
2100 return tab;
2103 for (i = tab->n_param; i < tab->n_var - tab->n_div; ++i) {
2104 tab->var[i].is_nonneg = 1;
2105 tab->var[i].frozen = 1;
2107 o_var = 1 + tab->n_param;
2108 n_var = tab->n_var - tab->n_param - tab->n_div;
2109 for (i = 0; i < bmap->n_eq; ++i) {
2110 if (max)
2111 isl_seq_neg(bmap->eq[i] + o_var,
2112 bmap->eq[i] + o_var, n_var);
2113 tab = add_lexmin_valid_eq(tab, bmap->eq[i]);
2114 if (max)
2115 isl_seq_neg(bmap->eq[i] + o_var,
2116 bmap->eq[i] + o_var, n_var);
2117 if (!tab || tab->empty)
2118 return tab;
2120 if (bmap->n_eq && restore_lexmin(tab) < 0)
2121 goto error;
2122 for (i = 0; i < bmap->n_ineq; ++i) {
2123 if (max)
2124 isl_seq_neg(bmap->ineq[i] + o_var,
2125 bmap->ineq[i] + o_var, n_var);
2126 tab = add_lexmin_ineq(tab, bmap->ineq[i]);
2127 if (max)
2128 isl_seq_neg(bmap->ineq[i] + o_var,
2129 bmap->ineq[i] + o_var, n_var);
2130 if (!tab || tab->empty)
2131 return tab;
2133 return tab;
2134 error:
2135 isl_tab_free(tab);
2136 return NULL;
2139 /* Given a main tableau where more than one row requires a split,
2140 * determine and return the "best" row to split on.
2142 * Given two rows in the main tableau, if the inequality corresponding
2143 * to the first row is redundant with respect to that of the second row
2144 * in the current tableau, then it is better to split on the second row,
2145 * since in the positive part, both row will be positive.
2146 * (In the negative part a pivot will have to be performed and just about
2147 * anything can happen to the sign of the other row.)
2149 * As a simple heuristic, we therefore select the row that makes the most
2150 * of the other rows redundant.
2152 * Perhaps it would also be useful to look at the number of constraints
2153 * that conflict with any given constraint.
2155 static int best_split(struct isl_tab *tab, struct isl_tab *context_tab)
2157 struct isl_tab_undo *snap;
2158 int split;
2159 int row;
2160 int best = -1;
2161 int best_r;
2163 if (isl_tab_extend_cons(context_tab, 2) < 0)
2164 return -1;
2166 snap = isl_tab_snap(context_tab);
2168 for (split = tab->n_redundant; split < tab->n_row; ++split) {
2169 struct isl_tab_undo *snap2;
2170 struct isl_vec *ineq = NULL;
2171 int r = 0;
2172 int ok;
2174 if (!isl_tab_var_from_row(tab, split)->is_nonneg)
2175 continue;
2176 if (tab->row_sign[split] != isl_tab_row_any)
2177 continue;
2179 ineq = get_row_parameter_ineq(tab, split);
2180 if (!ineq)
2181 return -1;
2182 ok = isl_tab_add_ineq(context_tab, ineq->el) >= 0;
2183 isl_vec_free(ineq);
2184 if (!ok)
2185 return -1;
2187 snap2 = isl_tab_snap(context_tab);
2189 for (row = tab->n_redundant; row < tab->n_row; ++row) {
2190 struct isl_tab_var *var;
2192 if (row == split)
2193 continue;
2194 if (!isl_tab_var_from_row(tab, row)->is_nonneg)
2195 continue;
2196 if (tab->row_sign[row] != isl_tab_row_any)
2197 continue;
2199 ineq = get_row_parameter_ineq(tab, row);
2200 if (!ineq)
2201 return -1;
2202 ok = isl_tab_add_ineq(context_tab, ineq->el) >= 0;
2203 isl_vec_free(ineq);
2204 if (!ok)
2205 return -1;
2206 var = &context_tab->con[context_tab->n_con - 1];
2207 if (!context_tab->empty &&
2208 !isl_tab_min_at_most_neg_one(context_tab, var))
2209 r++;
2210 if (isl_tab_rollback(context_tab, snap2) < 0)
2211 return -1;
2213 if (best == -1 || r > best_r) {
2214 best = split;
2215 best_r = r;
2217 if (isl_tab_rollback(context_tab, snap) < 0)
2218 return -1;
2221 return best;
2224 static struct isl_basic_set *context_lex_peek_basic_set(
2225 struct isl_context *context)
2227 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2228 if (!clex->tab)
2229 return NULL;
2230 return isl_tab_peek_bset(clex->tab);
2233 static struct isl_tab *context_lex_peek_tab(struct isl_context *context)
2235 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2236 return clex->tab;
2239 static void context_lex_add_eq(struct isl_context *context, isl_int *eq,
2240 int check, int update)
2242 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2243 if (isl_tab_extend_cons(clex->tab, 2) < 0)
2244 goto error;
2245 if (add_lexmin_eq(clex->tab, eq) < 0)
2246 goto error;
2247 if (check) {
2248 int v = tab_has_valid_sample(clex->tab, eq, 1);
2249 if (v < 0)
2250 goto error;
2251 if (!v)
2252 clex->tab = check_integer_feasible(clex->tab);
2254 if (update)
2255 clex->tab = check_samples(clex->tab, eq, 1);
2256 return;
2257 error:
2258 isl_tab_free(clex->tab);
2259 clex->tab = NULL;
2262 static void context_lex_add_ineq(struct isl_context *context, isl_int *ineq,
2263 int check, int update)
2265 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2266 if (isl_tab_extend_cons(clex->tab, 1) < 0)
2267 goto error;
2268 clex->tab = add_lexmin_ineq(clex->tab, ineq);
2269 if (check) {
2270 int v = tab_has_valid_sample(clex->tab, ineq, 0);
2271 if (v < 0)
2272 goto error;
2273 if (!v)
2274 clex->tab = check_integer_feasible(clex->tab);
2276 if (update)
2277 clex->tab = check_samples(clex->tab, ineq, 0);
2278 return;
2279 error:
2280 isl_tab_free(clex->tab);
2281 clex->tab = NULL;
2284 static int context_lex_add_ineq_wrap(void *user, isl_int *ineq)
2286 struct isl_context *context = (struct isl_context *)user;
2287 context_lex_add_ineq(context, ineq, 0, 0);
2288 return context->op->is_ok(context) ? 0 : -1;
2291 /* Check which signs can be obtained by "ineq" on all the currently
2292 * active sample values. See row_sign for more information.
2294 static enum isl_tab_row_sign tab_ineq_sign(struct isl_tab *tab, isl_int *ineq,
2295 int strict)
2297 int i;
2298 int sgn;
2299 isl_int tmp;
2300 enum isl_tab_row_sign res = isl_tab_row_unknown;
2302 isl_assert(tab->mat->ctx, tab->samples, return isl_tab_row_unknown);
2303 isl_assert(tab->mat->ctx, tab->samples->n_col == 1 + tab->n_var,
2304 return isl_tab_row_unknown);
2306 isl_int_init(tmp);
2307 for (i = tab->n_outside; i < tab->n_sample; ++i) {
2308 isl_seq_inner_product(tab->samples->row[i], ineq,
2309 1 + tab->n_var, &tmp);
2310 sgn = isl_int_sgn(tmp);
2311 if (sgn > 0 || (sgn == 0 && strict)) {
2312 if (res == isl_tab_row_unknown)
2313 res = isl_tab_row_pos;
2314 if (res == isl_tab_row_neg)
2315 res = isl_tab_row_any;
2317 if (sgn < 0) {
2318 if (res == isl_tab_row_unknown)
2319 res = isl_tab_row_neg;
2320 if (res == isl_tab_row_pos)
2321 res = isl_tab_row_any;
2323 if (res == isl_tab_row_any)
2324 break;
2326 isl_int_clear(tmp);
2328 return res;
2331 static enum isl_tab_row_sign context_lex_ineq_sign(struct isl_context *context,
2332 isl_int *ineq, int strict)
2334 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2335 return tab_ineq_sign(clex->tab, ineq, strict);
2338 /* Check whether "ineq" can be added to the tableau without rendering
2339 * it infeasible.
2341 static int context_lex_test_ineq(struct isl_context *context, isl_int *ineq)
2343 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2344 struct isl_tab_undo *snap;
2345 int feasible;
2347 if (!clex->tab)
2348 return -1;
2350 if (isl_tab_extend_cons(clex->tab, 1) < 0)
2351 return -1;
2353 snap = isl_tab_snap(clex->tab);
2354 if (isl_tab_push_basis(clex->tab) < 0)
2355 return -1;
2356 clex->tab = add_lexmin_ineq(clex->tab, ineq);
2357 clex->tab = check_integer_feasible(clex->tab);
2358 if (!clex->tab)
2359 return -1;
2360 feasible = !clex->tab->empty;
2361 if (isl_tab_rollback(clex->tab, snap) < 0)
2362 return -1;
2364 return feasible;
2367 static int context_lex_get_div(struct isl_context *context, struct isl_tab *tab,
2368 struct isl_vec *div)
2370 return get_div(tab, context, div);
2373 /* Add a div specified by "div" to the context tableau and return
2374 * 1 if the div is obviously non-negative.
2375 * context_tab_add_div will always return 1, because all variables
2376 * in a isl_context_lex tableau are non-negative.
2377 * However, if we are using a big parameter in the context, then this only
2378 * reflects the non-negativity of the variable used to _encode_ the
2379 * div, i.e., div' = M + div, so we can't draw any conclusions.
2381 static int context_lex_add_div(struct isl_context *context, struct isl_vec *div)
2383 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2384 int nonneg;
2385 nonneg = context_tab_add_div(clex->tab, div,
2386 context_lex_add_ineq_wrap, context);
2387 if (nonneg < 0)
2388 return -1;
2389 if (clex->tab->M)
2390 return 0;
2391 return nonneg;
2394 static int context_lex_detect_equalities(struct isl_context *context,
2395 struct isl_tab *tab)
2397 return 0;
2400 static int context_lex_best_split(struct isl_context *context,
2401 struct isl_tab *tab)
2403 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2404 struct isl_tab_undo *snap;
2405 int r;
2407 snap = isl_tab_snap(clex->tab);
2408 if (isl_tab_push_basis(clex->tab) < 0)
2409 return -1;
2410 r = best_split(tab, clex->tab);
2412 if (r >= 0 && isl_tab_rollback(clex->tab, snap) < 0)
2413 return -1;
2415 return r;
2418 static int context_lex_is_empty(struct isl_context *context)
2420 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2421 if (!clex->tab)
2422 return -1;
2423 return clex->tab->empty;
2426 static void *context_lex_save(struct isl_context *context)
2428 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2429 struct isl_tab_undo *snap;
2431 snap = isl_tab_snap(clex->tab);
2432 if (isl_tab_push_basis(clex->tab) < 0)
2433 return NULL;
2434 if (isl_tab_save_samples(clex->tab) < 0)
2435 return NULL;
2437 return snap;
2440 static void context_lex_restore(struct isl_context *context, void *save)
2442 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2443 if (isl_tab_rollback(clex->tab, (struct isl_tab_undo *)save) < 0) {
2444 isl_tab_free(clex->tab);
2445 clex->tab = NULL;
2449 static void context_lex_discard(void *save)
2453 static int context_lex_is_ok(struct isl_context *context)
2455 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2456 return !!clex->tab;
2459 /* For each variable in the context tableau, check if the variable can
2460 * only attain non-negative values. If so, mark the parameter as non-negative
2461 * in the main tableau. This allows for a more direct identification of some
2462 * cases of violated constraints.
2464 static struct isl_tab *tab_detect_nonnegative_parameters(struct isl_tab *tab,
2465 struct isl_tab *context_tab)
2467 int i;
2468 struct isl_tab_undo *snap;
2469 struct isl_vec *ineq = NULL;
2470 struct isl_tab_var *var;
2471 int n;
2473 if (context_tab->n_var == 0)
2474 return tab;
2476 ineq = isl_vec_alloc(tab->mat->ctx, 1 + context_tab->n_var);
2477 if (!ineq)
2478 goto error;
2480 if (isl_tab_extend_cons(context_tab, 1) < 0)
2481 goto error;
2483 snap = isl_tab_snap(context_tab);
2485 n = 0;
2486 isl_seq_clr(ineq->el, ineq->size);
2487 for (i = 0; i < context_tab->n_var; ++i) {
2488 isl_int_set_si(ineq->el[1 + i], 1);
2489 if (isl_tab_add_ineq(context_tab, ineq->el) < 0)
2490 goto error;
2491 var = &context_tab->con[context_tab->n_con - 1];
2492 if (!context_tab->empty &&
2493 !isl_tab_min_at_most_neg_one(context_tab, var)) {
2494 int j = i;
2495 if (i >= tab->n_param)
2496 j = i - tab->n_param + tab->n_var - tab->n_div;
2497 tab->var[j].is_nonneg = 1;
2498 n++;
2500 isl_int_set_si(ineq->el[1 + i], 0);
2501 if (isl_tab_rollback(context_tab, snap) < 0)
2502 goto error;
2505 if (context_tab->M && n == context_tab->n_var) {
2506 context_tab->mat = isl_mat_drop_cols(context_tab->mat, 2, 1);
2507 context_tab->M = 0;
2510 isl_vec_free(ineq);
2511 return tab;
2512 error:
2513 isl_vec_free(ineq);
2514 isl_tab_free(tab);
2515 return NULL;
2518 static struct isl_tab *context_lex_detect_nonnegative_parameters(
2519 struct isl_context *context, struct isl_tab *tab)
2521 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2522 struct isl_tab_undo *snap;
2524 if (!tab)
2525 return NULL;
2527 snap = isl_tab_snap(clex->tab);
2528 if (isl_tab_push_basis(clex->tab) < 0)
2529 goto error;
2531 tab = tab_detect_nonnegative_parameters(tab, clex->tab);
2533 if (isl_tab_rollback(clex->tab, snap) < 0)
2534 goto error;
2536 return tab;
2537 error:
2538 isl_tab_free(tab);
2539 return NULL;
2542 static void context_lex_invalidate(struct isl_context *context)
2544 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2545 isl_tab_free(clex->tab);
2546 clex->tab = NULL;
2549 static void context_lex_free(struct isl_context *context)
2551 struct isl_context_lex *clex = (struct isl_context_lex *)context;
2552 isl_tab_free(clex->tab);
2553 free(clex);
2556 struct isl_context_op isl_context_lex_op = {
2557 context_lex_detect_nonnegative_parameters,
2558 context_lex_peek_basic_set,
2559 context_lex_peek_tab,
2560 context_lex_add_eq,
2561 context_lex_add_ineq,
2562 context_lex_ineq_sign,
2563 context_lex_test_ineq,
2564 context_lex_get_div,
2565 context_lex_add_div,
2566 context_lex_detect_equalities,
2567 context_lex_best_split,
2568 context_lex_is_empty,
2569 context_lex_is_ok,
2570 context_lex_save,
2571 context_lex_restore,
2572 context_lex_discard,
2573 context_lex_invalidate,
2574 context_lex_free,
2577 static struct isl_tab *context_tab_for_lexmin(struct isl_basic_set *bset)
2579 struct isl_tab *tab;
2581 if (!bset)
2582 return NULL;
2583 tab = tab_for_lexmin((struct isl_basic_map *)bset, NULL, 1, 0);
2584 if (!tab)
2585 goto error;
2586 if (isl_tab_track_bset(tab, bset) < 0)
2587 goto error;
2588 tab = isl_tab_init_samples(tab);
2589 return tab;
2590 error:
2591 isl_basic_set_free(bset);
2592 return NULL;
2595 static struct isl_context *isl_context_lex_alloc(struct isl_basic_set *dom)
2597 struct isl_context_lex *clex;
2599 if (!dom)
2600 return NULL;
2602 clex = isl_alloc_type(dom->ctx, struct isl_context_lex);
2603 if (!clex)
2604 return NULL;
2606 clex->context.op = &isl_context_lex_op;
2608 clex->tab = context_tab_for_lexmin(isl_basic_set_copy(dom));
2609 if (restore_lexmin(clex->tab) < 0)
2610 goto error;
2611 clex->tab = check_integer_feasible(clex->tab);
2612 if (!clex->tab)
2613 goto error;
2615 return &clex->context;
2616 error:
2617 clex->context.op->free(&clex->context);
2618 return NULL;
2621 /* Representation of the context when using generalized basis reduction.
2623 * "shifted" contains the offsets of the unit hypercubes that lie inside the
2624 * context. Any rational point in "shifted" can therefore be rounded
2625 * up to an integer point in the context.
2626 * If the context is constrained by any equality, then "shifted" is not used
2627 * as it would be empty.
2629 struct isl_context_gbr {
2630 struct isl_context context;
2631 struct isl_tab *tab;
2632 struct isl_tab *shifted;
2633 struct isl_tab *cone;
2636 static struct isl_tab *context_gbr_detect_nonnegative_parameters(
2637 struct isl_context *context, struct isl_tab *tab)
2639 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2640 if (!tab)
2641 return NULL;
2642 return tab_detect_nonnegative_parameters(tab, cgbr->tab);
2645 static struct isl_basic_set *context_gbr_peek_basic_set(
2646 struct isl_context *context)
2648 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2649 if (!cgbr->tab)
2650 return NULL;
2651 return isl_tab_peek_bset(cgbr->tab);
2654 static struct isl_tab *context_gbr_peek_tab(struct isl_context *context)
2656 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2657 return cgbr->tab;
2660 /* Initialize the "shifted" tableau of the context, which
2661 * contains the constraints of the original tableau shifted
2662 * by the sum of all negative coefficients. This ensures
2663 * that any rational point in the shifted tableau can
2664 * be rounded up to yield an integer point in the original tableau.
2666 static void gbr_init_shifted(struct isl_context_gbr *cgbr)
2668 int i, j;
2669 struct isl_vec *cst;
2670 struct isl_basic_set *bset = isl_tab_peek_bset(cgbr->tab);
2671 unsigned dim = isl_basic_set_total_dim(bset);
2673 cst = isl_vec_alloc(cgbr->tab->mat->ctx, bset->n_ineq);
2674 if (!cst)
2675 return;
2677 for (i = 0; i < bset->n_ineq; ++i) {
2678 isl_int_set(cst->el[i], bset->ineq[i][0]);
2679 for (j = 0; j < dim; ++j) {
2680 if (!isl_int_is_neg(bset->ineq[i][1 + j]))
2681 continue;
2682 isl_int_add(bset->ineq[i][0], bset->ineq[i][0],
2683 bset->ineq[i][1 + j]);
2687 cgbr->shifted = isl_tab_from_basic_set(bset, 0);
2689 for (i = 0; i < bset->n_ineq; ++i)
2690 isl_int_set(bset->ineq[i][0], cst->el[i]);
2692 isl_vec_free(cst);
2695 /* Check if the shifted tableau is non-empty, and if so
2696 * use the sample point to construct an integer point
2697 * of the context tableau.
2699 static struct isl_vec *gbr_get_shifted_sample(struct isl_context_gbr *cgbr)
2701 struct isl_vec *sample;
2703 if (!cgbr->shifted)
2704 gbr_init_shifted(cgbr);
2705 if (!cgbr->shifted)
2706 return NULL;
2707 if (cgbr->shifted->empty)
2708 return isl_vec_alloc(cgbr->tab->mat->ctx, 0);
2710 sample = isl_tab_get_sample_value(cgbr->shifted);
2711 sample = isl_vec_ceil(sample);
2713 return sample;
2716 static struct isl_basic_set *drop_constant_terms(struct isl_basic_set *bset)
2718 int i;
2720 if (!bset)
2721 return NULL;
2723 for (i = 0; i < bset->n_eq; ++i)
2724 isl_int_set_si(bset->eq[i][0], 0);
2726 for (i = 0; i < bset->n_ineq; ++i)
2727 isl_int_set_si(bset->ineq[i][0], 0);
2729 return bset;
2732 static int use_shifted(struct isl_context_gbr *cgbr)
2734 if (!cgbr->tab)
2735 return 0;
2736 return cgbr->tab->bmap->n_eq == 0 && cgbr->tab->bmap->n_div == 0;
2739 static struct isl_vec *gbr_get_sample(struct isl_context_gbr *cgbr)
2741 struct isl_basic_set *bset;
2742 struct isl_basic_set *cone;
2744 if (isl_tab_sample_is_integer(cgbr->tab))
2745 return isl_tab_get_sample_value(cgbr->tab);
2747 if (use_shifted(cgbr)) {
2748 struct isl_vec *sample;
2750 sample = gbr_get_shifted_sample(cgbr);
2751 if (!sample || sample->size > 0)
2752 return sample;
2754 isl_vec_free(sample);
2757 if (!cgbr->cone) {
2758 bset = isl_tab_peek_bset(cgbr->tab);
2759 cgbr->cone = isl_tab_from_recession_cone(bset, 0);
2760 if (!cgbr->cone)
2761 return NULL;
2762 if (isl_tab_track_bset(cgbr->cone,
2763 isl_basic_set_copy(bset)) < 0)
2764 return NULL;
2766 if (isl_tab_detect_implicit_equalities(cgbr->cone) < 0)
2767 return NULL;
2769 if (cgbr->cone->n_dead == cgbr->cone->n_col) {
2770 struct isl_vec *sample;
2771 struct isl_tab_undo *snap;
2773 if (cgbr->tab->basis) {
2774 if (cgbr->tab->basis->n_col != 1 + cgbr->tab->n_var) {
2775 isl_mat_free(cgbr->tab->basis);
2776 cgbr->tab->basis = NULL;
2778 cgbr->tab->n_zero = 0;
2779 cgbr->tab->n_unbounded = 0;
2782 snap = isl_tab_snap(cgbr->tab);
2784 sample = isl_tab_sample(cgbr->tab);
2786 if (isl_tab_rollback(cgbr->tab, snap) < 0) {
2787 isl_vec_free(sample);
2788 return NULL;
2791 return sample;
2794 cone = isl_basic_set_dup(isl_tab_peek_bset(cgbr->cone));
2795 cone = drop_constant_terms(cone);
2796 cone = isl_basic_set_update_from_tab(cone, cgbr->cone);
2797 cone = isl_basic_set_underlying_set(cone);
2798 cone = isl_basic_set_gauss(cone, NULL);
2800 bset = isl_basic_set_dup(isl_tab_peek_bset(cgbr->tab));
2801 bset = isl_basic_set_update_from_tab(bset, cgbr->tab);
2802 bset = isl_basic_set_underlying_set(bset);
2803 bset = isl_basic_set_gauss(bset, NULL);
2805 return isl_basic_set_sample_with_cone(bset, cone);
2808 static void check_gbr_integer_feasible(struct isl_context_gbr *cgbr)
2810 struct isl_vec *sample;
2812 if (!cgbr->tab)
2813 return;
2815 if (cgbr->tab->empty)
2816 return;
2818 sample = gbr_get_sample(cgbr);
2819 if (!sample)
2820 goto error;
2822 if (sample->size == 0) {
2823 isl_vec_free(sample);
2824 if (isl_tab_mark_empty(cgbr->tab) < 0)
2825 goto error;
2826 return;
2829 if (isl_tab_add_sample(cgbr->tab, sample) < 0)
2830 goto error;
2832 return;
2833 error:
2834 isl_tab_free(cgbr->tab);
2835 cgbr->tab = NULL;
2838 static struct isl_tab *add_gbr_eq(struct isl_tab *tab, isl_int *eq)
2840 if (!tab)
2841 return NULL;
2843 if (isl_tab_extend_cons(tab, 2) < 0)
2844 goto error;
2846 if (isl_tab_add_eq(tab, eq) < 0)
2847 goto error;
2849 return tab;
2850 error:
2851 isl_tab_free(tab);
2852 return NULL;
2855 /* Add the equality described by "eq" to the context.
2856 * If "check" is set, then we check if the context is empty after
2857 * adding the equality.
2858 * If "update" is set, then we check if the samples are still valid.
2860 * We do not explicitly add shifted copies of the equality to
2861 * cgbr->shifted since they would conflict with each other.
2862 * Instead, we directly mark cgbr->shifted empty.
2864 static void context_gbr_add_eq(struct isl_context *context, isl_int *eq,
2865 int check, int update)
2867 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2869 cgbr->tab = add_gbr_eq(cgbr->tab, eq);
2871 if (cgbr->shifted && !cgbr->shifted->empty && use_shifted(cgbr)) {
2872 if (isl_tab_mark_empty(cgbr->shifted) < 0)
2873 goto error;
2876 if (cgbr->cone && cgbr->cone->n_col != cgbr->cone->n_dead) {
2877 if (isl_tab_extend_cons(cgbr->cone, 2) < 0)
2878 goto error;
2879 if (isl_tab_add_eq(cgbr->cone, eq) < 0)
2880 goto error;
2883 if (check) {
2884 int v = tab_has_valid_sample(cgbr->tab, eq, 1);
2885 if (v < 0)
2886 goto error;
2887 if (!v)
2888 check_gbr_integer_feasible(cgbr);
2890 if (update)
2891 cgbr->tab = check_samples(cgbr->tab, eq, 1);
2892 return;
2893 error:
2894 isl_tab_free(cgbr->tab);
2895 cgbr->tab = NULL;
2898 static void add_gbr_ineq(struct isl_context_gbr *cgbr, isl_int *ineq)
2900 if (!cgbr->tab)
2901 return;
2903 if (isl_tab_extend_cons(cgbr->tab, 1) < 0)
2904 goto error;
2906 if (isl_tab_add_ineq(cgbr->tab, ineq) < 0)
2907 goto error;
2909 if (cgbr->shifted && !cgbr->shifted->empty && use_shifted(cgbr)) {
2910 int i;
2911 unsigned dim;
2912 dim = isl_basic_map_total_dim(cgbr->tab->bmap);
2914 if (isl_tab_extend_cons(cgbr->shifted, 1) < 0)
2915 goto error;
2917 for (i = 0; i < dim; ++i) {
2918 if (!isl_int_is_neg(ineq[1 + i]))
2919 continue;
2920 isl_int_add(ineq[0], ineq[0], ineq[1 + i]);
2923 if (isl_tab_add_ineq(cgbr->shifted, ineq) < 0)
2924 goto error;
2926 for (i = 0; i < dim; ++i) {
2927 if (!isl_int_is_neg(ineq[1 + i]))
2928 continue;
2929 isl_int_sub(ineq[0], ineq[0], ineq[1 + i]);
2933 if (cgbr->cone && cgbr->cone->n_col != cgbr->cone->n_dead) {
2934 if (isl_tab_extend_cons(cgbr->cone, 1) < 0)
2935 goto error;
2936 if (isl_tab_add_ineq(cgbr->cone, ineq) < 0)
2937 goto error;
2940 return;
2941 error:
2942 isl_tab_free(cgbr->tab);
2943 cgbr->tab = NULL;
2946 static void context_gbr_add_ineq(struct isl_context *context, isl_int *ineq,
2947 int check, int update)
2949 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2951 add_gbr_ineq(cgbr, ineq);
2952 if (!cgbr->tab)
2953 return;
2955 if (check) {
2956 int v = tab_has_valid_sample(cgbr->tab, ineq, 0);
2957 if (v < 0)
2958 goto error;
2959 if (!v)
2960 check_gbr_integer_feasible(cgbr);
2962 if (update)
2963 cgbr->tab = check_samples(cgbr->tab, ineq, 0);
2964 return;
2965 error:
2966 isl_tab_free(cgbr->tab);
2967 cgbr->tab = NULL;
2970 static int context_gbr_add_ineq_wrap(void *user, isl_int *ineq)
2972 struct isl_context *context = (struct isl_context *)user;
2973 context_gbr_add_ineq(context, ineq, 0, 0);
2974 return context->op->is_ok(context) ? 0 : -1;
2977 static enum isl_tab_row_sign context_gbr_ineq_sign(struct isl_context *context,
2978 isl_int *ineq, int strict)
2980 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2981 return tab_ineq_sign(cgbr->tab, ineq, strict);
2984 /* Check whether "ineq" can be added to the tableau without rendering
2985 * it infeasible.
2987 static int context_gbr_test_ineq(struct isl_context *context, isl_int *ineq)
2989 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
2990 struct isl_tab_undo *snap;
2991 struct isl_tab_undo *shifted_snap = NULL;
2992 struct isl_tab_undo *cone_snap = NULL;
2993 int feasible;
2995 if (!cgbr->tab)
2996 return -1;
2998 if (isl_tab_extend_cons(cgbr->tab, 1) < 0)
2999 return -1;
3001 snap = isl_tab_snap(cgbr->tab);
3002 if (cgbr->shifted)
3003 shifted_snap = isl_tab_snap(cgbr->shifted);
3004 if (cgbr->cone)
3005 cone_snap = isl_tab_snap(cgbr->cone);
3006 add_gbr_ineq(cgbr, ineq);
3007 check_gbr_integer_feasible(cgbr);
3008 if (!cgbr->tab)
3009 return -1;
3010 feasible = !cgbr->tab->empty;
3011 if (isl_tab_rollback(cgbr->tab, snap) < 0)
3012 return -1;
3013 if (shifted_snap) {
3014 if (isl_tab_rollback(cgbr->shifted, shifted_snap))
3015 return -1;
3016 } else if (cgbr->shifted) {
3017 isl_tab_free(cgbr->shifted);
3018 cgbr->shifted = NULL;
3020 if (cone_snap) {
3021 if (isl_tab_rollback(cgbr->cone, cone_snap))
3022 return -1;
3023 } else if (cgbr->cone) {
3024 isl_tab_free(cgbr->cone);
3025 cgbr->cone = NULL;
3028 return feasible;
3031 /* Return the column of the last of the variables associated to
3032 * a column that has a non-zero coefficient.
3033 * This function is called in a context where only coefficients
3034 * of parameters or divs can be non-zero.
3036 static int last_non_zero_var_col(struct isl_tab *tab, isl_int *p)
3038 int i;
3039 int col;
3041 if (tab->n_var == 0)
3042 return -1;
3044 for (i = tab->n_var - 1; i >= 0; --i) {
3045 if (i >= tab->n_param && i < tab->n_var - tab->n_div)
3046 continue;
3047 if (tab->var[i].is_row)
3048 continue;
3049 col = tab->var[i].index;
3050 if (!isl_int_is_zero(p[col]))
3051 return col;
3054 return -1;
3057 /* Look through all the recently added equalities in the context
3058 * to see if we can propagate any of them to the main tableau.
3060 * The newly added equalities in the context are encoded as pairs
3061 * of inequalities starting at inequality "first".
3063 * We tentatively add each of these equalities to the main tableau
3064 * and if this happens to result in a row with a final coefficient
3065 * that is one or negative one, we use it to kill a column
3066 * in the main tableau. Otherwise, we discard the tentatively
3067 * added row.
3069 * Return 0 on success and -1 on failure.
3071 static int propagate_equalities(struct isl_context_gbr *cgbr,
3072 struct isl_tab *tab, unsigned first)
3074 int i;
3075 struct isl_vec *eq = NULL;
3077 eq = isl_vec_alloc(tab->mat->ctx, 1 + tab->n_var);
3078 if (!eq)
3079 goto error;
3081 if (isl_tab_extend_cons(tab, (cgbr->tab->bmap->n_ineq - first)/2) < 0)
3082 goto error;
3084 isl_seq_clr(eq->el + 1 + tab->n_param,
3085 tab->n_var - tab->n_param - tab->n_div);
3086 for (i = first; i < cgbr->tab->bmap->n_ineq; i += 2) {
3087 int j;
3088 int r;
3089 struct isl_tab_undo *snap;
3090 snap = isl_tab_snap(tab);
3092 isl_seq_cpy(eq->el, cgbr->tab->bmap->ineq[i], 1 + tab->n_param);
3093 isl_seq_cpy(eq->el + 1 + tab->n_var - tab->n_div,
3094 cgbr->tab->bmap->ineq[i] + 1 + tab->n_param,
3095 tab->n_div);
3097 r = isl_tab_add_row(tab, eq->el);
3098 if (r < 0)
3099 goto error;
3100 r = tab->con[r].index;
3101 j = last_non_zero_var_col(tab, tab->mat->row[r] + 2 + tab->M);
3102 if (j < 0 || j < tab->n_dead ||
3103 !isl_int_is_one(tab->mat->row[r][0]) ||
3104 (!isl_int_is_one(tab->mat->row[r][2 + tab->M + j]) &&
3105 !isl_int_is_negone(tab->mat->row[r][2 + tab->M + j]))) {
3106 if (isl_tab_rollback(tab, snap) < 0)
3107 goto error;
3108 continue;
3110 if (isl_tab_pivot(tab, r, j) < 0)
3111 goto error;
3112 if (isl_tab_kill_col(tab, j) < 0)
3113 goto error;
3115 if (restore_lexmin(tab) < 0)
3116 goto error;
3119 isl_vec_free(eq);
3121 return 0;
3122 error:
3123 isl_vec_free(eq);
3124 isl_tab_free(cgbr->tab);
3125 cgbr->tab = NULL;
3126 return -1;
3129 static int context_gbr_detect_equalities(struct isl_context *context,
3130 struct isl_tab *tab)
3132 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3133 struct isl_ctx *ctx;
3134 unsigned n_ineq;
3136 ctx = cgbr->tab->mat->ctx;
3138 if (!cgbr->cone) {
3139 struct isl_basic_set *bset = isl_tab_peek_bset(cgbr->tab);
3140 cgbr->cone = isl_tab_from_recession_cone(bset, 0);
3141 if (!cgbr->cone)
3142 goto error;
3143 if (isl_tab_track_bset(cgbr->cone,
3144 isl_basic_set_copy(bset)) < 0)
3145 goto error;
3147 if (isl_tab_detect_implicit_equalities(cgbr->cone) < 0)
3148 goto error;
3150 n_ineq = cgbr->tab->bmap->n_ineq;
3151 cgbr->tab = isl_tab_detect_equalities(cgbr->tab, cgbr->cone);
3152 if (!cgbr->tab)
3153 return -1;
3154 if (cgbr->tab->bmap->n_ineq > n_ineq &&
3155 propagate_equalities(cgbr, tab, n_ineq) < 0)
3156 return -1;
3158 return 0;
3159 error:
3160 isl_tab_free(cgbr->tab);
3161 cgbr->tab = NULL;
3162 return -1;
3165 static int context_gbr_get_div(struct isl_context *context, struct isl_tab *tab,
3166 struct isl_vec *div)
3168 return get_div(tab, context, div);
3171 static int context_gbr_add_div(struct isl_context *context, struct isl_vec *div)
3173 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3174 if (cgbr->cone) {
3175 int k;
3177 if (isl_tab_extend_cons(cgbr->cone, 3) < 0)
3178 return -1;
3179 if (isl_tab_extend_vars(cgbr->cone, 1) < 0)
3180 return -1;
3181 if (isl_tab_allocate_var(cgbr->cone) <0)
3182 return -1;
3184 cgbr->cone->bmap = isl_basic_map_extend_space(cgbr->cone->bmap,
3185 isl_basic_map_get_space(cgbr->cone->bmap), 1, 0, 2);
3186 k = isl_basic_map_alloc_div(cgbr->cone->bmap);
3187 if (k < 0)
3188 return -1;
3189 isl_seq_cpy(cgbr->cone->bmap->div[k], div->el, div->size);
3190 if (isl_tab_push(cgbr->cone, isl_tab_undo_bmap_div) < 0)
3191 return -1;
3193 return context_tab_add_div(cgbr->tab, div,
3194 context_gbr_add_ineq_wrap, context);
3197 static int context_gbr_best_split(struct isl_context *context,
3198 struct isl_tab *tab)
3200 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3201 struct isl_tab_undo *snap;
3202 int r;
3204 snap = isl_tab_snap(cgbr->tab);
3205 r = best_split(tab, cgbr->tab);
3207 if (r >= 0 && isl_tab_rollback(cgbr->tab, snap) < 0)
3208 return -1;
3210 return r;
3213 static int context_gbr_is_empty(struct isl_context *context)
3215 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3216 if (!cgbr->tab)
3217 return -1;
3218 return cgbr->tab->empty;
3221 struct isl_gbr_tab_undo {
3222 struct isl_tab_undo *tab_snap;
3223 struct isl_tab_undo *shifted_snap;
3224 struct isl_tab_undo *cone_snap;
3227 static void *context_gbr_save(struct isl_context *context)
3229 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3230 struct isl_gbr_tab_undo *snap;
3232 if (!cgbr->tab)
3233 return NULL;
3235 snap = isl_alloc_type(cgbr->tab->mat->ctx, struct isl_gbr_tab_undo);
3236 if (!snap)
3237 return NULL;
3239 snap->tab_snap = isl_tab_snap(cgbr->tab);
3240 if (isl_tab_save_samples(cgbr->tab) < 0)
3241 goto error;
3243 if (cgbr->shifted)
3244 snap->shifted_snap = isl_tab_snap(cgbr->shifted);
3245 else
3246 snap->shifted_snap = NULL;
3248 if (cgbr->cone)
3249 snap->cone_snap = isl_tab_snap(cgbr->cone);
3250 else
3251 snap->cone_snap = NULL;
3253 return snap;
3254 error:
3255 free(snap);
3256 return NULL;
3259 static void context_gbr_restore(struct isl_context *context, void *save)
3261 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3262 struct isl_gbr_tab_undo *snap = (struct isl_gbr_tab_undo *)save;
3263 if (!snap)
3264 goto error;
3265 if (isl_tab_rollback(cgbr->tab, snap->tab_snap) < 0) {
3266 isl_tab_free(cgbr->tab);
3267 cgbr->tab = NULL;
3270 if (snap->shifted_snap) {
3271 if (isl_tab_rollback(cgbr->shifted, snap->shifted_snap) < 0)
3272 goto error;
3273 } else if (cgbr->shifted) {
3274 isl_tab_free(cgbr->shifted);
3275 cgbr->shifted = NULL;
3278 if (snap->cone_snap) {
3279 if (isl_tab_rollback(cgbr->cone, snap->cone_snap) < 0)
3280 goto error;
3281 } else if (cgbr->cone) {
3282 isl_tab_free(cgbr->cone);
3283 cgbr->cone = NULL;
3286 free(snap);
3288 return;
3289 error:
3290 free(snap);
3291 isl_tab_free(cgbr->tab);
3292 cgbr->tab = NULL;
3295 static void context_gbr_discard(void *save)
3297 struct isl_gbr_tab_undo *snap = (struct isl_gbr_tab_undo *)save;
3298 free(snap);
3301 static int context_gbr_is_ok(struct isl_context *context)
3303 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3304 return !!cgbr->tab;
3307 static void context_gbr_invalidate(struct isl_context *context)
3309 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3310 isl_tab_free(cgbr->tab);
3311 cgbr->tab = NULL;
3314 static void context_gbr_free(struct isl_context *context)
3316 struct isl_context_gbr *cgbr = (struct isl_context_gbr *)context;
3317 isl_tab_free(cgbr->tab);
3318 isl_tab_free(cgbr->shifted);
3319 isl_tab_free(cgbr->cone);
3320 free(cgbr);
3323 struct isl_context_op isl_context_gbr_op = {
3324 context_gbr_detect_nonnegative_parameters,
3325 context_gbr_peek_basic_set,
3326 context_gbr_peek_tab,
3327 context_gbr_add_eq,
3328 context_gbr_add_ineq,
3329 context_gbr_ineq_sign,
3330 context_gbr_test_ineq,
3331 context_gbr_get_div,
3332 context_gbr_add_div,
3333 context_gbr_detect_equalities,
3334 context_gbr_best_split,
3335 context_gbr_is_empty,
3336 context_gbr_is_ok,
3337 context_gbr_save,
3338 context_gbr_restore,
3339 context_gbr_discard,
3340 context_gbr_invalidate,
3341 context_gbr_free,
3344 static struct isl_context *isl_context_gbr_alloc(struct isl_basic_set *dom)
3346 struct isl_context_gbr *cgbr;
3348 if (!dom)
3349 return NULL;
3351 cgbr = isl_calloc_type(dom->ctx, struct isl_context_gbr);
3352 if (!cgbr)
3353 return NULL;
3355 cgbr->context.op = &isl_context_gbr_op;
3357 cgbr->shifted = NULL;
3358 cgbr->cone = NULL;
3359 cgbr->tab = isl_tab_from_basic_set(dom, 1);
3360 cgbr->tab = isl_tab_init_samples(cgbr->tab);
3361 if (!cgbr->tab)
3362 goto error;
3363 check_gbr_integer_feasible(cgbr);
3365 return &cgbr->context;
3366 error:
3367 cgbr->context.op->free(&cgbr->context);
3368 return NULL;
3371 static struct isl_context *isl_context_alloc(struct isl_basic_set *dom)
3373 if (!dom)
3374 return NULL;
3376 if (dom->ctx->opt->context == ISL_CONTEXT_LEXMIN)
3377 return isl_context_lex_alloc(dom);
3378 else
3379 return isl_context_gbr_alloc(dom);
3382 /* Construct an isl_sol_map structure for accumulating the solution.
3383 * If track_empty is set, then we also keep track of the parts
3384 * of the context where there is no solution.
3385 * If max is set, then we are solving a maximization, rather than
3386 * a minimization problem, which means that the variables in the
3387 * tableau have value "M - x" rather than "M + x".
3389 static struct isl_sol *sol_map_init(struct isl_basic_map *bmap,
3390 struct isl_basic_set *dom, int track_empty, int max)
3392 struct isl_sol_map *sol_map = NULL;
3394 if (!bmap)
3395 goto error;
3397 sol_map = isl_calloc_type(bmap->ctx, struct isl_sol_map);
3398 if (!sol_map)
3399 goto error;
3401 sol_map->sol.rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
3402 sol_map->sol.dec_level.callback.run = &sol_dec_level_wrap;
3403 sol_map->sol.dec_level.sol = &sol_map->sol;
3404 sol_map->sol.max = max;
3405 sol_map->sol.n_out = isl_basic_map_dim(bmap, isl_dim_out);
3406 sol_map->sol.add = &sol_map_add_wrap;
3407 sol_map->sol.add_empty = track_empty ? &sol_map_add_empty_wrap : NULL;
3408 sol_map->sol.free = &sol_map_free_wrap;
3409 sol_map->map = isl_map_alloc_space(isl_basic_map_get_space(bmap), 1,
3410 ISL_MAP_DISJOINT);
3411 if (!sol_map->map)
3412 goto error;
3414 sol_map->sol.context = isl_context_alloc(dom);
3415 if (!sol_map->sol.context)
3416 goto error;
3418 if (track_empty) {
3419 sol_map->empty = isl_set_alloc_space(isl_basic_set_get_space(dom),
3420 1, ISL_SET_DISJOINT);
3421 if (!sol_map->empty)
3422 goto error;
3425 isl_basic_set_free(dom);
3426 return &sol_map->sol;
3427 error:
3428 isl_basic_set_free(dom);
3429 sol_map_free(sol_map);
3430 return NULL;
3433 /* Check whether all coefficients of (non-parameter) variables
3434 * are non-positive, meaning that no pivots can be performed on the row.
3436 static int is_critical(struct isl_tab *tab, int row)
3438 int j;
3439 unsigned off = 2 + tab->M;
3441 for (j = tab->n_dead; j < tab->n_col; ++j) {
3442 if (tab->col_var[j] >= 0 &&
3443 (tab->col_var[j] < tab->n_param ||
3444 tab->col_var[j] >= tab->n_var - tab->n_div))
3445 continue;
3447 if (isl_int_is_pos(tab->mat->row[row][off + j]))
3448 return 0;
3451 return 1;
3454 /* Check whether the inequality represented by vec is strict over the integers,
3455 * i.e., there are no integer values satisfying the constraint with
3456 * equality. This happens if the gcd of the coefficients is not a divisor
3457 * of the constant term. If so, scale the constraint down by the gcd
3458 * of the coefficients.
3460 static int is_strict(struct isl_vec *vec)
3462 isl_int gcd;
3463 int strict = 0;
3465 isl_int_init(gcd);
3466 isl_seq_gcd(vec->el + 1, vec->size - 1, &gcd);
3467 if (!isl_int_is_one(gcd)) {
3468 strict = !isl_int_is_divisible_by(vec->el[0], gcd);
3469 isl_int_fdiv_q(vec->el[0], vec->el[0], gcd);
3470 isl_seq_scale_down(vec->el + 1, vec->el + 1, gcd, vec->size-1);
3472 isl_int_clear(gcd);
3474 return strict;
3477 /* Determine the sign of the given row of the main tableau.
3478 * The result is one of
3479 * isl_tab_row_pos: always non-negative; no pivot needed
3480 * isl_tab_row_neg: always non-positive; pivot
3481 * isl_tab_row_any: can be both positive and negative; split
3483 * We first handle some simple cases
3484 * - the row sign may be known already
3485 * - the row may be obviously non-negative
3486 * - the parametric constant may be equal to that of another row
3487 * for which we know the sign. This sign will be either "pos" or
3488 * "any". If it had been "neg" then we would have pivoted before.
3490 * If none of these cases hold, we check the value of the row for each
3491 * of the currently active samples. Based on the signs of these values
3492 * we make an initial determination of the sign of the row.
3494 * all zero -> unk(nown)
3495 * all non-negative -> pos
3496 * all non-positive -> neg
3497 * both negative and positive -> all
3499 * If we end up with "all", we are done.
3500 * Otherwise, we perform a check for positive and/or negative
3501 * values as follows.
3503 * samples neg unk pos
3504 * <0 ? Y N Y N
3505 * pos any pos
3506 * >0 ? Y N Y N
3507 * any neg any neg
3509 * There is no special sign for "zero", because we can usually treat zero
3510 * as either non-negative or non-positive, whatever works out best.
3511 * However, if the row is "critical", meaning that pivoting is impossible
3512 * then we don't want to limp zero with the non-positive case, because
3513 * then we we would lose the solution for those values of the parameters
3514 * where the value of the row is zero. Instead, we treat 0 as non-negative
3515 * ensuring a split if the row can attain both zero and negative values.
3516 * The same happens when the original constraint was one that could not
3517 * be satisfied with equality by any integer values of the parameters.
3518 * In this case, we normalize the constraint, but then a value of zero
3519 * for the normalized constraint is actually a positive value for the
3520 * original constraint, so again we need to treat zero as non-negative.
3521 * In both these cases, we have the following decision tree instead:
3523 * all non-negative -> pos
3524 * all negative -> neg
3525 * both negative and non-negative -> all
3527 * samples neg pos
3528 * <0 ? Y N
3529 * any pos
3530 * >=0 ? Y N
3531 * any neg
3533 static enum isl_tab_row_sign row_sign(struct isl_tab *tab,
3534 struct isl_sol *sol, int row)
3536 struct isl_vec *ineq = NULL;
3537 enum isl_tab_row_sign res = isl_tab_row_unknown;
3538 int critical;
3539 int strict;
3540 int row2;
3542 if (tab->row_sign[row] != isl_tab_row_unknown)
3543 return tab->row_sign[row];
3544 if (is_obviously_nonneg(tab, row))
3545 return isl_tab_row_pos;
3546 for (row2 = tab->n_redundant; row2 < tab->n_row; ++row2) {
3547 if (tab->row_sign[row2] == isl_tab_row_unknown)
3548 continue;
3549 if (identical_parameter_line(tab, row, row2))
3550 return tab->row_sign[row2];
3553 critical = is_critical(tab, row);
3555 ineq = get_row_parameter_ineq(tab, row);
3556 if (!ineq)
3557 goto error;
3559 strict = is_strict(ineq);
3561 res = sol->context->op->ineq_sign(sol->context, ineq->el,
3562 critical || strict);
3564 if (res == isl_tab_row_unknown || res == isl_tab_row_pos) {
3565 /* test for negative values */
3566 int feasible;
3567 isl_seq_neg(ineq->el, ineq->el, ineq->size);
3568 isl_int_sub_ui(ineq->el[0], ineq->el[0], 1);
3570 feasible = sol->context->op->test_ineq(sol->context, ineq->el);
3571 if (feasible < 0)
3572 goto error;
3573 if (!feasible)
3574 res = isl_tab_row_pos;
3575 else
3576 res = (res == isl_tab_row_unknown) ? isl_tab_row_neg
3577 : isl_tab_row_any;
3578 if (res == isl_tab_row_neg) {
3579 isl_seq_neg(ineq->el, ineq->el, ineq->size);
3580 isl_int_sub_ui(ineq->el[0], ineq->el[0], 1);
3584 if (res == isl_tab_row_neg) {
3585 /* test for positive values */
3586 int feasible;
3587 if (!critical && !strict)
3588 isl_int_sub_ui(ineq->el[0], ineq->el[0], 1);
3590 feasible = sol->context->op->test_ineq(sol->context, ineq->el);
3591 if (feasible < 0)
3592 goto error;
3593 if (feasible)
3594 res = isl_tab_row_any;
3597 isl_vec_free(ineq);
3598 return res;
3599 error:
3600 isl_vec_free(ineq);
3601 return isl_tab_row_unknown;
3604 static void find_solutions(struct isl_sol *sol, struct isl_tab *tab);
3606 /* Find solutions for values of the parameters that satisfy the given
3607 * inequality.
3609 * We currently take a snapshot of the context tableau that is reset
3610 * when we return from this function, while we make a copy of the main
3611 * tableau, leaving the original main tableau untouched.
3612 * These are fairly arbitrary choices. Making a copy also of the context
3613 * tableau would obviate the need to undo any changes made to it later,
3614 * while taking a snapshot of the main tableau could reduce memory usage.
3615 * If we were to switch to taking a snapshot of the main tableau,
3616 * we would have to keep in mind that we need to save the row signs
3617 * and that we need to do this before saving the current basis
3618 * such that the basis has been restore before we restore the row signs.
3620 static void find_in_pos(struct isl_sol *sol, struct isl_tab *tab, isl_int *ineq)
3622 void *saved;
3624 if (!sol->context)
3625 goto error;
3626 saved = sol->context->op->save(sol->context);
3628 tab = isl_tab_dup(tab);
3629 if (!tab)
3630 goto error;
3632 sol->context->op->add_ineq(sol->context, ineq, 0, 1);
3634 find_solutions(sol, tab);
3636 if (!sol->error)
3637 sol->context->op->restore(sol->context, saved);
3638 else
3639 sol->context->op->discard(saved);
3640 return;
3641 error:
3642 sol->error = 1;
3645 /* Record the absence of solutions for those values of the parameters
3646 * that do not satisfy the given inequality with equality.
3648 static void no_sol_in_strict(struct isl_sol *sol,
3649 struct isl_tab *tab, struct isl_vec *ineq)
3651 int empty;
3652 void *saved;
3654 if (!sol->context || sol->error)
3655 goto error;
3656 saved = sol->context->op->save(sol->context);
3658 isl_int_sub_ui(ineq->el[0], ineq->el[0], 1);
3660 sol->context->op->add_ineq(sol->context, ineq->el, 1, 0);
3661 if (!sol->context)
3662 goto error;
3664 empty = tab->empty;
3665 tab->empty = 1;
3666 sol_add(sol, tab);
3667 tab->empty = empty;
3669 isl_int_add_ui(ineq->el[0], ineq->el[0], 1);
3671 sol->context->op->restore(sol->context, saved);
3672 return;
3673 error:
3674 sol->error = 1;
3677 /* Compute the lexicographic minimum of the set represented by the main
3678 * tableau "tab" within the context "sol->context_tab".
3679 * On entry the sample value of the main tableau is lexicographically
3680 * less than or equal to this lexicographic minimum.
3681 * Pivots are performed until a feasible point is found, which is then
3682 * necessarily equal to the minimum, or until the tableau is found to
3683 * be infeasible. Some pivots may need to be performed for only some
3684 * feasible values of the context tableau. If so, the context tableau
3685 * is split into a part where the pivot is needed and a part where it is not.
3687 * Whenever we enter the main loop, the main tableau is such that no
3688 * "obvious" pivots need to be performed on it, where "obvious" means
3689 * that the given row can be seen to be negative without looking at
3690 * the context tableau. In particular, for non-parametric problems,
3691 * no pivots need to be performed on the main tableau.
3692 * The caller of find_solutions is responsible for making this property
3693 * hold prior to the first iteration of the loop, while restore_lexmin
3694 * is called before every other iteration.
3696 * Inside the main loop, we first examine the signs of the rows of
3697 * the main tableau within the context of the context tableau.
3698 * If we find a row that is always non-positive for all values of
3699 * the parameters satisfying the context tableau and negative for at
3700 * least one value of the parameters, we perform the appropriate pivot
3701 * and start over. An exception is the case where no pivot can be
3702 * performed on the row. In this case, we require that the sign of
3703 * the row is negative for all values of the parameters (rather than just
3704 * non-positive). This special case is handled inside row_sign, which
3705 * will say that the row can have any sign if it determines that it can
3706 * attain both negative and zero values.
3708 * If we can't find a row that always requires a pivot, but we can find
3709 * one or more rows that require a pivot for some values of the parameters
3710 * (i.e., the row can attain both positive and negative signs), then we split
3711 * the context tableau into two parts, one where we force the sign to be
3712 * non-negative and one where we force is to be negative.
3713 * The non-negative part is handled by a recursive call (through find_in_pos).
3714 * Upon returning from this call, we continue with the negative part and
3715 * perform the required pivot.
3717 * If no such rows can be found, all rows are non-negative and we have
3718 * found a (rational) feasible point. If we only wanted a rational point
3719 * then we are done.
3720 * Otherwise, we check if all values of the sample point of the tableau
3721 * are integral for the variables. If so, we have found the minimal
3722 * integral point and we are done.
3723 * If the sample point is not integral, then we need to make a distinction
3724 * based on whether the constant term is non-integral or the coefficients
3725 * of the parameters. Furthermore, in order to decide how to handle
3726 * the non-integrality, we also need to know whether the coefficients
3727 * of the other columns in the tableau are integral. This leads
3728 * to the following table. The first two rows do not correspond
3729 * to a non-integral sample point and are only mentioned for completeness.
3731 * constant parameters other
3733 * int int int |
3734 * int int rat | -> no problem
3736 * rat int int -> fail
3738 * rat int rat -> cut
3740 * int rat rat |
3741 * rat rat rat | -> parametric cut
3743 * int rat int |
3744 * rat rat int | -> split context
3746 * If the parametric constant is completely integral, then there is nothing
3747 * to be done. If the constant term is non-integral, but all the other
3748 * coefficient are integral, then there is nothing that can be done
3749 * and the tableau has no integral solution.
3750 * If, on the other hand, one or more of the other columns have rational
3751 * coefficients, but the parameter coefficients are all integral, then
3752 * we can perform a regular (non-parametric) cut.
3753 * Finally, if there is any parameter coefficient that is non-integral,
3754 * then we need to involve the context tableau. There are two cases here.
3755 * If at least one other column has a rational coefficient, then we
3756 * can perform a parametric cut in the main tableau by adding a new
3757 * integer division in the context tableau.
3758 * If all other columns have integral coefficients, then we need to
3759 * enforce that the rational combination of parameters (c + \sum a_i y_i)/m
3760 * is always integral. We do this by introducing an integer division
3761 * q = floor((c + \sum a_i y_i)/m) and stipulating that its argument should
3762 * always be integral in the context tableau, i.e., m q = c + \sum a_i y_i.
3763 * Since q is expressed in the tableau as
3764 * c + \sum a_i y_i - m q >= 0
3765 * -c - \sum a_i y_i + m q + m - 1 >= 0
3766 * it is sufficient to add the inequality
3767 * -c - \sum a_i y_i + m q >= 0
3768 * In the part of the context where this inequality does not hold, the
3769 * main tableau is marked as being empty.
3771 static void find_solutions(struct isl_sol *sol, struct isl_tab *tab)
3773 struct isl_context *context;
3774 int r;
3776 if (!tab || sol->error)
3777 goto error;
3779 context = sol->context;
3781 if (tab->empty)
3782 goto done;
3783 if (context->op->is_empty(context))
3784 goto done;
3786 for (r = 0; r >= 0 && tab && !tab->empty; r = restore_lexmin(tab)) {
3787 int flags;
3788 int row;
3789 enum isl_tab_row_sign sgn;
3790 int split = -1;
3791 int n_split = 0;
3793 for (row = tab->n_redundant; row < tab->n_row; ++row) {
3794 if (!isl_tab_var_from_row(tab, row)->is_nonneg)
3795 continue;
3796 sgn = row_sign(tab, sol, row);
3797 if (!sgn)
3798 goto error;
3799 tab->row_sign[row] = sgn;
3800 if (sgn == isl_tab_row_any)
3801 n_split++;
3802 if (sgn == isl_tab_row_any && split == -1)
3803 split = row;
3804 if (sgn == isl_tab_row_neg)
3805 break;
3807 if (row < tab->n_row)
3808 continue;
3809 if (split != -1) {
3810 struct isl_vec *ineq;
3811 if (n_split != 1)
3812 split = context->op->best_split(context, tab);
3813 if (split < 0)
3814 goto error;
3815 ineq = get_row_parameter_ineq(tab, split);
3816 if (!ineq)
3817 goto error;
3818 is_strict(ineq);
3819 for (row = tab->n_redundant; row < tab->n_row; ++row) {
3820 if (!isl_tab_var_from_row(tab, row)->is_nonneg)
3821 continue;
3822 if (tab->row_sign[row] == isl_tab_row_any)
3823 tab->row_sign[row] = isl_tab_row_unknown;
3825 tab->row_sign[split] = isl_tab_row_pos;
3826 sol_inc_level(sol);
3827 find_in_pos(sol, tab, ineq->el);
3828 tab->row_sign[split] = isl_tab_row_neg;
3829 row = split;
3830 isl_seq_neg(ineq->el, ineq->el, ineq->size);
3831 isl_int_sub_ui(ineq->el[0], ineq->el[0], 1);
3832 if (!sol->error)
3833 context->op->add_ineq(context, ineq->el, 0, 1);
3834 isl_vec_free(ineq);
3835 if (sol->error)
3836 goto error;
3837 continue;
3839 if (tab->rational)
3840 break;
3841 row = first_non_integer_row(tab, &flags);
3842 if (row < 0)
3843 break;
3844 if (ISL_FL_ISSET(flags, I_PAR)) {
3845 if (ISL_FL_ISSET(flags, I_VAR)) {
3846 if (isl_tab_mark_empty(tab) < 0)
3847 goto error;
3848 break;
3850 row = add_cut(tab, row);
3851 } else if (ISL_FL_ISSET(flags, I_VAR)) {
3852 struct isl_vec *div;
3853 struct isl_vec *ineq;
3854 int d;
3855 div = get_row_split_div(tab, row);
3856 if (!div)
3857 goto error;
3858 d = context->op->get_div(context, tab, div);
3859 isl_vec_free(div);
3860 if (d < 0)
3861 goto error;
3862 ineq = ineq_for_div(context->op->peek_basic_set(context), d);
3863 if (!ineq)
3864 goto error;
3865 sol_inc_level(sol);
3866 no_sol_in_strict(sol, tab, ineq);
3867 isl_seq_neg(ineq->el, ineq->el, ineq->size);
3868 context->op->add_ineq(context, ineq->el, 1, 1);
3869 isl_vec_free(ineq);
3870 if (sol->error || !context->op->is_ok(context))
3871 goto error;
3872 tab = set_row_cst_to_div(tab, row, d);
3873 if (context->op->is_empty(context))
3874 break;
3875 } else
3876 row = add_parametric_cut(tab, row, context);
3877 if (row < 0)
3878 goto error;
3880 if (r < 0)
3881 goto error;
3882 done:
3883 sol_add(sol, tab);
3884 isl_tab_free(tab);
3885 return;
3886 error:
3887 isl_tab_free(tab);
3888 sol->error = 1;
3891 /* Does "sol" contain a pair of partial solutions that could potentially
3892 * be merged?
3894 * We currently only check that "sol" is not in an error state
3895 * and that there are at least two partial solutions of which the final two
3896 * are defined at the same level.
3898 static int sol_has_mergeable_solutions(struct isl_sol *sol)
3900 if (sol->error)
3901 return 0;
3902 if (!sol->partial)
3903 return 0;
3904 if (!sol->partial->next)
3905 return 0;
3906 return sol->partial->level == sol->partial->next->level;
3909 /* Compute the lexicographic minimum of the set represented by the main
3910 * tableau "tab" within the context "sol->context_tab".
3912 * As a preprocessing step, we first transfer all the purely parametric
3913 * equalities from the main tableau to the context tableau, i.e.,
3914 * parameters that have been pivoted to a row.
3915 * These equalities are ignored by the main algorithm, because the
3916 * corresponding rows may not be marked as being non-negative.
3917 * In parts of the context where the added equality does not hold,
3918 * the main tableau is marked as being empty.
3920 * Before we embark on the actual computation, we save a copy
3921 * of the context. When we return, we check if there are any
3922 * partial solutions that can potentially be merged. If so,
3923 * we perform a rollback to the initial state of the context.
3924 * The merging of partial solutions happens inside calls to
3925 * sol_dec_level that are pushed onto the undo stack of the context.
3926 * If there are no partial solutions that can potentially be merged
3927 * then the rollback is skipped as it would just be wasted effort.
3929 static void find_solutions_main(struct isl_sol *sol, struct isl_tab *tab)
3931 int row;
3932 void *saved;
3934 if (!tab)
3935 goto error;
3937 sol->level = 0;
3939 for (row = tab->n_redundant; row < tab->n_row; ++row) {
3940 int p;
3941 struct isl_vec *eq;
3943 if (tab->row_var[row] < 0)
3944 continue;
3945 if (tab->row_var[row] >= tab->n_param &&
3946 tab->row_var[row] < tab->n_var - tab->n_div)
3947 continue;
3948 if (tab->row_var[row] < tab->n_param)
3949 p = tab->row_var[row];
3950 else
3951 p = tab->row_var[row]
3952 + tab->n_param - (tab->n_var - tab->n_div);
3954 eq = isl_vec_alloc(tab->mat->ctx, 1+tab->n_param+tab->n_div);
3955 if (!eq)
3956 goto error;
3957 get_row_parameter_line(tab, row, eq->el);
3958 isl_int_neg(eq->el[1 + p], tab->mat->row[row][0]);
3959 eq = isl_vec_normalize(eq);
3961 sol_inc_level(sol);
3962 no_sol_in_strict(sol, tab, eq);
3964 isl_seq_neg(eq->el, eq->el, eq->size);
3965 sol_inc_level(sol);
3966 no_sol_in_strict(sol, tab, eq);
3967 isl_seq_neg(eq->el, eq->el, eq->size);
3969 sol->context->op->add_eq(sol->context, eq->el, 1, 1);
3971 isl_vec_free(eq);
3973 if (isl_tab_mark_redundant(tab, row) < 0)
3974 goto error;
3976 if (sol->context->op->is_empty(sol->context))
3977 break;
3979 row = tab->n_redundant - 1;
3982 saved = sol->context->op->save(sol->context);
3984 find_solutions(sol, tab);
3986 if (sol_has_mergeable_solutions(sol))
3987 sol->context->op->restore(sol->context, saved);
3988 else
3989 sol->context->op->discard(saved);
3991 sol->level = 0;
3992 sol_pop(sol);
3994 return;
3995 error:
3996 isl_tab_free(tab);
3997 sol->error = 1;
4000 /* Check if integer division "div" of "dom" also occurs in "bmap".
4001 * If so, return its position within the divs.
4002 * If not, return -1.
4004 static int find_context_div(struct isl_basic_map *bmap,
4005 struct isl_basic_set *dom, unsigned div)
4007 int i;
4008 unsigned b_dim = isl_space_dim(bmap->dim, isl_dim_all);
4009 unsigned d_dim = isl_space_dim(dom->dim, isl_dim_all);
4011 if (isl_int_is_zero(dom->div[div][0]))
4012 return -1;
4013 if (isl_seq_first_non_zero(dom->div[div] + 2 + d_dim, dom->n_div) != -1)
4014 return -1;
4016 for (i = 0; i < bmap->n_div; ++i) {
4017 if (isl_int_is_zero(bmap->div[i][0]))
4018 continue;
4019 if (isl_seq_first_non_zero(bmap->div[i] + 2 + d_dim,
4020 (b_dim - d_dim) + bmap->n_div) != -1)
4021 continue;
4022 if (isl_seq_eq(bmap->div[i], dom->div[div], 2 + d_dim))
4023 return i;
4025 return -1;
4028 /* The correspondence between the variables in the main tableau,
4029 * the context tableau, and the input map and domain is as follows.
4030 * The first n_param and the last n_div variables of the main tableau
4031 * form the variables of the context tableau.
4032 * In the basic map, these n_param variables correspond to the
4033 * parameters and the input dimensions. In the domain, they correspond
4034 * to the parameters and the set dimensions.
4035 * The n_div variables correspond to the integer divisions in the domain.
4036 * To ensure that everything lines up, we may need to copy some of the
4037 * integer divisions of the domain to the map. These have to be placed
4038 * in the same order as those in the context and they have to be placed
4039 * after any other integer divisions that the map may have.
4040 * This function performs the required reordering.
4042 static struct isl_basic_map *align_context_divs(struct isl_basic_map *bmap,
4043 struct isl_basic_set *dom)
4045 int i;
4046 int common = 0;
4047 int other;
4049 for (i = 0; i < dom->n_div; ++i)
4050 if (find_context_div(bmap, dom, i) != -1)
4051 common++;
4052 other = bmap->n_div - common;
4053 if (dom->n_div - common > 0) {
4054 bmap = isl_basic_map_extend_space(bmap, isl_space_copy(bmap->dim),
4055 dom->n_div - common, 0, 0);
4056 if (!bmap)
4057 return NULL;
4059 for (i = 0; i < dom->n_div; ++i) {
4060 int pos = find_context_div(bmap, dom, i);
4061 if (pos < 0) {
4062 pos = isl_basic_map_alloc_div(bmap);
4063 if (pos < 0)
4064 goto error;
4065 isl_int_set_si(bmap->div[pos][0], 0);
4067 if (pos != other + i)
4068 isl_basic_map_swap_div(bmap, pos, other + i);
4070 return bmap;
4071 error:
4072 isl_basic_map_free(bmap);
4073 return NULL;
4076 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
4077 * some obvious symmetries.
4079 * We make sure the divs in the domain are properly ordered,
4080 * because they will be added one by one in the given order
4081 * during the construction of the solution map.
4083 static struct isl_sol *basic_map_partial_lexopt_base(
4084 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4085 __isl_give isl_set **empty, int max,
4086 struct isl_sol *(*init)(__isl_keep isl_basic_map *bmap,
4087 __isl_take isl_basic_set *dom, int track_empty, int max))
4089 struct isl_tab *tab;
4090 struct isl_sol *sol = NULL;
4091 struct isl_context *context;
4093 if (dom->n_div) {
4094 dom = isl_basic_set_order_divs(dom);
4095 bmap = align_context_divs(bmap, dom);
4097 sol = init(bmap, dom, !!empty, max);
4098 if (!sol)
4099 goto error;
4101 context = sol->context;
4102 if (isl_basic_set_plain_is_empty(context->op->peek_basic_set(context)))
4103 /* nothing */;
4104 else if (isl_basic_map_plain_is_empty(bmap)) {
4105 if (sol->add_empty)
4106 sol->add_empty(sol,
4107 isl_basic_set_copy(context->op->peek_basic_set(context)));
4108 } else {
4109 tab = tab_for_lexmin(bmap,
4110 context->op->peek_basic_set(context), 1, max);
4111 tab = context->op->detect_nonnegative_parameters(context, tab);
4112 find_solutions_main(sol, tab);
4114 if (sol->error)
4115 goto error;
4117 isl_basic_map_free(bmap);
4118 return sol;
4119 error:
4120 sol_free(sol);
4121 isl_basic_map_free(bmap);
4122 return NULL;
4125 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
4126 * some obvious symmetries.
4128 * We call basic_map_partial_lexopt_base and extract the results.
4130 static __isl_give isl_map *basic_map_partial_lexopt_base_map(
4131 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4132 __isl_give isl_set **empty, int max)
4134 isl_map *result = NULL;
4135 struct isl_sol *sol;
4136 struct isl_sol_map *sol_map;
4138 sol = basic_map_partial_lexopt_base(bmap, dom, empty, max,
4139 &sol_map_init);
4140 if (!sol)
4141 return NULL;
4142 sol_map = (struct isl_sol_map *) sol;
4144 result = isl_map_copy(sol_map->map);
4145 if (empty)
4146 *empty = isl_set_copy(sol_map->empty);
4147 sol_free(&sol_map->sol);
4148 return result;
4151 /* Structure used during detection of parallel constraints.
4152 * n_in: number of "input" variables: isl_dim_param + isl_dim_in
4153 * n_out: number of "output" variables: isl_dim_out + isl_dim_div
4154 * val: the coefficients of the output variables
4156 struct isl_constraint_equal_info {
4157 isl_basic_map *bmap;
4158 unsigned n_in;
4159 unsigned n_out;
4160 isl_int *val;
4163 /* Check whether the coefficients of the output variables
4164 * of the constraint in "entry" are equal to info->val.
4166 static int constraint_equal(const void *entry, const void *val)
4168 isl_int **row = (isl_int **)entry;
4169 const struct isl_constraint_equal_info *info = val;
4171 return isl_seq_eq((*row) + 1 + info->n_in, info->val, info->n_out);
4174 /* Check whether "bmap" has a pair of constraints that have
4175 * the same coefficients for the output variables.
4176 * Note that the coefficients of the existentially quantified
4177 * variables need to be zero since the existentially quantified
4178 * of the result are usually not the same as those of the input.
4179 * the isl_dim_out and isl_dim_div dimensions.
4180 * If so, return 1 and return the row indices of the two constraints
4181 * in *first and *second.
4183 static int parallel_constraints(__isl_keep isl_basic_map *bmap,
4184 int *first, int *second)
4186 int i;
4187 isl_ctx *ctx = isl_basic_map_get_ctx(bmap);
4188 struct isl_hash_table *table = NULL;
4189 struct isl_hash_table_entry *entry;
4190 struct isl_constraint_equal_info info;
4191 unsigned n_out;
4192 unsigned n_div;
4194 ctx = isl_basic_map_get_ctx(bmap);
4195 table = isl_hash_table_alloc(ctx, bmap->n_ineq);
4196 if (!table)
4197 goto error;
4199 info.n_in = isl_basic_map_dim(bmap, isl_dim_param) +
4200 isl_basic_map_dim(bmap, isl_dim_in);
4201 info.bmap = bmap;
4202 n_out = isl_basic_map_dim(bmap, isl_dim_out);
4203 n_div = isl_basic_map_dim(bmap, isl_dim_div);
4204 info.n_out = n_out + n_div;
4205 for (i = 0; i < bmap->n_ineq; ++i) {
4206 uint32_t hash;
4208 info.val = bmap->ineq[i] + 1 + info.n_in;
4209 if (isl_seq_first_non_zero(info.val, n_out) < 0)
4210 continue;
4211 if (isl_seq_first_non_zero(info.val + n_out, n_div) >= 0)
4212 continue;
4213 hash = isl_seq_get_hash(info.val, info.n_out);
4214 entry = isl_hash_table_find(ctx, table, hash,
4215 constraint_equal, &info, 1);
4216 if (!entry)
4217 goto error;
4218 if (entry->data)
4219 break;
4220 entry->data = &bmap->ineq[i];
4223 if (i < bmap->n_ineq) {
4224 *first = ((isl_int **)entry->data) - bmap->ineq;
4225 *second = i;
4228 isl_hash_table_free(ctx, table);
4230 return i < bmap->n_ineq;
4231 error:
4232 isl_hash_table_free(ctx, table);
4233 return -1;
4236 /* Given a set of upper bounds in "var", add constraints to "bset"
4237 * that make the i-th bound smallest.
4239 * In particular, if there are n bounds b_i, then add the constraints
4241 * b_i <= b_j for j > i
4242 * b_i < b_j for j < i
4244 static __isl_give isl_basic_set *select_minimum(__isl_take isl_basic_set *bset,
4245 __isl_keep isl_mat *var, int i)
4247 isl_ctx *ctx;
4248 int j, k;
4250 ctx = isl_mat_get_ctx(var);
4252 for (j = 0; j < var->n_row; ++j) {
4253 if (j == i)
4254 continue;
4255 k = isl_basic_set_alloc_inequality(bset);
4256 if (k < 0)
4257 goto error;
4258 isl_seq_combine(bset->ineq[k], ctx->one, var->row[j],
4259 ctx->negone, var->row[i], var->n_col);
4260 isl_int_set_si(bset->ineq[k][var->n_col], 0);
4261 if (j < i)
4262 isl_int_sub_ui(bset->ineq[k][0], bset->ineq[k][0], 1);
4265 bset = isl_basic_set_finalize(bset);
4267 return bset;
4268 error:
4269 isl_basic_set_free(bset);
4270 return NULL;
4273 /* Given a set of upper bounds on the last "input" variable m,
4274 * construct a set that assigns the minimal upper bound to m, i.e.,
4275 * construct a set that divides the space into cells where one
4276 * of the upper bounds is smaller than all the others and assign
4277 * this upper bound to m.
4279 * In particular, if there are n bounds b_i, then the result
4280 * consists of n basic sets, each one of the form
4282 * m = b_i
4283 * b_i <= b_j for j > i
4284 * b_i < b_j for j < i
4286 static __isl_give isl_set *set_minimum(__isl_take isl_space *dim,
4287 __isl_take isl_mat *var)
4289 int i, k;
4290 isl_basic_set *bset = NULL;
4291 isl_ctx *ctx;
4292 isl_set *set = NULL;
4294 if (!dim || !var)
4295 goto error;
4297 ctx = isl_space_get_ctx(dim);
4298 set = isl_set_alloc_space(isl_space_copy(dim),
4299 var->n_row, ISL_SET_DISJOINT);
4301 for (i = 0; i < var->n_row; ++i) {
4302 bset = isl_basic_set_alloc_space(isl_space_copy(dim), 0,
4303 1, var->n_row - 1);
4304 k = isl_basic_set_alloc_equality(bset);
4305 if (k < 0)
4306 goto error;
4307 isl_seq_cpy(bset->eq[k], var->row[i], var->n_col);
4308 isl_int_set_si(bset->eq[k][var->n_col], -1);
4309 bset = select_minimum(bset, var, i);
4310 set = isl_set_add_basic_set(set, bset);
4313 isl_space_free(dim);
4314 isl_mat_free(var);
4315 return set;
4316 error:
4317 isl_basic_set_free(bset);
4318 isl_set_free(set);
4319 isl_space_free(dim);
4320 isl_mat_free(var);
4321 return NULL;
4324 /* Given that the last input variable of "bmap" represents the minimum
4325 * of the bounds in "cst", check whether we need to split the domain
4326 * based on which bound attains the minimum.
4328 * A split is needed when the minimum appears in an integer division
4329 * or in an equality. Otherwise, it is only needed if it appears in
4330 * an upper bound that is different from the upper bounds on which it
4331 * is defined.
4333 static int need_split_basic_map(__isl_keep isl_basic_map *bmap,
4334 __isl_keep isl_mat *cst)
4336 int i, j;
4337 unsigned total;
4338 unsigned pos;
4340 pos = cst->n_col - 1;
4341 total = isl_basic_map_dim(bmap, isl_dim_all);
4343 for (i = 0; i < bmap->n_div; ++i)
4344 if (!isl_int_is_zero(bmap->div[i][2 + pos]))
4345 return 1;
4347 for (i = 0; i < bmap->n_eq; ++i)
4348 if (!isl_int_is_zero(bmap->eq[i][1 + pos]))
4349 return 1;
4351 for (i = 0; i < bmap->n_ineq; ++i) {
4352 if (isl_int_is_nonneg(bmap->ineq[i][1 + pos]))
4353 continue;
4354 if (!isl_int_is_negone(bmap->ineq[i][1 + pos]))
4355 return 1;
4356 if (isl_seq_first_non_zero(bmap->ineq[i] + 1 + pos + 1,
4357 total - pos - 1) >= 0)
4358 return 1;
4360 for (j = 0; j < cst->n_row; ++j)
4361 if (isl_seq_eq(bmap->ineq[i], cst->row[j], cst->n_col))
4362 break;
4363 if (j >= cst->n_row)
4364 return 1;
4367 return 0;
4370 /* Given that the last set variable of "bset" represents the minimum
4371 * of the bounds in "cst", check whether we need to split the domain
4372 * based on which bound attains the minimum.
4374 * We simply call need_split_basic_map here. This is safe because
4375 * the position of the minimum is computed from "cst" and not
4376 * from "bmap".
4378 static int need_split_basic_set(__isl_keep isl_basic_set *bset,
4379 __isl_keep isl_mat *cst)
4381 return need_split_basic_map((isl_basic_map *)bset, cst);
4384 /* Given that the last set variable of "set" represents the minimum
4385 * of the bounds in "cst", check whether we need to split the domain
4386 * based on which bound attains the minimum.
4388 static int need_split_set(__isl_keep isl_set *set, __isl_keep isl_mat *cst)
4390 int i;
4392 for (i = 0; i < set->n; ++i)
4393 if (need_split_basic_set(set->p[i], cst))
4394 return 1;
4396 return 0;
4399 /* Given a set of which the last set variable is the minimum
4400 * of the bounds in "cst", split each basic set in the set
4401 * in pieces where one of the bounds is (strictly) smaller than the others.
4402 * This subdivision is given in "min_expr".
4403 * The variable is subsequently projected out.
4405 * We only do the split when it is needed.
4406 * For example if the last input variable m = min(a,b) and the only
4407 * constraints in the given basic set are lower bounds on m,
4408 * i.e., l <= m = min(a,b), then we can simply project out m
4409 * to obtain l <= a and l <= b, without having to split on whether
4410 * m is equal to a or b.
4412 static __isl_give isl_set *split(__isl_take isl_set *empty,
4413 __isl_take isl_set *min_expr, __isl_take isl_mat *cst)
4415 int n_in;
4416 int i;
4417 isl_space *dim;
4418 isl_set *res;
4420 if (!empty || !min_expr || !cst)
4421 goto error;
4423 n_in = isl_set_dim(empty, isl_dim_set);
4424 dim = isl_set_get_space(empty);
4425 dim = isl_space_drop_dims(dim, isl_dim_set, n_in - 1, 1);
4426 res = isl_set_empty(dim);
4428 for (i = 0; i < empty->n; ++i) {
4429 isl_set *set;
4431 set = isl_set_from_basic_set(isl_basic_set_copy(empty->p[i]));
4432 if (need_split_basic_set(empty->p[i], cst))
4433 set = isl_set_intersect(set, isl_set_copy(min_expr));
4434 set = isl_set_remove_dims(set, isl_dim_set, n_in - 1, 1);
4436 res = isl_set_union_disjoint(res, set);
4439 isl_set_free(empty);
4440 isl_set_free(min_expr);
4441 isl_mat_free(cst);
4442 return res;
4443 error:
4444 isl_set_free(empty);
4445 isl_set_free(min_expr);
4446 isl_mat_free(cst);
4447 return NULL;
4450 /* Given a map of which the last input variable is the minimum
4451 * of the bounds in "cst", split each basic set in the set
4452 * in pieces where one of the bounds is (strictly) smaller than the others.
4453 * This subdivision is given in "min_expr".
4454 * The variable is subsequently projected out.
4456 * The implementation is essentially the same as that of "split".
4458 static __isl_give isl_map *split_domain(__isl_take isl_map *opt,
4459 __isl_take isl_set *min_expr, __isl_take isl_mat *cst)
4461 int n_in;
4462 int i;
4463 isl_space *dim;
4464 isl_map *res;
4466 if (!opt || !min_expr || !cst)
4467 goto error;
4469 n_in = isl_map_dim(opt, isl_dim_in);
4470 dim = isl_map_get_space(opt);
4471 dim = isl_space_drop_dims(dim, isl_dim_in, n_in - 1, 1);
4472 res = isl_map_empty(dim);
4474 for (i = 0; i < opt->n; ++i) {
4475 isl_map *map;
4477 map = isl_map_from_basic_map(isl_basic_map_copy(opt->p[i]));
4478 if (need_split_basic_map(opt->p[i], cst))
4479 map = isl_map_intersect_domain(map,
4480 isl_set_copy(min_expr));
4481 map = isl_map_remove_dims(map, isl_dim_in, n_in - 1, 1);
4483 res = isl_map_union_disjoint(res, map);
4486 isl_map_free(opt);
4487 isl_set_free(min_expr);
4488 isl_mat_free(cst);
4489 return res;
4490 error:
4491 isl_map_free(opt);
4492 isl_set_free(min_expr);
4493 isl_mat_free(cst);
4494 return NULL;
4497 static __isl_give isl_map *basic_map_partial_lexopt(
4498 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4499 __isl_give isl_set **empty, int max);
4501 union isl_lex_res {
4502 void *p;
4503 isl_map *map;
4504 isl_pw_multi_aff *pma;
4507 /* This function is called from basic_map_partial_lexopt_symm.
4508 * The last variable of "bmap" and "dom" corresponds to the minimum
4509 * of the bounds in "cst". "map_space" is the space of the original
4510 * input relation (of basic_map_partial_lexopt_symm) and "set_space"
4511 * is the space of the original domain.
4513 * We recursively call basic_map_partial_lexopt and then plug in
4514 * the definition of the minimum in the result.
4516 static __isl_give union isl_lex_res basic_map_partial_lexopt_symm_map_core(
4517 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4518 __isl_give isl_set **empty, int max, __isl_take isl_mat *cst,
4519 __isl_take isl_space *map_space, __isl_take isl_space *set_space)
4521 isl_map *opt;
4522 isl_set *min_expr;
4523 union isl_lex_res res;
4525 min_expr = set_minimum(isl_basic_set_get_space(dom), isl_mat_copy(cst));
4527 opt = basic_map_partial_lexopt(bmap, dom, empty, max);
4529 if (empty) {
4530 *empty = split(*empty,
4531 isl_set_copy(min_expr), isl_mat_copy(cst));
4532 *empty = isl_set_reset_space(*empty, set_space);
4535 opt = split_domain(opt, min_expr, cst);
4536 opt = isl_map_reset_space(opt, map_space);
4538 res.map = opt;
4539 return res;
4542 /* Given a basic map with at least two parallel constraints (as found
4543 * by the function parallel_constraints), first look for more constraints
4544 * parallel to the two constraint and replace the found list of parallel
4545 * constraints by a single constraint with as "input" part the minimum
4546 * of the input parts of the list of constraints. Then, recursively call
4547 * basic_map_partial_lexopt (possibly finding more parallel constraints)
4548 * and plug in the definition of the minimum in the result.
4550 * More specifically, given a set of constraints
4552 * a x + b_i(p) >= 0
4554 * Replace this set by a single constraint
4556 * a x + u >= 0
4558 * with u a new parameter with constraints
4560 * u <= b_i(p)
4562 * Any solution to the new system is also a solution for the original system
4563 * since
4565 * a x >= -u >= -b_i(p)
4567 * Moreover, m = min_i(b_i(p)) satisfies the constraints on u and can
4568 * therefore be plugged into the solution.
4570 static union isl_lex_res basic_map_partial_lexopt_symm(
4571 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4572 __isl_give isl_set **empty, int max, int first, int second,
4573 __isl_give union isl_lex_res (*core)(__isl_take isl_basic_map *bmap,
4574 __isl_take isl_basic_set *dom,
4575 __isl_give isl_set **empty,
4576 int max, __isl_take isl_mat *cst,
4577 __isl_take isl_space *map_space,
4578 __isl_take isl_space *set_space))
4580 int i, n, k;
4581 int *list = NULL;
4582 unsigned n_in, n_out, n_div;
4583 isl_ctx *ctx;
4584 isl_vec *var = NULL;
4585 isl_mat *cst = NULL;
4586 isl_space *map_space, *set_space;
4587 union isl_lex_res res;
4589 map_space = isl_basic_map_get_space(bmap);
4590 set_space = empty ? isl_basic_set_get_space(dom) : NULL;
4592 n_in = isl_basic_map_dim(bmap, isl_dim_param) +
4593 isl_basic_map_dim(bmap, isl_dim_in);
4594 n_out = isl_basic_map_dim(bmap, isl_dim_all) - n_in;
4596 ctx = isl_basic_map_get_ctx(bmap);
4597 list = isl_alloc_array(ctx, int, bmap->n_ineq);
4598 var = isl_vec_alloc(ctx, n_out);
4599 if ((bmap->n_ineq && !list) || (n_out && !var))
4600 goto error;
4602 list[0] = first;
4603 list[1] = second;
4604 isl_seq_cpy(var->el, bmap->ineq[first] + 1 + n_in, n_out);
4605 for (i = second + 1, n = 2; i < bmap->n_ineq; ++i) {
4606 if (isl_seq_eq(var->el, bmap->ineq[i] + 1 + n_in, n_out))
4607 list[n++] = i;
4610 cst = isl_mat_alloc(ctx, n, 1 + n_in);
4611 if (!cst)
4612 goto error;
4614 for (i = 0; i < n; ++i)
4615 isl_seq_cpy(cst->row[i], bmap->ineq[list[i]], 1 + n_in);
4617 bmap = isl_basic_map_cow(bmap);
4618 if (!bmap)
4619 goto error;
4620 for (i = n - 1; i >= 0; --i)
4621 if (isl_basic_map_drop_inequality(bmap, list[i]) < 0)
4622 goto error;
4624 bmap = isl_basic_map_add(bmap, isl_dim_in, 1);
4625 bmap = isl_basic_map_extend_constraints(bmap, 0, 1);
4626 k = isl_basic_map_alloc_inequality(bmap);
4627 if (k < 0)
4628 goto error;
4629 isl_seq_clr(bmap->ineq[k], 1 + n_in);
4630 isl_int_set_si(bmap->ineq[k][1 + n_in], 1);
4631 isl_seq_cpy(bmap->ineq[k] + 1 + n_in + 1, var->el, n_out);
4632 bmap = isl_basic_map_finalize(bmap);
4634 n_div = isl_basic_set_dim(dom, isl_dim_div);
4635 dom = isl_basic_set_add_dims(dom, isl_dim_set, 1);
4636 dom = isl_basic_set_extend_constraints(dom, 0, n);
4637 for (i = 0; i < n; ++i) {
4638 k = isl_basic_set_alloc_inequality(dom);
4639 if (k < 0)
4640 goto error;
4641 isl_seq_cpy(dom->ineq[k], cst->row[i], 1 + n_in);
4642 isl_int_set_si(dom->ineq[k][1 + n_in], -1);
4643 isl_seq_clr(dom->ineq[k] + 1 + n_in + 1, n_div);
4646 isl_vec_free(var);
4647 free(list);
4649 return core(bmap, dom, empty, max, cst, map_space, set_space);
4650 error:
4651 isl_space_free(map_space);
4652 isl_space_free(set_space);
4653 isl_mat_free(cst);
4654 isl_vec_free(var);
4655 free(list);
4656 isl_basic_set_free(dom);
4657 isl_basic_map_free(bmap);
4658 res.p = NULL;
4659 return res;
4662 static __isl_give isl_map *basic_map_partial_lexopt_symm_map(
4663 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4664 __isl_give isl_set **empty, int max, int first, int second)
4666 return basic_map_partial_lexopt_symm(bmap, dom, empty, max,
4667 first, second, &basic_map_partial_lexopt_symm_map_core).map;
4670 /* Recursive part of isl_tab_basic_map_partial_lexopt, after detecting
4671 * equalities and removing redundant constraints.
4673 * We first check if there are any parallel constraints (left).
4674 * If not, we are in the base case.
4675 * If there are parallel constraints, we replace them by a single
4676 * constraint in basic_map_partial_lexopt_symm and then call
4677 * this function recursively to look for more parallel constraints.
4679 static __isl_give isl_map *basic_map_partial_lexopt(
4680 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
4681 __isl_give isl_set **empty, int max)
4683 int par = 0;
4684 int first, second;
4686 if (!bmap)
4687 goto error;
4689 if (bmap->ctx->opt->pip_symmetry)
4690 par = parallel_constraints(bmap, &first, &second);
4691 if (par < 0)
4692 goto error;
4693 if (!par)
4694 return basic_map_partial_lexopt_base_map(bmap, dom, empty, max);
4696 return basic_map_partial_lexopt_symm_map(bmap, dom, empty, max,
4697 first, second);
4698 error:
4699 isl_basic_set_free(dom);
4700 isl_basic_map_free(bmap);
4701 return NULL;
4704 /* Compute the lexicographic minimum (or maximum if "max" is set)
4705 * of "bmap" over the domain "dom" and return the result as a map.
4706 * If "empty" is not NULL, then *empty is assigned a set that
4707 * contains those parts of the domain where there is no solution.
4708 * If "bmap" is marked as rational (ISL_BASIC_MAP_RATIONAL),
4709 * then we compute the rational optimum. Otherwise, we compute
4710 * the integral optimum.
4712 * We perform some preprocessing. As the PILP solver does not
4713 * handle implicit equalities very well, we first make sure all
4714 * the equalities are explicitly available.
4716 * We also add context constraints to the basic map and remove
4717 * redundant constraints. This is only needed because of the
4718 * way we handle simple symmetries. In particular, we currently look
4719 * for symmetries on the constraints, before we set up the main tableau.
4720 * It is then no good to look for symmetries on possibly redundant constraints.
4722 struct isl_map *isl_tab_basic_map_partial_lexopt(
4723 struct isl_basic_map *bmap, struct isl_basic_set *dom,
4724 struct isl_set **empty, int max)
4726 if (empty)
4727 *empty = NULL;
4728 if (!bmap || !dom)
4729 goto error;
4731 isl_assert(bmap->ctx,
4732 isl_basic_map_compatible_domain(bmap, dom), goto error);
4734 if (isl_basic_set_dim(dom, isl_dim_all) == 0)
4735 return basic_map_partial_lexopt(bmap, dom, empty, max);
4737 bmap = isl_basic_map_intersect_domain(bmap, isl_basic_set_copy(dom));
4738 bmap = isl_basic_map_detect_equalities(bmap);
4739 bmap = isl_basic_map_remove_redundancies(bmap);
4741 return basic_map_partial_lexopt(bmap, dom, empty, max);
4742 error:
4743 isl_basic_set_free(dom);
4744 isl_basic_map_free(bmap);
4745 return NULL;
4748 struct isl_sol_for {
4749 struct isl_sol sol;
4750 int (*fn)(__isl_take isl_basic_set *dom,
4751 __isl_take isl_aff_list *list, void *user);
4752 void *user;
4755 static void sol_for_free(struct isl_sol_for *sol_for)
4757 if (!sol_for)
4758 return;
4759 if (sol_for->sol.context)
4760 sol_for->sol.context->op->free(sol_for->sol.context);
4761 free(sol_for);
4764 static void sol_for_free_wrap(struct isl_sol *sol)
4766 sol_for_free((struct isl_sol_for *)sol);
4769 /* Add the solution identified by the tableau and the context tableau.
4771 * See documentation of sol_add for more details.
4773 * Instead of constructing a basic map, this function calls a user
4774 * defined function with the current context as a basic set and
4775 * a list of affine expressions representing the relation between
4776 * the input and output. The space over which the affine expressions
4777 * are defined is the same as that of the domain. The number of
4778 * affine expressions in the list is equal to the number of output variables.
4780 static void sol_for_add(struct isl_sol_for *sol,
4781 struct isl_basic_set *dom, struct isl_mat *M)
4783 int i;
4784 isl_ctx *ctx;
4785 isl_local_space *ls;
4786 isl_aff *aff;
4787 isl_aff_list *list;
4789 if (sol->sol.error || !dom || !M)
4790 goto error;
4792 ctx = isl_basic_set_get_ctx(dom);
4793 ls = isl_basic_set_get_local_space(dom);
4794 list = isl_aff_list_alloc(ctx, M->n_row - 1);
4795 for (i = 1; i < M->n_row; ++i) {
4796 aff = isl_aff_alloc(isl_local_space_copy(ls));
4797 if (aff) {
4798 isl_int_set(aff->v->el[0], M->row[0][0]);
4799 isl_seq_cpy(aff->v->el + 1, M->row[i], M->n_col);
4801 aff = isl_aff_normalize(aff);
4802 list = isl_aff_list_add(list, aff);
4804 isl_local_space_free(ls);
4806 dom = isl_basic_set_finalize(dom);
4808 if (sol->fn(isl_basic_set_copy(dom), list, sol->user) < 0)
4809 goto error;
4811 isl_basic_set_free(dom);
4812 isl_mat_free(M);
4813 return;
4814 error:
4815 isl_basic_set_free(dom);
4816 isl_mat_free(M);
4817 sol->sol.error = 1;
4820 static void sol_for_add_wrap(struct isl_sol *sol,
4821 struct isl_basic_set *dom, struct isl_mat *M)
4823 sol_for_add((struct isl_sol_for *)sol, dom, M);
4826 static struct isl_sol_for *sol_for_init(struct isl_basic_map *bmap, int max,
4827 int (*fn)(__isl_take isl_basic_set *dom, __isl_take isl_aff_list *list,
4828 void *user),
4829 void *user)
4831 struct isl_sol_for *sol_for = NULL;
4832 isl_space *dom_dim;
4833 struct isl_basic_set *dom = NULL;
4835 sol_for = isl_calloc_type(bmap->ctx, struct isl_sol_for);
4836 if (!sol_for)
4837 goto error;
4839 dom_dim = isl_space_domain(isl_space_copy(bmap->dim));
4840 dom = isl_basic_set_universe(dom_dim);
4842 sol_for->sol.rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
4843 sol_for->sol.dec_level.callback.run = &sol_dec_level_wrap;
4844 sol_for->sol.dec_level.sol = &sol_for->sol;
4845 sol_for->fn = fn;
4846 sol_for->user = user;
4847 sol_for->sol.max = max;
4848 sol_for->sol.n_out = isl_basic_map_dim(bmap, isl_dim_out);
4849 sol_for->sol.add = &sol_for_add_wrap;
4850 sol_for->sol.add_empty = NULL;
4851 sol_for->sol.free = &sol_for_free_wrap;
4853 sol_for->sol.context = isl_context_alloc(dom);
4854 if (!sol_for->sol.context)
4855 goto error;
4857 isl_basic_set_free(dom);
4858 return sol_for;
4859 error:
4860 isl_basic_set_free(dom);
4861 sol_for_free(sol_for);
4862 return NULL;
4865 static void sol_for_find_solutions(struct isl_sol_for *sol_for,
4866 struct isl_tab *tab)
4868 find_solutions_main(&sol_for->sol, tab);
4871 int isl_basic_map_foreach_lexopt(__isl_keep isl_basic_map *bmap, int max,
4872 int (*fn)(__isl_take isl_basic_set *dom, __isl_take isl_aff_list *list,
4873 void *user),
4874 void *user)
4876 struct isl_sol_for *sol_for = NULL;
4878 bmap = isl_basic_map_copy(bmap);
4879 bmap = isl_basic_map_detect_equalities(bmap);
4880 if (!bmap)
4881 return -1;
4883 sol_for = sol_for_init(bmap, max, fn, user);
4884 if (!sol_for)
4885 goto error;
4887 if (isl_basic_map_plain_is_empty(bmap))
4888 /* nothing */;
4889 else {
4890 struct isl_tab *tab;
4891 struct isl_context *context = sol_for->sol.context;
4892 tab = tab_for_lexmin(bmap,
4893 context->op->peek_basic_set(context), 1, max);
4894 tab = context->op->detect_nonnegative_parameters(context, tab);
4895 sol_for_find_solutions(sol_for, tab);
4896 if (sol_for->sol.error)
4897 goto error;
4900 sol_free(&sol_for->sol);
4901 isl_basic_map_free(bmap);
4902 return 0;
4903 error:
4904 sol_free(&sol_for->sol);
4905 isl_basic_map_free(bmap);
4906 return -1;
4909 int isl_basic_set_foreach_lexopt(__isl_keep isl_basic_set *bset, int max,
4910 int (*fn)(__isl_take isl_basic_set *dom, __isl_take isl_aff_list *list,
4911 void *user),
4912 void *user)
4914 return isl_basic_map_foreach_lexopt(bset, max, fn, user);
4917 /* Check if the given sequence of len variables starting at pos
4918 * represents a trivial (i.e., zero) solution.
4919 * The variables are assumed to be non-negative and to come in pairs,
4920 * with each pair representing a variable of unrestricted sign.
4921 * The solution is trivial if each such pair in the sequence consists
4922 * of two identical values, meaning that the variable being represented
4923 * has value zero.
4925 static int region_is_trivial(struct isl_tab *tab, int pos, int len)
4927 int i;
4929 if (len == 0)
4930 return 0;
4932 for (i = 0; i < len; i += 2) {
4933 int neg_row;
4934 int pos_row;
4936 neg_row = tab->var[pos + i].is_row ?
4937 tab->var[pos + i].index : -1;
4938 pos_row = tab->var[pos + i + 1].is_row ?
4939 tab->var[pos + i + 1].index : -1;
4941 if ((neg_row < 0 ||
4942 isl_int_is_zero(tab->mat->row[neg_row][1])) &&
4943 (pos_row < 0 ||
4944 isl_int_is_zero(tab->mat->row[pos_row][1])))
4945 continue;
4947 if (neg_row < 0 || pos_row < 0)
4948 return 0;
4949 if (isl_int_ne(tab->mat->row[neg_row][1],
4950 tab->mat->row[pos_row][1]))
4951 return 0;
4954 return 1;
4957 /* Return the index of the first trivial region or -1 if all regions
4958 * are non-trivial.
4960 static int first_trivial_region(struct isl_tab *tab,
4961 int n_region, struct isl_region *region)
4963 int i;
4965 for (i = 0; i < n_region; ++i) {
4966 if (region_is_trivial(tab, region[i].pos, region[i].len))
4967 return i;
4970 return -1;
4973 /* Check if the solution is optimal, i.e., whether the first
4974 * n_op entries are zero.
4976 static int is_optimal(__isl_keep isl_vec *sol, int n_op)
4978 int i;
4980 for (i = 0; i < n_op; ++i)
4981 if (!isl_int_is_zero(sol->el[1 + i]))
4982 return 0;
4983 return 1;
4986 /* Add constraints to "tab" that ensure that any solution is significantly
4987 * better that that represented by "sol". That is, find the first
4988 * relevant (within first n_op) non-zero coefficient and force it (along
4989 * with all previous coefficients) to be zero.
4990 * If the solution is already optimal (all relevant coefficients are zero),
4991 * then just mark the table as empty.
4993 static int force_better_solution(struct isl_tab *tab,
4994 __isl_keep isl_vec *sol, int n_op)
4996 int i;
4997 isl_ctx *ctx;
4998 isl_vec *v = NULL;
5000 if (!sol)
5001 return -1;
5003 for (i = 0; i < n_op; ++i)
5004 if (!isl_int_is_zero(sol->el[1 + i]))
5005 break;
5007 if (i == n_op) {
5008 if (isl_tab_mark_empty(tab) < 0)
5009 return -1;
5010 return 0;
5013 ctx = isl_vec_get_ctx(sol);
5014 v = isl_vec_alloc(ctx, 1 + tab->n_var);
5015 if (!v)
5016 return -1;
5018 for (; i >= 0; --i) {
5019 v = isl_vec_clr(v);
5020 isl_int_set_si(v->el[1 + i], -1);
5021 if (add_lexmin_eq(tab, v->el) < 0)
5022 goto error;
5025 isl_vec_free(v);
5026 return 0;
5027 error:
5028 isl_vec_free(v);
5029 return -1;
5032 struct isl_trivial {
5033 int update;
5034 int region;
5035 int side;
5036 struct isl_tab_undo *snap;
5039 /* Return the lexicographically smallest non-trivial solution of the
5040 * given ILP problem.
5042 * All variables are assumed to be non-negative.
5044 * n_op is the number of initial coordinates to optimize.
5045 * That is, once a solution has been found, we will only continue looking
5046 * for solution that result in significantly better values for those
5047 * initial coordinates. That is, we only continue looking for solutions
5048 * that increase the number of initial zeros in this sequence.
5050 * A solution is non-trivial, if it is non-trivial on each of the
5051 * specified regions. Each region represents a sequence of pairs
5052 * of variables. A solution is non-trivial on such a region if
5053 * at least one of these pairs consists of different values, i.e.,
5054 * such that the non-negative variable represented by the pair is non-zero.
5056 * Whenever a conflict is encountered, all constraints involved are
5057 * reported to the caller through a call to "conflict".
5059 * We perform a simple branch-and-bound backtracking search.
5060 * Each level in the search represents initially trivial region that is forced
5061 * to be non-trivial.
5062 * At each level we consider n cases, where n is the length of the region.
5063 * In terms of the n/2 variables of unrestricted signs being encoded by
5064 * the region, we consider the cases
5065 * x_0 >= 1
5066 * x_0 <= -1
5067 * x_0 = 0 and x_1 >= 1
5068 * x_0 = 0 and x_1 <= -1
5069 * x_0 = 0 and x_1 = 0 and x_2 >= 1
5070 * x_0 = 0 and x_1 = 0 and x_2 <= -1
5071 * ...
5072 * The cases are considered in this order, assuming that each pair
5073 * x_i_a x_i_b represents the value x_i_b - x_i_a.
5074 * That is, x_0 >= 1 is enforced by adding the constraint
5075 * x_0_b - x_0_a >= 1
5077 __isl_give isl_vec *isl_tab_basic_set_non_trivial_lexmin(
5078 __isl_take isl_basic_set *bset, int n_op, int n_region,
5079 struct isl_region *region,
5080 int (*conflict)(int con, void *user), void *user)
5082 int i, j;
5083 int r;
5084 isl_ctx *ctx;
5085 isl_vec *v = NULL;
5086 isl_vec *sol = NULL;
5087 struct isl_tab *tab;
5088 struct isl_trivial *triv = NULL;
5089 int level, init;
5091 if (!bset)
5092 return NULL;
5094 ctx = isl_basic_set_get_ctx(bset);
5095 sol = isl_vec_alloc(ctx, 0);
5097 tab = tab_for_lexmin(bset, NULL, 0, 0);
5098 if (!tab)
5099 goto error;
5100 tab->conflict = conflict;
5101 tab->conflict_user = user;
5103 v = isl_vec_alloc(ctx, 1 + tab->n_var);
5104 triv = isl_calloc_array(ctx, struct isl_trivial, n_region);
5105 if (!v || (n_region && !triv))
5106 goto error;
5108 level = 0;
5109 init = 1;
5111 while (level >= 0) {
5112 int side, base;
5114 if (init) {
5115 tab = cut_to_integer_lexmin(tab, CUT_ONE);
5116 if (!tab)
5117 goto error;
5118 if (tab->empty)
5119 goto backtrack;
5120 r = first_trivial_region(tab, n_region, region);
5121 if (r < 0) {
5122 for (i = 0; i < level; ++i)
5123 triv[i].update = 1;
5124 isl_vec_free(sol);
5125 sol = isl_tab_get_sample_value(tab);
5126 if (!sol)
5127 goto error;
5128 if (is_optimal(sol, n_op))
5129 break;
5130 goto backtrack;
5132 if (level >= n_region)
5133 isl_die(ctx, isl_error_internal,
5134 "nesting level too deep", goto error);
5135 if (isl_tab_extend_cons(tab,
5136 2 * region[r].len + 2 * n_op) < 0)
5137 goto error;
5138 triv[level].region = r;
5139 triv[level].side = 0;
5142 r = triv[level].region;
5143 side = triv[level].side;
5144 base = 2 * (side/2);
5146 if (side >= region[r].len) {
5147 backtrack:
5148 level--;
5149 init = 0;
5150 if (level >= 0)
5151 if (isl_tab_rollback(tab, triv[level].snap) < 0)
5152 goto error;
5153 continue;
5156 if (triv[level].update) {
5157 if (force_better_solution(tab, sol, n_op) < 0)
5158 goto error;
5159 triv[level].update = 0;
5162 if (side == base && base >= 2) {
5163 for (j = base - 2; j < base; ++j) {
5164 v = isl_vec_clr(v);
5165 isl_int_set_si(v->el[1 + region[r].pos + j], 1);
5166 if (add_lexmin_eq(tab, v->el) < 0)
5167 goto error;
5171 triv[level].snap = isl_tab_snap(tab);
5172 if (isl_tab_push_basis(tab) < 0)
5173 goto error;
5175 v = isl_vec_clr(v);
5176 isl_int_set_si(v->el[0], -1);
5177 isl_int_set_si(v->el[1 + region[r].pos + side], -1);
5178 isl_int_set_si(v->el[1 + region[r].pos + (side ^ 1)], 1);
5179 tab = add_lexmin_ineq(tab, v->el);
5181 triv[level].side++;
5182 level++;
5183 init = 1;
5186 free(triv);
5187 isl_vec_free(v);
5188 isl_tab_free(tab);
5189 isl_basic_set_free(bset);
5191 return sol;
5192 error:
5193 free(triv);
5194 isl_vec_free(v);
5195 isl_tab_free(tab);
5196 isl_basic_set_free(bset);
5197 isl_vec_free(sol);
5198 return NULL;
5201 /* Return the lexicographically smallest rational point in "bset",
5202 * assuming that all variables are non-negative.
5203 * If "bset" is empty, then return a zero-length vector.
5205 __isl_give isl_vec *isl_tab_basic_set_non_neg_lexmin(
5206 __isl_take isl_basic_set *bset)
5208 struct isl_tab *tab;
5209 isl_ctx *ctx = isl_basic_set_get_ctx(bset);
5210 isl_vec *sol;
5212 if (!bset)
5213 return NULL;
5215 tab = tab_for_lexmin(bset, NULL, 0, 0);
5216 if (!tab)
5217 goto error;
5218 if (tab->empty)
5219 sol = isl_vec_alloc(ctx, 0);
5220 else
5221 sol = isl_tab_get_sample_value(tab);
5222 isl_tab_free(tab);
5223 isl_basic_set_free(bset);
5224 return sol;
5225 error:
5226 isl_tab_free(tab);
5227 isl_basic_set_free(bset);
5228 return NULL;
5231 struct isl_sol_pma {
5232 struct isl_sol sol;
5233 isl_pw_multi_aff *pma;
5234 isl_set *empty;
5237 static void sol_pma_free(struct isl_sol_pma *sol_pma)
5239 if (!sol_pma)
5240 return;
5241 if (sol_pma->sol.context)
5242 sol_pma->sol.context->op->free(sol_pma->sol.context);
5243 isl_pw_multi_aff_free(sol_pma->pma);
5244 isl_set_free(sol_pma->empty);
5245 free(sol_pma);
5248 /* This function is called for parts of the context where there is
5249 * no solution, with "bset" corresponding to the context tableau.
5250 * Simply add the basic set to the set "empty".
5252 static void sol_pma_add_empty(struct isl_sol_pma *sol,
5253 __isl_take isl_basic_set *bset)
5255 if (!bset)
5256 goto error;
5257 isl_assert(bset->ctx, sol->empty, goto error);
5259 sol->empty = isl_set_grow(sol->empty, 1);
5260 bset = isl_basic_set_simplify(bset);
5261 bset = isl_basic_set_finalize(bset);
5262 sol->empty = isl_set_add_basic_set(sol->empty, bset);
5263 if (!sol->empty)
5264 sol->sol.error = 1;
5265 return;
5266 error:
5267 isl_basic_set_free(bset);
5268 sol->sol.error = 1;
5271 /* Given a basic map "dom" that represents the context and an affine
5272 * matrix "M" that maps the dimensions of the context to the
5273 * output variables, construct an isl_pw_multi_aff with a single
5274 * cell corresponding to "dom" and affine expressions copied from "M".
5276 static void sol_pma_add(struct isl_sol_pma *sol,
5277 __isl_take isl_basic_set *dom, __isl_take isl_mat *M)
5279 int i;
5280 isl_local_space *ls;
5281 isl_aff *aff;
5282 isl_multi_aff *maff;
5283 isl_pw_multi_aff *pma;
5285 maff = isl_multi_aff_alloc(isl_pw_multi_aff_get_space(sol->pma));
5286 ls = isl_basic_set_get_local_space(dom);
5287 for (i = 1; i < M->n_row; ++i) {
5288 aff = isl_aff_alloc(isl_local_space_copy(ls));
5289 if (aff) {
5290 isl_int_set(aff->v->el[0], M->row[0][0]);
5291 isl_seq_cpy(aff->v->el + 1, M->row[i], M->n_col);
5293 aff = isl_aff_normalize(aff);
5294 maff = isl_multi_aff_set_aff(maff, i - 1, aff);
5296 isl_local_space_free(ls);
5297 isl_mat_free(M);
5298 dom = isl_basic_set_simplify(dom);
5299 dom = isl_basic_set_finalize(dom);
5300 pma = isl_pw_multi_aff_alloc(isl_set_from_basic_set(dom), maff);
5301 sol->pma = isl_pw_multi_aff_add_disjoint(sol->pma, pma);
5302 if (!sol->pma)
5303 sol->sol.error = 1;
5306 static void sol_pma_free_wrap(struct isl_sol *sol)
5308 sol_pma_free((struct isl_sol_pma *)sol);
5311 static void sol_pma_add_empty_wrap(struct isl_sol *sol,
5312 __isl_take isl_basic_set *bset)
5314 sol_pma_add_empty((struct isl_sol_pma *)sol, bset);
5317 static void sol_pma_add_wrap(struct isl_sol *sol,
5318 __isl_take isl_basic_set *dom, __isl_take isl_mat *M)
5320 sol_pma_add((struct isl_sol_pma *)sol, dom, M);
5323 /* Construct an isl_sol_pma structure for accumulating the solution.
5324 * If track_empty is set, then we also keep track of the parts
5325 * of the context where there is no solution.
5326 * If max is set, then we are solving a maximization, rather than
5327 * a minimization problem, which means that the variables in the
5328 * tableau have value "M - x" rather than "M + x".
5330 static struct isl_sol *sol_pma_init(__isl_keep isl_basic_map *bmap,
5331 __isl_take isl_basic_set *dom, int track_empty, int max)
5333 struct isl_sol_pma *sol_pma = NULL;
5335 if (!bmap)
5336 goto error;
5338 sol_pma = isl_calloc_type(bmap->ctx, struct isl_sol_pma);
5339 if (!sol_pma)
5340 goto error;
5342 sol_pma->sol.rational = ISL_F_ISSET(bmap, ISL_BASIC_MAP_RATIONAL);
5343 sol_pma->sol.dec_level.callback.run = &sol_dec_level_wrap;
5344 sol_pma->sol.dec_level.sol = &sol_pma->sol;
5345 sol_pma->sol.max = max;
5346 sol_pma->sol.n_out = isl_basic_map_dim(bmap, isl_dim_out);
5347 sol_pma->sol.add = &sol_pma_add_wrap;
5348 sol_pma->sol.add_empty = track_empty ? &sol_pma_add_empty_wrap : NULL;
5349 sol_pma->sol.free = &sol_pma_free_wrap;
5350 sol_pma->pma = isl_pw_multi_aff_empty(isl_basic_map_get_space(bmap));
5351 if (!sol_pma->pma)
5352 goto error;
5354 sol_pma->sol.context = isl_context_alloc(dom);
5355 if (!sol_pma->sol.context)
5356 goto error;
5358 if (track_empty) {
5359 sol_pma->empty = isl_set_alloc_space(isl_basic_set_get_space(dom),
5360 1, ISL_SET_DISJOINT);
5361 if (!sol_pma->empty)
5362 goto error;
5365 isl_basic_set_free(dom);
5366 return &sol_pma->sol;
5367 error:
5368 isl_basic_set_free(dom);
5369 sol_pma_free(sol_pma);
5370 return NULL;
5373 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
5374 * some obvious symmetries.
5376 * We call basic_map_partial_lexopt_base and extract the results.
5378 static __isl_give isl_pw_multi_aff *basic_map_partial_lexopt_base_pma(
5379 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5380 __isl_give isl_set **empty, int max)
5382 isl_pw_multi_aff *result = NULL;
5383 struct isl_sol *sol;
5384 struct isl_sol_pma *sol_pma;
5386 sol = basic_map_partial_lexopt_base(bmap, dom, empty, max,
5387 &sol_pma_init);
5388 if (!sol)
5389 return NULL;
5390 sol_pma = (struct isl_sol_pma *) sol;
5392 result = isl_pw_multi_aff_copy(sol_pma->pma);
5393 if (empty)
5394 *empty = isl_set_copy(sol_pma->empty);
5395 sol_free(&sol_pma->sol);
5396 return result;
5399 /* Given that the last input variable of "maff" represents the minimum
5400 * of some bounds, check whether we need to plug in the expression
5401 * of the minimum.
5403 * In particular, check if the last input variable appears in any
5404 * of the expressions in "maff".
5406 static int need_substitution(__isl_keep isl_multi_aff *maff)
5408 int i;
5409 unsigned pos;
5411 pos = isl_multi_aff_dim(maff, isl_dim_in) - 1;
5413 for (i = 0; i < maff->n; ++i)
5414 if (isl_aff_involves_dims(maff->p[i], isl_dim_in, pos, 1))
5415 return 1;
5417 return 0;
5420 /* Given a set of upper bounds on the last "input" variable m,
5421 * construct a piecewise affine expression that selects
5422 * the minimal upper bound to m, i.e.,
5423 * divide the space into cells where one
5424 * of the upper bounds is smaller than all the others and select
5425 * this upper bound on that cell.
5427 * In particular, if there are n bounds b_i, then the result
5428 * consists of n cell, each one of the form
5430 * b_i <= b_j for j > i
5431 * b_i < b_j for j < i
5433 * The affine expression on this cell is
5435 * b_i
5437 static __isl_give isl_pw_aff *set_minimum_pa(__isl_take isl_space *space,
5438 __isl_take isl_mat *var)
5440 int i;
5441 isl_aff *aff = NULL;
5442 isl_basic_set *bset = NULL;
5443 isl_ctx *ctx;
5444 isl_pw_aff *paff = NULL;
5445 isl_space *pw_space;
5446 isl_local_space *ls = NULL;
5448 if (!space || !var)
5449 goto error;
5451 ctx = isl_space_get_ctx(space);
5452 ls = isl_local_space_from_space(isl_space_copy(space));
5453 pw_space = isl_space_copy(space);
5454 pw_space = isl_space_from_domain(pw_space);
5455 pw_space = isl_space_add_dims(pw_space, isl_dim_out, 1);
5456 paff = isl_pw_aff_alloc_size(pw_space, var->n_row);
5458 for (i = 0; i < var->n_row; ++i) {
5459 isl_pw_aff *paff_i;
5461 aff = isl_aff_alloc(isl_local_space_copy(ls));
5462 bset = isl_basic_set_alloc_space(isl_space_copy(space), 0,
5463 0, var->n_row - 1);
5464 if (!aff || !bset)
5465 goto error;
5466 isl_int_set_si(aff->v->el[0], 1);
5467 isl_seq_cpy(aff->v->el + 1, var->row[i], var->n_col);
5468 isl_int_set_si(aff->v->el[1 + var->n_col], 0);
5469 bset = select_minimum(bset, var, i);
5470 paff_i = isl_pw_aff_alloc(isl_set_from_basic_set(bset), aff);
5471 paff = isl_pw_aff_add_disjoint(paff, paff_i);
5474 isl_local_space_free(ls);
5475 isl_space_free(space);
5476 isl_mat_free(var);
5477 return paff;
5478 error:
5479 isl_aff_free(aff);
5480 isl_basic_set_free(bset);
5481 isl_pw_aff_free(paff);
5482 isl_local_space_free(ls);
5483 isl_space_free(space);
5484 isl_mat_free(var);
5485 return NULL;
5488 /* Given a piecewise multi-affine expression of which the last input variable
5489 * is the minimum of the bounds in "cst", plug in the value of the minimum.
5490 * This minimum expression is given in "min_expr_pa".
5491 * The set "min_expr" contains the same information, but in the form of a set.
5492 * The variable is subsequently projected out.
5494 * The implementation is similar to those of "split" and "split_domain".
5495 * If the variable appears in a given expression, then minimum expression
5496 * is plugged in. Otherwise, if the variable appears in the constraints
5497 * and a split is required, then the domain is split. Otherwise, no split
5498 * is performed.
5500 static __isl_give isl_pw_multi_aff *split_domain_pma(
5501 __isl_take isl_pw_multi_aff *opt, __isl_take isl_pw_aff *min_expr_pa,
5502 __isl_take isl_set *min_expr, __isl_take isl_mat *cst)
5504 int n_in;
5505 int i;
5506 isl_space *space;
5507 isl_pw_multi_aff *res;
5509 if (!opt || !min_expr || !cst)
5510 goto error;
5512 n_in = isl_pw_multi_aff_dim(opt, isl_dim_in);
5513 space = isl_pw_multi_aff_get_space(opt);
5514 space = isl_space_drop_dims(space, isl_dim_in, n_in - 1, 1);
5515 res = isl_pw_multi_aff_empty(space);
5517 for (i = 0; i < opt->n; ++i) {
5518 isl_pw_multi_aff *pma;
5520 pma = isl_pw_multi_aff_alloc(isl_set_copy(opt->p[i].set),
5521 isl_multi_aff_copy(opt->p[i].maff));
5522 if (need_substitution(opt->p[i].maff))
5523 pma = isl_pw_multi_aff_substitute(pma,
5524 isl_dim_in, n_in - 1, min_expr_pa);
5525 else if (need_split_set(opt->p[i].set, cst))
5526 pma = isl_pw_multi_aff_intersect_domain(pma,
5527 isl_set_copy(min_expr));
5528 pma = isl_pw_multi_aff_project_out(pma,
5529 isl_dim_in, n_in - 1, 1);
5531 res = isl_pw_multi_aff_add_disjoint(res, pma);
5534 isl_pw_multi_aff_free(opt);
5535 isl_pw_aff_free(min_expr_pa);
5536 isl_set_free(min_expr);
5537 isl_mat_free(cst);
5538 return res;
5539 error:
5540 isl_pw_multi_aff_free(opt);
5541 isl_pw_aff_free(min_expr_pa);
5542 isl_set_free(min_expr);
5543 isl_mat_free(cst);
5544 return NULL;
5547 static __isl_give isl_pw_multi_aff *basic_map_partial_lexopt_pma(
5548 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5549 __isl_give isl_set **empty, int max);
5551 /* This function is called from basic_map_partial_lexopt_symm.
5552 * The last variable of "bmap" and "dom" corresponds to the minimum
5553 * of the bounds in "cst". "map_space" is the space of the original
5554 * input relation (of basic_map_partial_lexopt_symm) and "set_space"
5555 * is the space of the original domain.
5557 * We recursively call basic_map_partial_lexopt and then plug in
5558 * the definition of the minimum in the result.
5560 static __isl_give union isl_lex_res basic_map_partial_lexopt_symm_pma_core(
5561 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5562 __isl_give isl_set **empty, int max, __isl_take isl_mat *cst,
5563 __isl_take isl_space *map_space, __isl_take isl_space *set_space)
5565 isl_pw_multi_aff *opt;
5566 isl_pw_aff *min_expr_pa;
5567 isl_set *min_expr;
5568 union isl_lex_res res;
5570 min_expr = set_minimum(isl_basic_set_get_space(dom), isl_mat_copy(cst));
5571 min_expr_pa = set_minimum_pa(isl_basic_set_get_space(dom),
5572 isl_mat_copy(cst));
5574 opt = basic_map_partial_lexopt_pma(bmap, dom, empty, max);
5576 if (empty) {
5577 *empty = split(*empty,
5578 isl_set_copy(min_expr), isl_mat_copy(cst));
5579 *empty = isl_set_reset_space(*empty, set_space);
5582 opt = split_domain_pma(opt, min_expr_pa, min_expr, cst);
5583 opt = isl_pw_multi_aff_reset_space(opt, map_space);
5585 res.pma = opt;
5586 return res;
5589 static __isl_give isl_pw_multi_aff *basic_map_partial_lexopt_symm_pma(
5590 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5591 __isl_give isl_set **empty, int max, int first, int second)
5593 return basic_map_partial_lexopt_symm(bmap, dom, empty, max,
5594 first, second, &basic_map_partial_lexopt_symm_pma_core).pma;
5597 /* Recursive part of isl_basic_map_partial_lexopt_pw_multi_aff, after detecting
5598 * equalities and removing redundant constraints.
5600 * We first check if there are any parallel constraints (left).
5601 * If not, we are in the base case.
5602 * If there are parallel constraints, we replace them by a single
5603 * constraint in basic_map_partial_lexopt_symm_pma and then call
5604 * this function recursively to look for more parallel constraints.
5606 static __isl_give isl_pw_multi_aff *basic_map_partial_lexopt_pma(
5607 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5608 __isl_give isl_set **empty, int max)
5610 int par = 0;
5611 int first, second;
5613 if (!bmap)
5614 goto error;
5616 if (bmap->ctx->opt->pip_symmetry)
5617 par = parallel_constraints(bmap, &first, &second);
5618 if (par < 0)
5619 goto error;
5620 if (!par)
5621 return basic_map_partial_lexopt_base_pma(bmap, dom, empty, max);
5623 return basic_map_partial_lexopt_symm_pma(bmap, dom, empty, max,
5624 first, second);
5625 error:
5626 isl_basic_set_free(dom);
5627 isl_basic_map_free(bmap);
5628 return NULL;
5631 /* Compute the lexicographic minimum (or maximum if "max" is set)
5632 * of "bmap" over the domain "dom" and return the result as a piecewise
5633 * multi-affine expression.
5634 * If "empty" is not NULL, then *empty is assigned a set that
5635 * contains those parts of the domain where there is no solution.
5636 * If "bmap" is marked as rational (ISL_BASIC_MAP_RATIONAL),
5637 * then we compute the rational optimum. Otherwise, we compute
5638 * the integral optimum.
5640 * We perform some preprocessing. As the PILP solver does not
5641 * handle implicit equalities very well, we first make sure all
5642 * the equalities are explicitly available.
5644 * We also add context constraints to the basic map and remove
5645 * redundant constraints. This is only needed because of the
5646 * way we handle simple symmetries. In particular, we currently look
5647 * for symmetries on the constraints, before we set up the main tableau.
5648 * It is then no good to look for symmetries on possibly redundant constraints.
5650 __isl_give isl_pw_multi_aff *isl_basic_map_partial_lexopt_pw_multi_aff(
5651 __isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom,
5652 __isl_give isl_set **empty, int max)
5654 if (empty)
5655 *empty = NULL;
5656 if (!bmap || !dom)
5657 goto error;
5659 isl_assert(bmap->ctx,
5660 isl_basic_map_compatible_domain(bmap, dom), goto error);
5662 if (isl_basic_set_dim(dom, isl_dim_all) == 0)
5663 return basic_map_partial_lexopt_pma(bmap, dom, empty, max);
5665 bmap = isl_basic_map_intersect_domain(bmap, isl_basic_set_copy(dom));
5666 bmap = isl_basic_map_detect_equalities(bmap);
5667 bmap = isl_basic_map_remove_redundancies(bmap);
5669 return basic_map_partial_lexopt_pma(bmap, dom, empty, max);
5670 error:
5671 isl_basic_set_free(dom);
5672 isl_basic_map_free(bmap);
5673 return NULL;