2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
5 * Use of this software is governed by the GNU LGPLv2.1 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"
17 #include "isl_sample.h"
18 #include <isl_mat_private.h>
21 * The implementation of parametric integer linear programming in this file
22 * was inspired by the paper "Parametric Integer Programming" and the
23 * report "Solving systems of affine (in)equalities" by Paul Feautrier
26 * The strategy used for obtaining a feasible solution is different
27 * from the one used in isl_tab.c. In particular, in isl_tab.c,
28 * upon finding a constraint that is not yet satisfied, we pivot
29 * in a row that increases the constant term of the row holding the
30 * constraint, making sure the sample solution remains feasible
31 * for all the constraints it already satisfied.
32 * Here, we always pivot in the row holding the constraint,
33 * choosing a column that induces the lexicographically smallest
34 * increment to the sample solution.
36 * By starting out from a sample value that is lexicographically
37 * smaller than any integer point in the problem space, the first
38 * feasible integer sample point we find will also be the lexicographically
39 * smallest. If all variables can be assumed to be non-negative,
40 * then the initial sample value may be chosen equal to zero.
41 * However, we will not make this assumption. Instead, we apply
42 * the "big parameter" trick. Any variable x is then not directly
43 * used in the tableau, but instead it is represented by another
44 * variable x' = M + x, where M is an arbitrarily large (positive)
45 * value. x' is therefore always non-negative, whatever the value of x.
46 * Taking as initial sample value x' = 0 corresponds to x = -M,
47 * which is always smaller than any possible value of x.
49 * The big parameter trick is used in the main tableau and
50 * also in the context tableau if isl_context_lex is used.
51 * In this case, each tableaus has its own big parameter.
52 * Before doing any real work, we check if all the parameters
53 * happen to be non-negative. If so, we drop the column corresponding
54 * to M from the initial context tableau.
55 * If isl_context_gbr is used, then the big parameter trick is only
56 * used in the main tableau.
60 struct isl_context_op
{
61 /* detect nonnegative parameters in context and mark them in tab */
62 struct isl_tab
*(*detect_nonnegative_parameters
)(
63 struct isl_context
*context
, struct isl_tab
*tab
);
64 /* return temporary reference to basic set representation of context */
65 struct isl_basic_set
*(*peek_basic_set
)(struct isl_context
*context
);
66 /* return temporary reference to tableau representation of context */
67 struct isl_tab
*(*peek_tab
)(struct isl_context
*context
);
68 /* add equality; check is 1 if eq may not be valid;
69 * update is 1 if we may want to call ineq_sign on context later.
71 void (*add_eq
)(struct isl_context
*context
, isl_int
*eq
,
72 int check
, int update
);
73 /* add inequality; check is 1 if ineq may not be valid;
74 * update is 1 if we may want to call ineq_sign on context later.
76 void (*add_ineq
)(struct isl_context
*context
, isl_int
*ineq
,
77 int check
, int update
);
78 /* check sign of ineq based on previous information.
79 * strict is 1 if saturation should be treated as a positive sign.
81 enum isl_tab_row_sign (*ineq_sign
)(struct isl_context
*context
,
82 isl_int
*ineq
, int strict
);
83 /* check if inequality maintains feasibility */
84 int (*test_ineq
)(struct isl_context
*context
, isl_int
*ineq
);
85 /* return index of a div that corresponds to "div" */
86 int (*get_div
)(struct isl_context
*context
, struct isl_tab
*tab
,
88 /* add div "div" to context and return non-negativity */
89 int (*add_div
)(struct isl_context
*context
, struct isl_vec
*div
);
90 int (*detect_equalities
)(struct isl_context
*context
,
92 /* return row index of "best" split */
93 int (*best_split
)(struct isl_context
*context
, struct isl_tab
*tab
);
94 /* check if context has already been determined to be empty */
95 int (*is_empty
)(struct isl_context
*context
);
96 /* check if context is still usable */
97 int (*is_ok
)(struct isl_context
*context
);
98 /* save a copy/snapshot of context */
99 void *(*save
)(struct isl_context
*context
);
100 /* restore saved context */
101 void (*restore
)(struct isl_context
*context
, void *);
102 /* invalidate context */
103 void (*invalidate
)(struct isl_context
*context
);
105 void (*free
)(struct isl_context
*context
);
109 struct isl_context_op
*op
;
112 struct isl_context_lex
{
113 struct isl_context context
;
117 struct isl_partial_sol
{
119 struct isl_basic_set
*dom
;
122 struct isl_partial_sol
*next
;
126 struct isl_sol_callback
{
127 struct isl_tab_callback callback
;
131 /* isl_sol is an interface for constructing a solution to
132 * a parametric integer linear programming problem.
133 * Every time the algorithm reaches a state where a solution
134 * can be read off from the tableau (including cases where the tableau
135 * is empty), the function "add" is called on the isl_sol passed
136 * to find_solutions_main.
138 * The context tableau is owned by isl_sol and is updated incrementally.
140 * There are currently two implementations of this interface,
141 * isl_sol_map, which simply collects the solutions in an isl_map
142 * and (optionally) the parts of the context where there is no solution
144 * isl_sol_for, which calls a user-defined function for each part of
153 struct isl_context
*context
;
154 struct isl_partial_sol
*partial
;
155 void (*add
)(struct isl_sol
*sol
,
156 struct isl_basic_set
*dom
, struct isl_mat
*M
);
157 void (*add_empty
)(struct isl_sol
*sol
, struct isl_basic_set
*bset
);
158 void (*free
)(struct isl_sol
*sol
);
159 struct isl_sol_callback dec_level
;
162 static void sol_free(struct isl_sol
*sol
)
164 struct isl_partial_sol
*partial
, *next
;
167 for (partial
= sol
->partial
; partial
; partial
= next
) {
168 next
= partial
->next
;
169 isl_basic_set_free(partial
->dom
);
170 isl_mat_free(partial
->M
);
176 /* Push a partial solution represented by a domain and mapping M
177 * onto the stack of partial solutions.
179 static void sol_push_sol(struct isl_sol
*sol
,
180 struct isl_basic_set
*dom
, struct isl_mat
*M
)
182 struct isl_partial_sol
*partial
;
184 if (sol
->error
|| !dom
)
187 partial
= isl_alloc_type(dom
->ctx
, struct isl_partial_sol
);
191 partial
->level
= sol
->level
;
194 partial
->next
= sol
->partial
;
196 sol
->partial
= partial
;
200 isl_basic_set_free(dom
);
204 /* Pop one partial solution from the partial solution stack and
205 * pass it on to sol->add or sol->add_empty.
207 static void sol_pop_one(struct isl_sol
*sol
)
209 struct isl_partial_sol
*partial
;
211 partial
= sol
->partial
;
212 sol
->partial
= partial
->next
;
215 sol
->add(sol
, partial
->dom
, partial
->M
);
217 sol
->add_empty(sol
, partial
->dom
);
221 /* Return a fresh copy of the domain represented by the context tableau.
223 static struct isl_basic_set
*sol_domain(struct isl_sol
*sol
)
225 struct isl_basic_set
*bset
;
230 bset
= isl_basic_set_dup(sol
->context
->op
->peek_basic_set(sol
->context
));
231 bset
= isl_basic_set_update_from_tab(bset
,
232 sol
->context
->op
->peek_tab(sol
->context
));
237 /* Check whether two partial solutions have the same mapping, where n_div
238 * is the number of divs that the two partial solutions have in common.
240 static int same_solution(struct isl_partial_sol
*s1
, struct isl_partial_sol
*s2
,
246 if (!s1
->M
!= !s2
->M
)
251 dim
= isl_basic_set_total_dim(s1
->dom
) - s1
->dom
->n_div
;
253 for (i
= 0; i
< s1
->M
->n_row
; ++i
) {
254 if (isl_seq_first_non_zero(s1
->M
->row
[i
]+1+dim
+n_div
,
255 s1
->M
->n_col
-1-dim
-n_div
) != -1)
257 if (isl_seq_first_non_zero(s2
->M
->row
[i
]+1+dim
+n_div
,
258 s2
->M
->n_col
-1-dim
-n_div
) != -1)
260 if (!isl_seq_eq(s1
->M
->row
[i
], s2
->M
->row
[i
], 1+dim
+n_div
))
266 /* Pop all solutions from the partial solution stack that were pushed onto
267 * the stack at levels that are deeper than the current level.
268 * If the two topmost elements on the stack have the same level
269 * and represent the same solution, then their domains are combined.
270 * This combined domain is the same as the current context domain
271 * as sol_pop is called each time we move back to a higher level.
273 static void sol_pop(struct isl_sol
*sol
)
275 struct isl_partial_sol
*partial
;
281 if (sol
->level
== 0) {
282 for (partial
= sol
->partial
; partial
; partial
= sol
->partial
)
287 partial
= sol
->partial
;
291 if (partial
->level
<= sol
->level
)
294 if (partial
->next
&& partial
->next
->level
== partial
->level
) {
295 n_div
= isl_basic_set_dim(
296 sol
->context
->op
->peek_basic_set(sol
->context
),
299 if (!same_solution(partial
, partial
->next
, n_div
)) {
303 struct isl_basic_set
*bset
;
305 bset
= sol_domain(sol
);
307 isl_basic_set_free(partial
->next
->dom
);
308 partial
->next
->dom
= bset
;
309 partial
->next
->level
= sol
->level
;
311 sol
->partial
= partial
->next
;
312 isl_basic_set_free(partial
->dom
);
313 isl_mat_free(partial
->M
);
320 static void sol_dec_level(struct isl_sol
*sol
)
330 static int sol_dec_level_wrap(struct isl_tab_callback
*cb
)
332 struct isl_sol_callback
*callback
= (struct isl_sol_callback
*)cb
;
334 sol_dec_level(callback
->sol
);
336 return callback
->sol
->error
? -1 : 0;
339 /* Move down to next level and push callback onto context tableau
340 * to decrease the level again when it gets rolled back across
341 * the current state. That is, dec_level will be called with
342 * the context tableau in the same state as it is when inc_level
345 static void sol_inc_level(struct isl_sol
*sol
)
353 tab
= sol
->context
->op
->peek_tab(sol
->context
);
354 if (isl_tab_push_callback(tab
, &sol
->dec_level
.callback
) < 0)
358 static void scale_rows(struct isl_mat
*mat
, isl_int m
, int n_row
)
362 if (isl_int_is_one(m
))
365 for (i
= 0; i
< n_row
; ++i
)
366 isl_seq_scale(mat
->row
[i
], mat
->row
[i
], m
, mat
->n_col
);
369 /* Add the solution identified by the tableau and the context tableau.
371 * The layout of the variables is as follows.
372 * tab->n_var is equal to the total number of variables in the input
373 * map (including divs that were copied from the context)
374 * + the number of extra divs constructed
375 * Of these, the first tab->n_param and the last tab->n_div variables
376 * correspond to the variables in the context, i.e.,
377 * tab->n_param + tab->n_div = context_tab->n_var
378 * tab->n_param is equal to the number of parameters and input
379 * dimensions in the input map
380 * tab->n_div is equal to the number of divs in the context
382 * If there is no solution, then call add_empty with a basic set
383 * that corresponds to the context tableau. (If add_empty is NULL,
386 * If there is a solution, then first construct a matrix that maps
387 * all dimensions of the context to the output variables, i.e.,
388 * the output dimensions in the input map.
389 * The divs in the input map (if any) that do not correspond to any
390 * div in the context do not appear in the solution.
391 * The algorithm will make sure that they have an integer value,
392 * but these values themselves are of no interest.
393 * We have to be careful not to drop or rearrange any divs in the
394 * context because that would change the meaning of the matrix.
396 * To extract the value of the output variables, it should be noted
397 * that we always use a big parameter M in the main tableau and so
398 * the variable stored in this tableau is not an output variable x itself, but
399 * x' = M + x (in case of minimization)
401 * x' = M - x (in case of maximization)
402 * If x' appears in a column, then its optimal value is zero,
403 * which means that the optimal value of x is an unbounded number
404 * (-M for minimization and M for maximization).
405 * We currently assume that the output dimensions in the original map
406 * are bounded, so this cannot occur.
407 * Similarly, when x' appears in a row, then the coefficient of M in that
408 * row is necessarily 1.
409 * If the row in the tableau represents
410 * d x' = c + d M + e(y)
411 * then, in case of minimization, the corresponding row in the matrix
414 * with a d = m, the (updated) common denominator of the matrix.
415 * In case of maximization, the row will be
418 static void sol_add(struct isl_sol
*sol
, struct isl_tab
*tab
)
420 struct isl_basic_set
*bset
= NULL
;
421 struct isl_mat
*mat
= NULL
;
426 if (sol
->error
|| !tab
)
429 if (tab
->empty
&& !sol
->add_empty
)
432 bset
= sol_domain(sol
);
435 sol_push_sol(sol
, bset
, NULL
);
441 mat
= isl_mat_alloc(tab
->mat
->ctx
, 1 + sol
->n_out
,
442 1 + tab
->n_param
+ tab
->n_div
);
448 isl_seq_clr(mat
->row
[0] + 1, mat
->n_col
- 1);
449 isl_int_set_si(mat
->row
[0][0], 1);
450 for (row
= 0; row
< sol
->n_out
; ++row
) {
451 int i
= tab
->n_param
+ row
;
454 isl_seq_clr(mat
->row
[1 + row
], mat
->n_col
);
455 if (!tab
->var
[i
].is_row
) {
457 isl_die(mat
->ctx
, isl_error_invalid
,
458 "unbounded optimum", goto error2
);
462 r
= tab
->var
[i
].index
;
464 isl_int_ne(tab
->mat
->row
[r
][2], tab
->mat
->row
[r
][0]))
465 isl_die(mat
->ctx
, isl_error_invalid
,
466 "unbounded optimum", goto error2
);
467 isl_int_gcd(m
, mat
->row
[0][0], tab
->mat
->row
[r
][0]);
468 isl_int_divexact(m
, tab
->mat
->row
[r
][0], m
);
469 scale_rows(mat
, m
, 1 + row
);
470 isl_int_divexact(m
, mat
->row
[0][0], tab
->mat
->row
[r
][0]);
471 isl_int_mul(mat
->row
[1 + row
][0], m
, tab
->mat
->row
[r
][1]);
472 for (j
= 0; j
< tab
->n_param
; ++j
) {
474 if (tab
->var
[j
].is_row
)
476 col
= tab
->var
[j
].index
;
477 isl_int_mul(mat
->row
[1 + row
][1 + j
], m
,
478 tab
->mat
->row
[r
][off
+ col
]);
480 for (j
= 0; j
< tab
->n_div
; ++j
) {
482 if (tab
->var
[tab
->n_var
- tab
->n_div
+j
].is_row
)
484 col
= tab
->var
[tab
->n_var
- tab
->n_div
+j
].index
;
485 isl_int_mul(mat
->row
[1 + row
][1 + tab
->n_param
+ j
], m
,
486 tab
->mat
->row
[r
][off
+ col
]);
489 isl_seq_neg(mat
->row
[1 + row
], mat
->row
[1 + row
],
495 sol_push_sol(sol
, bset
, mat
);
500 isl_basic_set_free(bset
);
508 struct isl_set
*empty
;
511 static void sol_map_free(struct isl_sol_map
*sol_map
)
515 if (sol_map
->sol
.context
)
516 sol_map
->sol
.context
->op
->free(sol_map
->sol
.context
);
517 isl_map_free(sol_map
->map
);
518 isl_set_free(sol_map
->empty
);
522 static void sol_map_free_wrap(struct isl_sol
*sol
)
524 sol_map_free((struct isl_sol_map
*)sol
);
527 /* This function is called for parts of the context where there is
528 * no solution, with "bset" corresponding to the context tableau.
529 * Simply add the basic set to the set "empty".
531 static void sol_map_add_empty(struct isl_sol_map
*sol
,
532 struct isl_basic_set
*bset
)
536 isl_assert(bset
->ctx
, sol
->empty
, goto error
);
538 sol
->empty
= isl_set_grow(sol
->empty
, 1);
539 bset
= isl_basic_set_simplify(bset
);
540 bset
= isl_basic_set_finalize(bset
);
541 sol
->empty
= isl_set_add_basic_set(sol
->empty
, isl_basic_set_copy(bset
));
544 isl_basic_set_free(bset
);
547 isl_basic_set_free(bset
);
551 static void sol_map_add_empty_wrap(struct isl_sol
*sol
,
552 struct isl_basic_set
*bset
)
554 sol_map_add_empty((struct isl_sol_map
*)sol
, bset
);
557 /* Add bset to sol's empty, but only if we are actually collecting
560 static void sol_map_add_empty_if_needed(struct isl_sol_map
*sol
,
561 struct isl_basic_set
*bset
)
564 sol_map_add_empty(sol
, bset
);
566 isl_basic_set_free(bset
);
569 /* Given a basic map "dom" that represents the context and an affine
570 * matrix "M" that maps the dimensions of the context to the
571 * output variables, construct a basic map with the same parameters
572 * and divs as the context, the dimensions of the context as input
573 * dimensions and a number of output dimensions that is equal to
574 * the number of output dimensions in the input map.
576 * The constraints and divs of the context are simply copied
577 * from "dom". For each row
581 * is added, with d the common denominator of M.
583 static void sol_map_add(struct isl_sol_map
*sol
,
584 struct isl_basic_set
*dom
, struct isl_mat
*M
)
587 struct isl_basic_map
*bmap
= NULL
;
588 isl_basic_set
*context_bset
;
596 if (sol
->sol
.error
|| !dom
|| !M
)
599 n_out
= sol
->sol
.n_out
;
600 n_eq
= dom
->n_eq
+ n_out
;
601 n_ineq
= dom
->n_ineq
;
603 nparam
= isl_basic_set_total_dim(dom
) - n_div
;
604 total
= isl_map_dim(sol
->map
, isl_dim_all
);
605 bmap
= isl_basic_map_alloc_dim(isl_map_get_dim(sol
->map
),
606 n_div
, n_eq
, 2 * n_div
+ n_ineq
);
609 if (sol
->sol
.rational
)
610 ISL_F_SET(bmap
, ISL_BASIC_MAP_RATIONAL
);
611 for (i
= 0; i
< dom
->n_div
; ++i
) {
612 int k
= isl_basic_map_alloc_div(bmap
);
615 isl_seq_cpy(bmap
->div
[k
], dom
->div
[i
], 1 + 1 + nparam
);
616 isl_seq_clr(bmap
->div
[k
] + 1 + 1 + nparam
, total
- nparam
);
617 isl_seq_cpy(bmap
->div
[k
] + 1 + 1 + total
,
618 dom
->div
[i
] + 1 + 1 + nparam
, i
);
620 for (i
= 0; i
< dom
->n_eq
; ++i
) {
621 int k
= isl_basic_map_alloc_equality(bmap
);
624 isl_seq_cpy(bmap
->eq
[k
], dom
->eq
[i
], 1 + nparam
);
625 isl_seq_clr(bmap
->eq
[k
] + 1 + nparam
, total
- nparam
);
626 isl_seq_cpy(bmap
->eq
[k
] + 1 + total
,
627 dom
->eq
[i
] + 1 + nparam
, n_div
);
629 for (i
= 0; i
< dom
->n_ineq
; ++i
) {
630 int k
= isl_basic_map_alloc_inequality(bmap
);
633 isl_seq_cpy(bmap
->ineq
[k
], dom
->ineq
[i
], 1 + nparam
);
634 isl_seq_clr(bmap
->ineq
[k
] + 1 + nparam
, total
- nparam
);
635 isl_seq_cpy(bmap
->ineq
[k
] + 1 + total
,
636 dom
->ineq
[i
] + 1 + nparam
, n_div
);
638 for (i
= 0; i
< M
->n_row
- 1; ++i
) {
639 int k
= isl_basic_map_alloc_equality(bmap
);
642 isl_seq_cpy(bmap
->eq
[k
], M
->row
[1 + i
], 1 + nparam
);
643 isl_seq_clr(bmap
->eq
[k
] + 1 + nparam
, n_out
);
644 isl_int_neg(bmap
->eq
[k
][1 + nparam
+ i
], M
->row
[0][0]);
645 isl_seq_cpy(bmap
->eq
[k
] + 1 + nparam
+ n_out
,
646 M
->row
[1 + i
] + 1 + nparam
, n_div
);
648 bmap
= isl_basic_map_simplify(bmap
);
649 bmap
= isl_basic_map_finalize(bmap
);
650 sol
->map
= isl_map_grow(sol
->map
, 1);
651 sol
->map
= isl_map_add_basic_map(sol
->map
, bmap
);
654 isl_basic_set_free(dom
);
658 isl_basic_set_free(dom
);
660 isl_basic_map_free(bmap
);
664 static void sol_map_add_wrap(struct isl_sol
*sol
,
665 struct isl_basic_set
*dom
, struct isl_mat
*M
)
667 sol_map_add((struct isl_sol_map
*)sol
, dom
, M
);
671 /* Store the "parametric constant" of row "row" of tableau "tab" in "line",
672 * i.e., the constant term and the coefficients of all variables that
673 * appear in the context tableau.
674 * Note that the coefficient of the big parameter M is NOT copied.
675 * The context tableau may not have a big parameter and even when it
676 * does, it is a different big parameter.
678 static void get_row_parameter_line(struct isl_tab
*tab
, int row
, isl_int
*line
)
681 unsigned off
= 2 + tab
->M
;
683 isl_int_set(line
[0], tab
->mat
->row
[row
][1]);
684 for (i
= 0; i
< tab
->n_param
; ++i
) {
685 if (tab
->var
[i
].is_row
)
686 isl_int_set_si(line
[1 + i
], 0);
688 int col
= tab
->var
[i
].index
;
689 isl_int_set(line
[1 + i
], tab
->mat
->row
[row
][off
+ col
]);
692 for (i
= 0; i
< tab
->n_div
; ++i
) {
693 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
694 isl_int_set_si(line
[1 + tab
->n_param
+ i
], 0);
696 int col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
697 isl_int_set(line
[1 + tab
->n_param
+ i
],
698 tab
->mat
->row
[row
][off
+ col
]);
703 /* Check if rows "row1" and "row2" have identical "parametric constants",
704 * as explained above.
705 * In this case, we also insist that the coefficients of the big parameter
706 * be the same as the values of the constants will only be the same
707 * if these coefficients are also the same.
709 static int identical_parameter_line(struct isl_tab
*tab
, int row1
, int row2
)
712 unsigned off
= 2 + tab
->M
;
714 if (isl_int_ne(tab
->mat
->row
[row1
][1], tab
->mat
->row
[row2
][1]))
717 if (tab
->M
&& isl_int_ne(tab
->mat
->row
[row1
][2],
718 tab
->mat
->row
[row2
][2]))
721 for (i
= 0; i
< tab
->n_param
+ tab
->n_div
; ++i
) {
722 int pos
= i
< tab
->n_param
? i
:
723 tab
->n_var
- tab
->n_div
+ i
- tab
->n_param
;
726 if (tab
->var
[pos
].is_row
)
728 col
= tab
->var
[pos
].index
;
729 if (isl_int_ne(tab
->mat
->row
[row1
][off
+ col
],
730 tab
->mat
->row
[row2
][off
+ col
]))
736 /* Return an inequality that expresses that the "parametric constant"
737 * should be non-negative.
738 * This function is only called when the coefficient of the big parameter
741 static struct isl_vec
*get_row_parameter_ineq(struct isl_tab
*tab
, int row
)
743 struct isl_vec
*ineq
;
745 ineq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + tab
->n_param
+ tab
->n_div
);
749 get_row_parameter_line(tab
, row
, ineq
->el
);
751 ineq
= isl_vec_normalize(ineq
);
756 /* Return a integer division for use in a parametric cut based on the given row.
757 * In particular, let the parametric constant of the row be
761 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
762 * The div returned is equal to
764 * floor(\sum_i {-a_i} y_i) = floor((\sum_i (-a_i mod d) y_i)/d)
766 static struct isl_vec
*get_row_parameter_div(struct isl_tab
*tab
, int row
)
770 div
= isl_vec_alloc(tab
->mat
->ctx
, 1 + 1 + tab
->n_param
+ tab
->n_div
);
774 isl_int_set(div
->el
[0], tab
->mat
->row
[row
][0]);
775 get_row_parameter_line(tab
, row
, div
->el
+ 1);
776 div
= isl_vec_normalize(div
);
777 isl_seq_neg(div
->el
+ 1, div
->el
+ 1, div
->size
- 1);
778 isl_seq_fdiv_r(div
->el
+ 1, div
->el
+ 1, div
->el
[0], div
->size
- 1);
783 /* Return a integer division for use in transferring an integrality constraint
785 * In particular, let the parametric constant of the row be
789 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
790 * The the returned div is equal to
792 * floor(\sum_i {a_i} y_i) = floor((\sum_i (a_i mod d) y_i)/d)
794 static struct isl_vec
*get_row_split_div(struct isl_tab
*tab
, int row
)
798 div
= isl_vec_alloc(tab
->mat
->ctx
, 1 + 1 + tab
->n_param
+ tab
->n_div
);
802 isl_int_set(div
->el
[0], tab
->mat
->row
[row
][0]);
803 get_row_parameter_line(tab
, row
, div
->el
+ 1);
804 div
= isl_vec_normalize(div
);
805 isl_seq_fdiv_r(div
->el
+ 1, div
->el
+ 1, div
->el
[0], div
->size
- 1);
810 /* Construct and return an inequality that expresses an upper bound
812 * In particular, if the div is given by
816 * then the inequality expresses
820 static struct isl_vec
*ineq_for_div(struct isl_basic_set
*bset
, unsigned div
)
824 struct isl_vec
*ineq
;
829 total
= isl_basic_set_total_dim(bset
);
830 div_pos
= 1 + total
- bset
->n_div
+ div
;
832 ineq
= isl_vec_alloc(bset
->ctx
, 1 + total
);
836 isl_seq_cpy(ineq
->el
, bset
->div
[div
] + 1, 1 + total
);
837 isl_int_neg(ineq
->el
[div_pos
], bset
->div
[div
][0]);
841 /* Given a row in the tableau and a div that was created
842 * using get_row_split_div and that been constrained to equality, i.e.,
844 * d = floor(\sum_i {a_i} y_i) = \sum_i {a_i} y_i
846 * replace the expression "\sum_i {a_i} y_i" in the row by d,
847 * i.e., we subtract "\sum_i {a_i} y_i" and add 1 d.
848 * The coefficients of the non-parameters in the tableau have been
849 * verified to be integral. We can therefore simply replace coefficient b
850 * by floor(b). For the coefficients of the parameters we have
851 * floor(a_i) = a_i - {a_i}, while for the other coefficients, we have
854 static struct isl_tab
*set_row_cst_to_div(struct isl_tab
*tab
, int row
, int div
)
856 isl_seq_fdiv_q(tab
->mat
->row
[row
] + 1, tab
->mat
->row
[row
] + 1,
857 tab
->mat
->row
[row
][0], 1 + tab
->M
+ tab
->n_col
);
859 isl_int_set_si(tab
->mat
->row
[row
][0], 1);
861 if (tab
->var
[tab
->n_var
- tab
->n_div
+ div
].is_row
) {
862 int drow
= tab
->var
[tab
->n_var
- tab
->n_div
+ div
].index
;
864 isl_assert(tab
->mat
->ctx
,
865 isl_int_is_one(tab
->mat
->row
[drow
][0]), goto error
);
866 isl_seq_combine(tab
->mat
->row
[row
] + 1,
867 tab
->mat
->ctx
->one
, tab
->mat
->row
[row
] + 1,
868 tab
->mat
->ctx
->one
, tab
->mat
->row
[drow
] + 1,
869 1 + tab
->M
+ tab
->n_col
);
871 int dcol
= tab
->var
[tab
->n_var
- tab
->n_div
+ div
].index
;
873 isl_int_set_si(tab
->mat
->row
[row
][2 + tab
->M
+ dcol
], 1);
882 /* Check if the (parametric) constant of the given row is obviously
883 * negative, meaning that we don't need to consult the context tableau.
884 * If there is a big parameter and its coefficient is non-zero,
885 * then this coefficient determines the outcome.
886 * Otherwise, we check whether the constant is negative and
887 * all non-zero coefficients of parameters are negative and
888 * belong to non-negative parameters.
890 static int is_obviously_neg(struct isl_tab
*tab
, int row
)
894 unsigned off
= 2 + tab
->M
;
897 if (isl_int_is_pos(tab
->mat
->row
[row
][2]))
899 if (isl_int_is_neg(tab
->mat
->row
[row
][2]))
903 if (isl_int_is_nonneg(tab
->mat
->row
[row
][1]))
905 for (i
= 0; i
< tab
->n_param
; ++i
) {
906 /* Eliminated parameter */
907 if (tab
->var
[i
].is_row
)
909 col
= tab
->var
[i
].index
;
910 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
912 if (!tab
->var
[i
].is_nonneg
)
914 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
917 for (i
= 0; i
< tab
->n_div
; ++i
) {
918 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
920 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
921 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
923 if (!tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_nonneg
)
925 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
931 /* Check if the (parametric) constant of the given row is obviously
932 * non-negative, meaning that we don't need to consult the context tableau.
933 * If there is a big parameter and its coefficient is non-zero,
934 * then this coefficient determines the outcome.
935 * Otherwise, we check whether the constant is non-negative and
936 * all non-zero coefficients of parameters are positive and
937 * belong to non-negative parameters.
939 static int is_obviously_nonneg(struct isl_tab
*tab
, int row
)
943 unsigned off
= 2 + tab
->M
;
946 if (isl_int_is_pos(tab
->mat
->row
[row
][2]))
948 if (isl_int_is_neg(tab
->mat
->row
[row
][2]))
952 if (isl_int_is_neg(tab
->mat
->row
[row
][1]))
954 for (i
= 0; i
< tab
->n_param
; ++i
) {
955 /* Eliminated parameter */
956 if (tab
->var
[i
].is_row
)
958 col
= tab
->var
[i
].index
;
959 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
961 if (!tab
->var
[i
].is_nonneg
)
963 if (isl_int_is_neg(tab
->mat
->row
[row
][off
+ col
]))
966 for (i
= 0; i
< tab
->n_div
; ++i
) {
967 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
969 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
970 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
972 if (!tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_nonneg
)
974 if (isl_int_is_neg(tab
->mat
->row
[row
][off
+ col
]))
980 /* Given a row r and two columns, return the column that would
981 * lead to the lexicographically smallest increment in the sample
982 * solution when leaving the basis in favor of the row.
983 * Pivoting with column c will increment the sample value by a non-negative
984 * constant times a_{V,c}/a_{r,c}, with a_{V,c} the elements of column c
985 * corresponding to the non-parametric variables.
986 * If variable v appears in a column c_v, the a_{v,c} = 1 iff c = c_v,
987 * with all other entries in this virtual row equal to zero.
988 * If variable v appears in a row, then a_{v,c} is the element in column c
991 * Let v be the first variable with a_{v,c1}/a_{r,c1} != a_{v,c2}/a_{r,c2}.
992 * Then if a_{v,c1}/a_{r,c1} < a_{v,c2}/a_{r,c2}, i.e.,
993 * a_{v,c2} a_{r,c1} - a_{v,c1} a_{r,c2} > 0, c1 results in the minimal
994 * increment. Otherwise, it's c2.
996 static int lexmin_col_pair(struct isl_tab
*tab
,
997 int row
, int col1
, int col2
, isl_int tmp
)
1002 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1004 for (i
= tab
->n_param
; i
< tab
->n_var
- tab
->n_div
; ++i
) {
1008 if (!tab
->var
[i
].is_row
) {
1009 if (tab
->var
[i
].index
== col1
)
1011 if (tab
->var
[i
].index
== col2
)
1016 if (tab
->var
[i
].index
== row
)
1019 r
= tab
->mat
->row
[tab
->var
[i
].index
] + 2 + tab
->M
;
1020 s1
= isl_int_sgn(r
[col1
]);
1021 s2
= isl_int_sgn(r
[col2
]);
1022 if (s1
== 0 && s2
== 0)
1029 isl_int_mul(tmp
, r
[col2
], tr
[col1
]);
1030 isl_int_submul(tmp
, r
[col1
], tr
[col2
]);
1031 if (isl_int_is_pos(tmp
))
1033 if (isl_int_is_neg(tmp
))
1039 /* Given a row in the tableau, find and return the column that would
1040 * result in the lexicographically smallest, but positive, increment
1041 * in the sample point.
1042 * If there is no such column, then return tab->n_col.
1043 * If anything goes wrong, return -1.
1045 static int lexmin_pivot_col(struct isl_tab
*tab
, int row
)
1048 int col
= tab
->n_col
;
1052 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1056 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
1057 if (tab
->col_var
[j
] >= 0 &&
1058 (tab
->col_var
[j
] < tab
->n_param
||
1059 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
1062 if (!isl_int_is_pos(tr
[j
]))
1065 if (col
== tab
->n_col
)
1068 col
= lexmin_col_pair(tab
, row
, col
, j
, tmp
);
1069 isl_assert(tab
->mat
->ctx
, col
>= 0, goto error
);
1079 /* Return the first known violated constraint, i.e., a non-negative
1080 * constraint that currently has an either obviously negative value
1081 * or a previously determined to be negative value.
1083 * If any constraint has a negative coefficient for the big parameter,
1084 * if any, then we return one of these first.
1086 static int first_neg(struct isl_tab
*tab
)
1091 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
1092 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
1094 if (!isl_int_is_neg(tab
->mat
->row
[row
][2]))
1097 tab
->row_sign
[row
] = isl_tab_row_neg
;
1100 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
1101 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
1103 if (tab
->row_sign
) {
1104 if (tab
->row_sign
[row
] == 0 &&
1105 is_obviously_neg(tab
, row
))
1106 tab
->row_sign
[row
] = isl_tab_row_neg
;
1107 if (tab
->row_sign
[row
] != isl_tab_row_neg
)
1109 } else if (!is_obviously_neg(tab
, row
))
1116 /* Check whether the invariant that all columns are lexico-positive
1117 * is satisfied. This function is not called from the current code
1118 * but is useful during debugging.
1120 static void check_lexpos(struct isl_tab
*tab
)
1122 unsigned off
= 2 + tab
->M
;
1127 for (col
= tab
->n_dead
; col
< tab
->n_col
; ++col
) {
1128 if (tab
->col_var
[col
] >= 0 &&
1129 (tab
->col_var
[col
] < tab
->n_param
||
1130 tab
->col_var
[col
] >= tab
->n_var
- tab
->n_div
))
1132 for (var
= tab
->n_param
; var
< tab
->n_var
- tab
->n_div
; ++var
) {
1133 if (!tab
->var
[var
].is_row
) {
1134 if (tab
->var
[var
].index
== col
)
1139 row
= tab
->var
[var
].index
;
1140 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1142 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
1144 fprintf(stderr
, "lexneg column %d (row %d)\n",
1147 if (var
>= tab
->n_var
- tab
->n_div
)
1148 fprintf(stderr
, "zero column %d\n", col
);
1152 /* Report to the caller that the given constraint is part of an encountered
1155 static int report_conflicting_constraint(struct isl_tab
*tab
, int con
)
1157 return tab
->conflict(con
, tab
->conflict_user
);
1160 /* Given a conflicting row in the tableau, report all constraints
1161 * involved in the row to the caller. That is, the row itself
1162 * (if represents a constraint) and all constraint columns with
1163 * non-zero (and therefore negative) coefficient.
1165 static int report_conflict(struct isl_tab
*tab
, int row
)
1173 if (tab
->row_var
[row
] < 0 &&
1174 report_conflicting_constraint(tab
, ~tab
->row_var
[row
]) < 0)
1177 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1179 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
1180 if (tab
->col_var
[j
] >= 0 &&
1181 (tab
->col_var
[j
] < tab
->n_param
||
1182 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
1185 if (!isl_int_is_neg(tr
[j
]))
1188 if (tab
->col_var
[j
] < 0 &&
1189 report_conflicting_constraint(tab
, ~tab
->col_var
[j
]) < 0)
1196 /* Resolve all known or obviously violated constraints through pivoting.
1197 * In particular, as long as we can find any violated constraint, we
1198 * look for a pivoting column that would result in the lexicographically
1199 * smallest increment in the sample point. If there is no such column
1200 * then the tableau is infeasible.
1202 static int restore_lexmin(struct isl_tab
*tab
) WARN_UNUSED
;
1203 static int restore_lexmin(struct isl_tab
*tab
)
1211 while ((row
= first_neg(tab
)) != -1) {
1212 col
= lexmin_pivot_col(tab
, row
);
1213 if (col
>= tab
->n_col
) {
1214 if (report_conflict(tab
, row
) < 0)
1216 if (isl_tab_mark_empty(tab
) < 0)
1222 if (isl_tab_pivot(tab
, row
, col
) < 0)
1228 /* Given a row that represents an equality, look for an appropriate
1230 * In particular, if there are any non-zero coefficients among
1231 * the non-parameter variables, then we take the last of these
1232 * variables. Eliminating this variable in terms of the other
1233 * variables and/or parameters does not influence the property
1234 * that all column in the initial tableau are lexicographically
1235 * positive. The row corresponding to the eliminated variable
1236 * will only have non-zero entries below the diagonal of the
1237 * initial tableau. That is, we transform
1243 * If there is no such non-parameter variable, then we are dealing with
1244 * pure parameter equality and we pick any parameter with coefficient 1 or -1
1245 * for elimination. This will ensure that the eliminated parameter
1246 * always has an integer value whenever all the other parameters are integral.
1247 * If there is no such parameter then we return -1.
1249 static int last_var_col_or_int_par_col(struct isl_tab
*tab
, int row
)
1251 unsigned off
= 2 + tab
->M
;
1254 for (i
= tab
->n_var
- tab
->n_div
- 1; i
>= 0 && i
>= tab
->n_param
; --i
) {
1256 if (tab
->var
[i
].is_row
)
1258 col
= tab
->var
[i
].index
;
1259 if (col
<= tab
->n_dead
)
1261 if (!isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1264 for (i
= tab
->n_dead
; i
< tab
->n_col
; ++i
) {
1265 if (isl_int_is_one(tab
->mat
->row
[row
][off
+ i
]))
1267 if (isl_int_is_negone(tab
->mat
->row
[row
][off
+ i
]))
1273 /* Add an equality that is known to be valid to the tableau.
1274 * We first check if we can eliminate a variable or a parameter.
1275 * If not, we add the equality as two inequalities.
1276 * In this case, the equality was a pure parameter equality and there
1277 * is no need to resolve any constraint violations.
1279 static struct isl_tab
*add_lexmin_valid_eq(struct isl_tab
*tab
, isl_int
*eq
)
1286 r
= isl_tab_add_row(tab
, eq
);
1290 r
= tab
->con
[r
].index
;
1291 i
= last_var_col_or_int_par_col(tab
, r
);
1293 tab
->con
[r
].is_nonneg
= 1;
1294 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1296 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1297 r
= isl_tab_add_row(tab
, eq
);
1300 tab
->con
[r
].is_nonneg
= 1;
1301 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1304 if (isl_tab_pivot(tab
, r
, i
) < 0)
1306 if (isl_tab_kill_col(tab
, i
) < 0)
1317 /* Check if the given row is a pure constant.
1319 static int is_constant(struct isl_tab
*tab
, int row
)
1321 unsigned off
= 2 + tab
->M
;
1323 return isl_seq_first_non_zero(tab
->mat
->row
[row
] + off
+ tab
->n_dead
,
1324 tab
->n_col
- tab
->n_dead
) == -1;
1327 /* Add an equality that may or may not be valid to the tableau.
1328 * If the resulting row is a pure constant, then it must be zero.
1329 * Otherwise, the resulting tableau is empty.
1331 * If the row is not a pure constant, then we add two inequalities,
1332 * each time checking that they can be satisfied.
1333 * In the end we try to use one of the two constraints to eliminate
1336 static int add_lexmin_eq(struct isl_tab
*tab
, isl_int
*eq
) WARN_UNUSED
;
1337 static int add_lexmin_eq(struct isl_tab
*tab
, isl_int
*eq
)
1341 struct isl_tab_undo
*snap
;
1345 snap
= isl_tab_snap(tab
);
1346 r1
= isl_tab_add_row(tab
, eq
);
1349 tab
->con
[r1
].is_nonneg
= 1;
1350 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r1
]) < 0)
1353 row
= tab
->con
[r1
].index
;
1354 if (is_constant(tab
, row
)) {
1355 if (!isl_int_is_zero(tab
->mat
->row
[row
][1]) ||
1356 (tab
->M
&& !isl_int_is_zero(tab
->mat
->row
[row
][2]))) {
1357 if (isl_tab_mark_empty(tab
) < 0)
1361 if (isl_tab_rollback(tab
, snap
) < 0)
1366 if (restore_lexmin(tab
) < 0)
1371 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1373 r2
= isl_tab_add_row(tab
, eq
);
1376 tab
->con
[r2
].is_nonneg
= 1;
1377 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r2
]) < 0)
1380 if (restore_lexmin(tab
) < 0)
1385 if (!tab
->con
[r1
].is_row
) {
1386 if (isl_tab_kill_col(tab
, tab
->con
[r1
].index
) < 0)
1388 } else if (!tab
->con
[r2
].is_row
) {
1389 if (isl_tab_kill_col(tab
, tab
->con
[r2
].index
) < 0)
1394 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, eq
);
1395 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1397 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1398 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, eq
);
1399 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1400 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1409 /* Add an inequality to the tableau, resolving violations using
1412 static struct isl_tab
*add_lexmin_ineq(struct isl_tab
*tab
, isl_int
*ineq
)
1419 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, ineq
);
1420 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1425 r
= isl_tab_add_row(tab
, ineq
);
1428 tab
->con
[r
].is_nonneg
= 1;
1429 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1431 if (isl_tab_row_is_redundant(tab
, tab
->con
[r
].index
)) {
1432 if (isl_tab_mark_redundant(tab
, tab
->con
[r
].index
) < 0)
1437 if (restore_lexmin(tab
) < 0)
1439 if (!tab
->empty
&& tab
->con
[r
].is_row
&&
1440 isl_tab_row_is_redundant(tab
, tab
->con
[r
].index
))
1441 if (isl_tab_mark_redundant(tab
, tab
->con
[r
].index
) < 0)
1449 /* Check if the coefficients of the parameters are all integral.
1451 static int integer_parameter(struct isl_tab
*tab
, int row
)
1455 unsigned off
= 2 + tab
->M
;
1457 for (i
= 0; i
< tab
->n_param
; ++i
) {
1458 /* Eliminated parameter */
1459 if (tab
->var
[i
].is_row
)
1461 col
= tab
->var
[i
].index
;
1462 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ col
],
1463 tab
->mat
->row
[row
][0]))
1466 for (i
= 0; i
< tab
->n_div
; ++i
) {
1467 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
1469 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
1470 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ col
],
1471 tab
->mat
->row
[row
][0]))
1477 /* Check if the coefficients of the non-parameter variables are all integral.
1479 static int integer_variable(struct isl_tab
*tab
, int row
)
1482 unsigned off
= 2 + tab
->M
;
1484 for (i
= tab
->n_dead
; i
< tab
->n_col
; ++i
) {
1485 if (tab
->col_var
[i
] >= 0 &&
1486 (tab
->col_var
[i
] < tab
->n_param
||
1487 tab
->col_var
[i
] >= tab
->n_var
- tab
->n_div
))
1489 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ i
],
1490 tab
->mat
->row
[row
][0]))
1496 /* Check if the constant term is integral.
1498 static int integer_constant(struct isl_tab
*tab
, int row
)
1500 return isl_int_is_divisible_by(tab
->mat
->row
[row
][1],
1501 tab
->mat
->row
[row
][0]);
1504 #define I_CST 1 << 0
1505 #define I_PAR 1 << 1
1506 #define I_VAR 1 << 2
1508 /* Check for next (non-parameter) variable after "var" (first if var == -1)
1509 * that is non-integer and therefore requires a cut and return
1510 * the index of the variable.
1511 * For parametric tableaus, there are three parts in a row,
1512 * the constant, the coefficients of the parameters and the rest.
1513 * For each part, we check whether the coefficients in that part
1514 * are all integral and if so, set the corresponding flag in *f.
1515 * If the constant and the parameter part are integral, then the
1516 * current sample value is integral and no cut is required
1517 * (irrespective of whether the variable part is integral).
1519 static int next_non_integer_var(struct isl_tab
*tab
, int var
, int *f
)
1521 var
= var
< 0 ? tab
->n_param
: var
+ 1;
1523 for (; var
< tab
->n_var
- tab
->n_div
; ++var
) {
1526 if (!tab
->var
[var
].is_row
)
1528 row
= tab
->var
[var
].index
;
1529 if (integer_constant(tab
, row
))
1530 ISL_FL_SET(flags
, I_CST
);
1531 if (integer_parameter(tab
, row
))
1532 ISL_FL_SET(flags
, I_PAR
);
1533 if (ISL_FL_ISSET(flags
, I_CST
) && ISL_FL_ISSET(flags
, I_PAR
))
1535 if (integer_variable(tab
, row
))
1536 ISL_FL_SET(flags
, I_VAR
);
1543 /* Check for first (non-parameter) variable that is non-integer and
1544 * therefore requires a cut and return the corresponding row.
1545 * For parametric tableaus, there are three parts in a row,
1546 * the constant, the coefficients of the parameters and the rest.
1547 * For each part, we check whether the coefficients in that part
1548 * are all integral and if so, set the corresponding flag in *f.
1549 * If the constant and the parameter part are integral, then the
1550 * current sample value is integral and no cut is required
1551 * (irrespective of whether the variable part is integral).
1553 static int first_non_integer_row(struct isl_tab
*tab
, int *f
)
1555 int var
= next_non_integer_var(tab
, -1, f
);
1557 return var
< 0 ? -1 : tab
->var
[var
].index
;
1560 /* Add a (non-parametric) cut to cut away the non-integral sample
1561 * value of the given row.
1563 * If the row is given by
1565 * m r = f + \sum_i a_i y_i
1569 * c = - {-f/m} + \sum_i {a_i/m} y_i >= 0
1571 * The big parameter, if any, is ignored, since it is assumed to be big
1572 * enough to be divisible by any integer.
1573 * If the tableau is actually a parametric tableau, then this function
1574 * is only called when all coefficients of the parameters are integral.
1575 * The cut therefore has zero coefficients for the parameters.
1577 * The current value is known to be negative, so row_sign, if it
1578 * exists, is set accordingly.
1580 * Return the row of the cut or -1.
1582 static int add_cut(struct isl_tab
*tab
, int row
)
1587 unsigned off
= 2 + tab
->M
;
1589 if (isl_tab_extend_cons(tab
, 1) < 0)
1591 r
= isl_tab_allocate_con(tab
);
1595 r_row
= tab
->mat
->row
[tab
->con
[r
].index
];
1596 isl_int_set(r_row
[0], tab
->mat
->row
[row
][0]);
1597 isl_int_neg(r_row
[1], tab
->mat
->row
[row
][1]);
1598 isl_int_fdiv_r(r_row
[1], r_row
[1], tab
->mat
->row
[row
][0]);
1599 isl_int_neg(r_row
[1], r_row
[1]);
1601 isl_int_set_si(r_row
[2], 0);
1602 for (i
= 0; i
< tab
->n_col
; ++i
)
1603 isl_int_fdiv_r(r_row
[off
+ i
],
1604 tab
->mat
->row
[row
][off
+ i
], tab
->mat
->row
[row
][0]);
1606 tab
->con
[r
].is_nonneg
= 1;
1607 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1610 tab
->row_sign
[tab
->con
[r
].index
] = isl_tab_row_neg
;
1612 return tab
->con
[r
].index
;
1615 /* Given a non-parametric tableau, add cuts until an integer
1616 * sample point is obtained or until the tableau is determined
1617 * to be integer infeasible.
1618 * As long as there is any non-integer value in the sample point,
1619 * we add appropriate cuts, if possible, for each of these
1620 * non-integer values and then resolve the violated
1621 * cut constraints using restore_lexmin.
1622 * If one of the corresponding rows is equal to an integral
1623 * combination of variables/constraints plus a non-integral constant,
1624 * then there is no way to obtain an integer point and we return
1625 * a tableau that is marked empty.
1627 static struct isl_tab
*cut_to_integer_lexmin(struct isl_tab
*tab
)
1638 while ((var
= next_non_integer_var(tab
, -1, &flags
)) != -1) {
1640 if (ISL_FL_ISSET(flags
, I_VAR
)) {
1641 if (isl_tab_mark_empty(tab
) < 0)
1645 row
= tab
->var
[var
].index
;
1646 row
= add_cut(tab
, row
);
1649 } while ((var
= next_non_integer_var(tab
, var
, &flags
)) != -1);
1650 if (restore_lexmin(tab
) < 0)
1661 /* Check whether all the currently active samples also satisfy the inequality
1662 * "ineq" (treated as an equality if eq is set).
1663 * Remove those samples that do not.
1665 static struct isl_tab
*check_samples(struct isl_tab
*tab
, isl_int
*ineq
, int eq
)
1673 isl_assert(tab
->mat
->ctx
, tab
->bmap
, goto error
);
1674 isl_assert(tab
->mat
->ctx
, tab
->samples
, goto error
);
1675 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
, goto error
);
1678 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
1680 isl_seq_inner_product(ineq
, tab
->samples
->row
[i
],
1681 1 + tab
->n_var
, &v
);
1682 sgn
= isl_int_sgn(v
);
1683 if (eq
? (sgn
== 0) : (sgn
>= 0))
1685 tab
= isl_tab_drop_sample(tab
, i
);
1697 /* Check whether the sample value of the tableau is finite,
1698 * i.e., either the tableau does not use a big parameter, or
1699 * all values of the variables are equal to the big parameter plus
1700 * some constant. This constant is the actual sample value.
1702 static int sample_is_finite(struct isl_tab
*tab
)
1709 for (i
= 0; i
< tab
->n_var
; ++i
) {
1711 if (!tab
->var
[i
].is_row
)
1713 row
= tab
->var
[i
].index
;
1714 if (isl_int_ne(tab
->mat
->row
[row
][0], tab
->mat
->row
[row
][2]))
1720 /* Check if the context tableau of sol has any integer points.
1721 * Leave tab in empty state if no integer point can be found.
1722 * If an integer point can be found and if moreover it is finite,
1723 * then it is added to the list of sample values.
1725 * This function is only called when none of the currently active sample
1726 * values satisfies the most recently added constraint.
1728 static struct isl_tab
*check_integer_feasible(struct isl_tab
*tab
)
1730 struct isl_tab_undo
*snap
;
1736 snap
= isl_tab_snap(tab
);
1737 if (isl_tab_push_basis(tab
) < 0)
1740 tab
= cut_to_integer_lexmin(tab
);
1744 if (!tab
->empty
&& sample_is_finite(tab
)) {
1745 struct isl_vec
*sample
;
1747 sample
= isl_tab_get_sample_value(tab
);
1749 tab
= isl_tab_add_sample(tab
, sample
);
1752 if (!tab
->empty
&& isl_tab_rollback(tab
, snap
) < 0)
1761 /* Check if any of the currently active sample values satisfies
1762 * the inequality "ineq" (an equality if eq is set).
1764 static int tab_has_valid_sample(struct isl_tab
*tab
, isl_int
*ineq
, int eq
)
1772 isl_assert(tab
->mat
->ctx
, tab
->bmap
, return -1);
1773 isl_assert(tab
->mat
->ctx
, tab
->samples
, return -1);
1774 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
, return -1);
1777 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
1779 isl_seq_inner_product(ineq
, tab
->samples
->row
[i
],
1780 1 + tab
->n_var
, &v
);
1781 sgn
= isl_int_sgn(v
);
1782 if (eq
? (sgn
== 0) : (sgn
>= 0))
1787 return i
< tab
->n_sample
;
1790 /* Add a div specified by "div" to the tableau "tab" and return
1791 * 1 if the div is obviously non-negative.
1793 static int context_tab_add_div(struct isl_tab
*tab
, struct isl_vec
*div
,
1794 int (*add_ineq
)(void *user
, isl_int
*), void *user
)
1798 struct isl_mat
*samples
;
1801 r
= isl_tab_add_div(tab
, div
, add_ineq
, user
);
1804 nonneg
= tab
->var
[r
].is_nonneg
;
1805 tab
->var
[r
].frozen
= 1;
1807 samples
= isl_mat_extend(tab
->samples
,
1808 tab
->n_sample
, 1 + tab
->n_var
);
1809 tab
->samples
= samples
;
1812 for (i
= tab
->n_outside
; i
< samples
->n_row
; ++i
) {
1813 isl_seq_inner_product(div
->el
+ 1, samples
->row
[i
],
1814 div
->size
- 1, &samples
->row
[i
][samples
->n_col
- 1]);
1815 isl_int_fdiv_q(samples
->row
[i
][samples
->n_col
- 1],
1816 samples
->row
[i
][samples
->n_col
- 1], div
->el
[0]);
1822 /* Add a div specified by "div" to both the main tableau and
1823 * the context tableau. In case of the main tableau, we only
1824 * need to add an extra div. In the context tableau, we also
1825 * need to express the meaning of the div.
1826 * Return the index of the div or -1 if anything went wrong.
1828 static int add_div(struct isl_tab
*tab
, struct isl_context
*context
,
1829 struct isl_vec
*div
)
1834 if ((nonneg
= context
->op
->add_div(context
, div
)) < 0)
1837 if (!context
->op
->is_ok(context
))
1840 if (isl_tab_extend_vars(tab
, 1) < 0)
1842 r
= isl_tab_allocate_var(tab
);
1846 tab
->var
[r
].is_nonneg
= 1;
1847 tab
->var
[r
].frozen
= 1;
1850 return tab
->n_div
- 1;
1852 context
->op
->invalidate(context
);
1856 static int find_div(struct isl_tab
*tab
, isl_int
*div
, isl_int denom
)
1859 unsigned total
= isl_basic_map_total_dim(tab
->bmap
);
1861 for (i
= 0; i
< tab
->bmap
->n_div
; ++i
) {
1862 if (isl_int_ne(tab
->bmap
->div
[i
][0], denom
))
1864 if (!isl_seq_eq(tab
->bmap
->div
[i
] + 1, div
, 1 + total
))
1871 /* Return the index of a div that corresponds to "div".
1872 * We first check if we already have such a div and if not, we create one.
1874 static int get_div(struct isl_tab
*tab
, struct isl_context
*context
,
1875 struct isl_vec
*div
)
1878 struct isl_tab
*context_tab
= context
->op
->peek_tab(context
);
1883 d
= find_div(context_tab
, div
->el
+ 1, div
->el
[0]);
1887 return add_div(tab
, context
, div
);
1890 /* Add a parametric cut to cut away the non-integral sample value
1892 * Let a_i be the coefficients of the constant term and the parameters
1893 * and let b_i be the coefficients of the variables or constraints
1894 * in basis of the tableau.
1895 * Let q be the div q = floor(\sum_i {-a_i} y_i).
1897 * The cut is expressed as
1899 * c = \sum_i -{-a_i} y_i + \sum_i {b_i} x_i + q >= 0
1901 * If q did not already exist in the context tableau, then it is added first.
1902 * If q is in a column of the main tableau then the "+ q" can be accomplished
1903 * by setting the corresponding entry to the denominator of the constraint.
1904 * If q happens to be in a row of the main tableau, then the corresponding
1905 * row needs to be added instead (taking care of the denominators).
1906 * Note that this is very unlikely, but perhaps not entirely impossible.
1908 * The current value of the cut is known to be negative (or at least
1909 * non-positive), so row_sign is set accordingly.
1911 * Return the row of the cut or -1.
1913 static int add_parametric_cut(struct isl_tab
*tab
, int row
,
1914 struct isl_context
*context
)
1916 struct isl_vec
*div
;
1923 unsigned off
= 2 + tab
->M
;
1928 div
= get_row_parameter_div(tab
, row
);
1933 d
= context
->op
->get_div(context
, tab
, div
);
1937 if (isl_tab_extend_cons(tab
, 1) < 0)
1939 r
= isl_tab_allocate_con(tab
);
1943 r_row
= tab
->mat
->row
[tab
->con
[r
].index
];
1944 isl_int_set(r_row
[0], tab
->mat
->row
[row
][0]);
1945 isl_int_neg(r_row
[1], tab
->mat
->row
[row
][1]);
1946 isl_int_fdiv_r(r_row
[1], r_row
[1], tab
->mat
->row
[row
][0]);
1947 isl_int_neg(r_row
[1], r_row
[1]);
1949 isl_int_set_si(r_row
[2], 0);
1950 for (i
= 0; i
< tab
->n_param
; ++i
) {
1951 if (tab
->var
[i
].is_row
)
1953 col
= tab
->var
[i
].index
;
1954 isl_int_neg(r_row
[off
+ col
], tab
->mat
->row
[row
][off
+ col
]);
1955 isl_int_fdiv_r(r_row
[off
+ col
], r_row
[off
+ col
],
1956 tab
->mat
->row
[row
][0]);
1957 isl_int_neg(r_row
[off
+ col
], r_row
[off
+ col
]);
1959 for (i
= 0; i
< tab
->n_div
; ++i
) {
1960 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
1962 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
1963 isl_int_neg(r_row
[off
+ col
], tab
->mat
->row
[row
][off
+ col
]);
1964 isl_int_fdiv_r(r_row
[off
+ col
], r_row
[off
+ col
],
1965 tab
->mat
->row
[row
][0]);
1966 isl_int_neg(r_row
[off
+ col
], r_row
[off
+ col
]);
1968 for (i
= 0; i
< tab
->n_col
; ++i
) {
1969 if (tab
->col_var
[i
] >= 0 &&
1970 (tab
->col_var
[i
] < tab
->n_param
||
1971 tab
->col_var
[i
] >= tab
->n_var
- tab
->n_div
))
1973 isl_int_fdiv_r(r_row
[off
+ i
],
1974 tab
->mat
->row
[row
][off
+ i
], tab
->mat
->row
[row
][0]);
1976 if (tab
->var
[tab
->n_var
- tab
->n_div
+ d
].is_row
) {
1978 int d_row
= tab
->var
[tab
->n_var
- tab
->n_div
+ d
].index
;
1980 isl_int_gcd(gcd
, tab
->mat
->row
[d_row
][0], r_row
[0]);
1981 isl_int_divexact(r_row
[0], r_row
[0], gcd
);
1982 isl_int_divexact(gcd
, tab
->mat
->row
[d_row
][0], gcd
);
1983 isl_seq_combine(r_row
+ 1, gcd
, r_row
+ 1,
1984 r_row
[0], tab
->mat
->row
[d_row
] + 1,
1985 off
- 1 + tab
->n_col
);
1986 isl_int_mul(r_row
[0], r_row
[0], tab
->mat
->row
[d_row
][0]);
1989 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ d
].index
;
1990 isl_int_set(r_row
[off
+ col
], tab
->mat
->row
[row
][0]);
1993 tab
->con
[r
].is_nonneg
= 1;
1994 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1997 tab
->row_sign
[tab
->con
[r
].index
] = isl_tab_row_neg
;
2001 row
= tab
->con
[r
].index
;
2003 if (d
>= n
&& context
->op
->detect_equalities(context
, tab
) < 0)
2009 /* Construct a tableau for bmap that can be used for computing
2010 * the lexicographic minimum (or maximum) of bmap.
2011 * If not NULL, then dom is the domain where the minimum
2012 * should be computed. In this case, we set up a parametric
2013 * tableau with row signs (initialized to "unknown").
2014 * If M is set, then the tableau will use a big parameter.
2015 * If max is set, then a maximum should be computed instead of a minimum.
2016 * This means that for each variable x, the tableau will contain the variable
2017 * x' = M - x, rather than x' = M + x. This in turn means that the coefficient
2018 * of the variables in all constraints are negated prior to adding them
2021 static struct isl_tab
*tab_for_lexmin(struct isl_basic_map
*bmap
,
2022 struct isl_basic_set
*dom
, unsigned M
, int max
)
2025 struct isl_tab
*tab
;
2027 tab
= isl_tab_alloc(bmap
->ctx
, 2 * bmap
->n_eq
+ bmap
->n_ineq
+ 1,
2028 isl_basic_map_total_dim(bmap
), M
);
2032 tab
->rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
2034 tab
->n_param
= isl_basic_set_total_dim(dom
) - dom
->n_div
;
2035 tab
->n_div
= dom
->n_div
;
2036 tab
->row_sign
= isl_calloc_array(bmap
->ctx
,
2037 enum isl_tab_row_sign
, tab
->mat
->n_row
);
2041 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
)) {
2042 if (isl_tab_mark_empty(tab
) < 0)
2047 for (i
= tab
->n_param
; i
< tab
->n_var
- tab
->n_div
; ++i
) {
2048 tab
->var
[i
].is_nonneg
= 1;
2049 tab
->var
[i
].frozen
= 1;
2051 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
2053 isl_seq_neg(bmap
->eq
[i
] + 1 + tab
->n_param
,
2054 bmap
->eq
[i
] + 1 + tab
->n_param
,
2055 tab
->n_var
- tab
->n_param
- tab
->n_div
);
2056 tab
= add_lexmin_valid_eq(tab
, bmap
->eq
[i
]);
2058 isl_seq_neg(bmap
->eq
[i
] + 1 + tab
->n_param
,
2059 bmap
->eq
[i
] + 1 + tab
->n_param
,
2060 tab
->n_var
- tab
->n_param
- tab
->n_div
);
2061 if (!tab
|| tab
->empty
)
2064 if (bmap
->n_eq
&& restore_lexmin(tab
) < 0)
2066 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2068 isl_seq_neg(bmap
->ineq
[i
] + 1 + tab
->n_param
,
2069 bmap
->ineq
[i
] + 1 + tab
->n_param
,
2070 tab
->n_var
- tab
->n_param
- tab
->n_div
);
2071 tab
= add_lexmin_ineq(tab
, bmap
->ineq
[i
]);
2073 isl_seq_neg(bmap
->ineq
[i
] + 1 + tab
->n_param
,
2074 bmap
->ineq
[i
] + 1 + tab
->n_param
,
2075 tab
->n_var
- tab
->n_param
- tab
->n_div
);
2076 if (!tab
|| tab
->empty
)
2085 /* Given a main tableau where more than one row requires a split,
2086 * determine and return the "best" row to split on.
2088 * Given two rows in the main tableau, if the inequality corresponding
2089 * to the first row is redundant with respect to that of the second row
2090 * in the current tableau, then it is better to split on the second row,
2091 * since in the positive part, both row will be positive.
2092 * (In the negative part a pivot will have to be performed and just about
2093 * anything can happen to the sign of the other row.)
2095 * As a simple heuristic, we therefore select the row that makes the most
2096 * of the other rows redundant.
2098 * Perhaps it would also be useful to look at the number of constraints
2099 * that conflict with any given constraint.
2101 static int best_split(struct isl_tab
*tab
, struct isl_tab
*context_tab
)
2103 struct isl_tab_undo
*snap
;
2109 if (isl_tab_extend_cons(context_tab
, 2) < 0)
2112 snap
= isl_tab_snap(context_tab
);
2114 for (split
= tab
->n_redundant
; split
< tab
->n_row
; ++split
) {
2115 struct isl_tab_undo
*snap2
;
2116 struct isl_vec
*ineq
= NULL
;
2120 if (!isl_tab_var_from_row(tab
, split
)->is_nonneg
)
2122 if (tab
->row_sign
[split
] != isl_tab_row_any
)
2125 ineq
= get_row_parameter_ineq(tab
, split
);
2128 ok
= isl_tab_add_ineq(context_tab
, ineq
->el
) >= 0;
2133 snap2
= isl_tab_snap(context_tab
);
2135 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
2136 struct isl_tab_var
*var
;
2140 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
2142 if (tab
->row_sign
[row
] != isl_tab_row_any
)
2145 ineq
= get_row_parameter_ineq(tab
, row
);
2148 ok
= isl_tab_add_ineq(context_tab
, ineq
->el
) >= 0;
2152 var
= &context_tab
->con
[context_tab
->n_con
- 1];
2153 if (!context_tab
->empty
&&
2154 !isl_tab_min_at_most_neg_one(context_tab
, var
))
2156 if (isl_tab_rollback(context_tab
, snap2
) < 0)
2159 if (best
== -1 || r
> best_r
) {
2163 if (isl_tab_rollback(context_tab
, snap
) < 0)
2170 static struct isl_basic_set
*context_lex_peek_basic_set(
2171 struct isl_context
*context
)
2173 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2176 return isl_tab_peek_bset(clex
->tab
);
2179 static struct isl_tab
*context_lex_peek_tab(struct isl_context
*context
)
2181 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2185 static void context_lex_extend(struct isl_context
*context
, int n
)
2187 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2190 if (isl_tab_extend_cons(clex
->tab
, n
) >= 0)
2192 isl_tab_free(clex
->tab
);
2196 static void context_lex_add_eq(struct isl_context
*context
, isl_int
*eq
,
2197 int check
, int update
)
2199 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2200 if (isl_tab_extend_cons(clex
->tab
, 2) < 0)
2202 if (add_lexmin_eq(clex
->tab
, eq
) < 0)
2205 int v
= tab_has_valid_sample(clex
->tab
, eq
, 1);
2209 clex
->tab
= check_integer_feasible(clex
->tab
);
2212 clex
->tab
= check_samples(clex
->tab
, eq
, 1);
2215 isl_tab_free(clex
->tab
);
2219 static void context_lex_add_ineq(struct isl_context
*context
, isl_int
*ineq
,
2220 int check
, int update
)
2222 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2223 if (isl_tab_extend_cons(clex
->tab
, 1) < 0)
2225 clex
->tab
= add_lexmin_ineq(clex
->tab
, ineq
);
2227 int v
= tab_has_valid_sample(clex
->tab
, ineq
, 0);
2231 clex
->tab
= check_integer_feasible(clex
->tab
);
2234 clex
->tab
= check_samples(clex
->tab
, ineq
, 0);
2237 isl_tab_free(clex
->tab
);
2241 static int context_lex_add_ineq_wrap(void *user
, isl_int
*ineq
)
2243 struct isl_context
*context
= (struct isl_context
*)user
;
2244 context_lex_add_ineq(context
, ineq
, 0, 0);
2245 return context
->op
->is_ok(context
) ? 0 : -1;
2248 /* Check which signs can be obtained by "ineq" on all the currently
2249 * active sample values. See row_sign for more information.
2251 static enum isl_tab_row_sign
tab_ineq_sign(struct isl_tab
*tab
, isl_int
*ineq
,
2257 enum isl_tab_row_sign res
= isl_tab_row_unknown
;
2259 isl_assert(tab
->mat
->ctx
, tab
->samples
, return isl_tab_row_unknown
);
2260 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
,
2261 return isl_tab_row_unknown
);
2264 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
2265 isl_seq_inner_product(tab
->samples
->row
[i
], ineq
,
2266 1 + tab
->n_var
, &tmp
);
2267 sgn
= isl_int_sgn(tmp
);
2268 if (sgn
> 0 || (sgn
== 0 && strict
)) {
2269 if (res
== isl_tab_row_unknown
)
2270 res
= isl_tab_row_pos
;
2271 if (res
== isl_tab_row_neg
)
2272 res
= isl_tab_row_any
;
2275 if (res
== isl_tab_row_unknown
)
2276 res
= isl_tab_row_neg
;
2277 if (res
== isl_tab_row_pos
)
2278 res
= isl_tab_row_any
;
2280 if (res
== isl_tab_row_any
)
2288 static enum isl_tab_row_sign
context_lex_ineq_sign(struct isl_context
*context
,
2289 isl_int
*ineq
, int strict
)
2291 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2292 return tab_ineq_sign(clex
->tab
, ineq
, strict
);
2295 /* Check whether "ineq" can be added to the tableau without rendering
2298 static int context_lex_test_ineq(struct isl_context
*context
, isl_int
*ineq
)
2300 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2301 struct isl_tab_undo
*snap
;
2307 if (isl_tab_extend_cons(clex
->tab
, 1) < 0)
2310 snap
= isl_tab_snap(clex
->tab
);
2311 if (isl_tab_push_basis(clex
->tab
) < 0)
2313 clex
->tab
= add_lexmin_ineq(clex
->tab
, ineq
);
2314 clex
->tab
= check_integer_feasible(clex
->tab
);
2317 feasible
= !clex
->tab
->empty
;
2318 if (isl_tab_rollback(clex
->tab
, snap
) < 0)
2324 static int context_lex_get_div(struct isl_context
*context
, struct isl_tab
*tab
,
2325 struct isl_vec
*div
)
2327 return get_div(tab
, context
, div
);
2330 /* Add a div specified by "div" to the context tableau and return
2331 * 1 if the div is obviously non-negative.
2332 * context_tab_add_div will always return 1, because all variables
2333 * in a isl_context_lex tableau are non-negative.
2334 * However, if we are using a big parameter in the context, then this only
2335 * reflects the non-negativity of the variable used to _encode_ the
2336 * div, i.e., div' = M + div, so we can't draw any conclusions.
2338 static int context_lex_add_div(struct isl_context
*context
, struct isl_vec
*div
)
2340 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2342 nonneg
= context_tab_add_div(clex
->tab
, div
,
2343 context_lex_add_ineq_wrap
, context
);
2351 static int context_lex_detect_equalities(struct isl_context
*context
,
2352 struct isl_tab
*tab
)
2357 static int context_lex_best_split(struct isl_context
*context
,
2358 struct isl_tab
*tab
)
2360 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2361 struct isl_tab_undo
*snap
;
2364 snap
= isl_tab_snap(clex
->tab
);
2365 if (isl_tab_push_basis(clex
->tab
) < 0)
2367 r
= best_split(tab
, clex
->tab
);
2369 if (r
>= 0 && isl_tab_rollback(clex
->tab
, snap
) < 0)
2375 static int context_lex_is_empty(struct isl_context
*context
)
2377 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2380 return clex
->tab
->empty
;
2383 static void *context_lex_save(struct isl_context
*context
)
2385 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2386 struct isl_tab_undo
*snap
;
2388 snap
= isl_tab_snap(clex
->tab
);
2389 if (isl_tab_push_basis(clex
->tab
) < 0)
2391 if (isl_tab_save_samples(clex
->tab
) < 0)
2397 static void context_lex_restore(struct isl_context
*context
, void *save
)
2399 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2400 if (isl_tab_rollback(clex
->tab
, (struct isl_tab_undo
*)save
) < 0) {
2401 isl_tab_free(clex
->tab
);
2406 static int context_lex_is_ok(struct isl_context
*context
)
2408 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2412 /* For each variable in the context tableau, check if the variable can
2413 * only attain non-negative values. If so, mark the parameter as non-negative
2414 * in the main tableau. This allows for a more direct identification of some
2415 * cases of violated constraints.
2417 static struct isl_tab
*tab_detect_nonnegative_parameters(struct isl_tab
*tab
,
2418 struct isl_tab
*context_tab
)
2421 struct isl_tab_undo
*snap
;
2422 struct isl_vec
*ineq
= NULL
;
2423 struct isl_tab_var
*var
;
2426 if (context_tab
->n_var
== 0)
2429 ineq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + context_tab
->n_var
);
2433 if (isl_tab_extend_cons(context_tab
, 1) < 0)
2436 snap
= isl_tab_snap(context_tab
);
2439 isl_seq_clr(ineq
->el
, ineq
->size
);
2440 for (i
= 0; i
< context_tab
->n_var
; ++i
) {
2441 isl_int_set_si(ineq
->el
[1 + i
], 1);
2442 if (isl_tab_add_ineq(context_tab
, ineq
->el
) < 0)
2444 var
= &context_tab
->con
[context_tab
->n_con
- 1];
2445 if (!context_tab
->empty
&&
2446 !isl_tab_min_at_most_neg_one(context_tab
, var
)) {
2448 if (i
>= tab
->n_param
)
2449 j
= i
- tab
->n_param
+ tab
->n_var
- tab
->n_div
;
2450 tab
->var
[j
].is_nonneg
= 1;
2453 isl_int_set_si(ineq
->el
[1 + i
], 0);
2454 if (isl_tab_rollback(context_tab
, snap
) < 0)
2458 if (context_tab
->M
&& n
== context_tab
->n_var
) {
2459 context_tab
->mat
= isl_mat_drop_cols(context_tab
->mat
, 2, 1);
2471 static struct isl_tab
*context_lex_detect_nonnegative_parameters(
2472 struct isl_context
*context
, struct isl_tab
*tab
)
2474 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2475 struct isl_tab_undo
*snap
;
2480 snap
= isl_tab_snap(clex
->tab
);
2481 if (isl_tab_push_basis(clex
->tab
) < 0)
2484 tab
= tab_detect_nonnegative_parameters(tab
, clex
->tab
);
2486 if (isl_tab_rollback(clex
->tab
, snap
) < 0)
2495 static void context_lex_invalidate(struct isl_context
*context
)
2497 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2498 isl_tab_free(clex
->tab
);
2502 static void context_lex_free(struct isl_context
*context
)
2504 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2505 isl_tab_free(clex
->tab
);
2509 struct isl_context_op isl_context_lex_op
= {
2510 context_lex_detect_nonnegative_parameters
,
2511 context_lex_peek_basic_set
,
2512 context_lex_peek_tab
,
2514 context_lex_add_ineq
,
2515 context_lex_ineq_sign
,
2516 context_lex_test_ineq
,
2517 context_lex_get_div
,
2518 context_lex_add_div
,
2519 context_lex_detect_equalities
,
2520 context_lex_best_split
,
2521 context_lex_is_empty
,
2524 context_lex_restore
,
2525 context_lex_invalidate
,
2529 static struct isl_tab
*context_tab_for_lexmin(struct isl_basic_set
*bset
)
2531 struct isl_tab
*tab
;
2533 bset
= isl_basic_set_cow(bset
);
2536 tab
= tab_for_lexmin((struct isl_basic_map
*)bset
, NULL
, 1, 0);
2539 if (isl_tab_track_bset(tab
, bset
) < 0)
2541 tab
= isl_tab_init_samples(tab
);
2544 isl_basic_set_free(bset
);
2548 static struct isl_context
*isl_context_lex_alloc(struct isl_basic_set
*dom
)
2550 struct isl_context_lex
*clex
;
2555 clex
= isl_alloc_type(dom
->ctx
, struct isl_context_lex
);
2559 clex
->context
.op
= &isl_context_lex_op
;
2561 clex
->tab
= context_tab_for_lexmin(isl_basic_set_copy(dom
));
2562 if (restore_lexmin(clex
->tab
) < 0)
2564 clex
->tab
= check_integer_feasible(clex
->tab
);
2568 return &clex
->context
;
2570 clex
->context
.op
->free(&clex
->context
);
2574 struct isl_context_gbr
{
2575 struct isl_context context
;
2576 struct isl_tab
*tab
;
2577 struct isl_tab
*shifted
;
2578 struct isl_tab
*cone
;
2581 static struct isl_tab
*context_gbr_detect_nonnegative_parameters(
2582 struct isl_context
*context
, struct isl_tab
*tab
)
2584 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2587 return tab_detect_nonnegative_parameters(tab
, cgbr
->tab
);
2590 static struct isl_basic_set
*context_gbr_peek_basic_set(
2591 struct isl_context
*context
)
2593 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2596 return isl_tab_peek_bset(cgbr
->tab
);
2599 static struct isl_tab
*context_gbr_peek_tab(struct isl_context
*context
)
2601 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2605 /* Initialize the "shifted" tableau of the context, which
2606 * contains the constraints of the original tableau shifted
2607 * by the sum of all negative coefficients. This ensures
2608 * that any rational point in the shifted tableau can
2609 * be rounded up to yield an integer point in the original tableau.
2611 static void gbr_init_shifted(struct isl_context_gbr
*cgbr
)
2614 struct isl_vec
*cst
;
2615 struct isl_basic_set
*bset
= isl_tab_peek_bset(cgbr
->tab
);
2616 unsigned dim
= isl_basic_set_total_dim(bset
);
2618 cst
= isl_vec_alloc(cgbr
->tab
->mat
->ctx
, bset
->n_ineq
);
2622 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
2623 isl_int_set(cst
->el
[i
], bset
->ineq
[i
][0]);
2624 for (j
= 0; j
< dim
; ++j
) {
2625 if (!isl_int_is_neg(bset
->ineq
[i
][1 + j
]))
2627 isl_int_add(bset
->ineq
[i
][0], bset
->ineq
[i
][0],
2628 bset
->ineq
[i
][1 + j
]);
2632 cgbr
->shifted
= isl_tab_from_basic_set(bset
);
2634 for (i
= 0; i
< bset
->n_ineq
; ++i
)
2635 isl_int_set(bset
->ineq
[i
][0], cst
->el
[i
]);
2640 /* Check if the shifted tableau is non-empty, and if so
2641 * use the sample point to construct an integer point
2642 * of the context tableau.
2644 static struct isl_vec
*gbr_get_shifted_sample(struct isl_context_gbr
*cgbr
)
2646 struct isl_vec
*sample
;
2649 gbr_init_shifted(cgbr
);
2652 if (cgbr
->shifted
->empty
)
2653 return isl_vec_alloc(cgbr
->tab
->mat
->ctx
, 0);
2655 sample
= isl_tab_get_sample_value(cgbr
->shifted
);
2656 sample
= isl_vec_ceil(sample
);
2661 static struct isl_basic_set
*drop_constant_terms(struct isl_basic_set
*bset
)
2668 for (i
= 0; i
< bset
->n_eq
; ++i
)
2669 isl_int_set_si(bset
->eq
[i
][0], 0);
2671 for (i
= 0; i
< bset
->n_ineq
; ++i
)
2672 isl_int_set_si(bset
->ineq
[i
][0], 0);
2677 static int use_shifted(struct isl_context_gbr
*cgbr
)
2679 return cgbr
->tab
->bmap
->n_eq
== 0 && cgbr
->tab
->bmap
->n_div
== 0;
2682 static struct isl_vec
*gbr_get_sample(struct isl_context_gbr
*cgbr
)
2684 struct isl_basic_set
*bset
;
2685 struct isl_basic_set
*cone
;
2687 if (isl_tab_sample_is_integer(cgbr
->tab
))
2688 return isl_tab_get_sample_value(cgbr
->tab
);
2690 if (use_shifted(cgbr
)) {
2691 struct isl_vec
*sample
;
2693 sample
= gbr_get_shifted_sample(cgbr
);
2694 if (!sample
|| sample
->size
> 0)
2697 isl_vec_free(sample
);
2701 bset
= isl_tab_peek_bset(cgbr
->tab
);
2702 cgbr
->cone
= isl_tab_from_recession_cone(bset
, 0);
2705 if (isl_tab_track_bset(cgbr
->cone
, isl_basic_set_dup(bset
)) < 0)
2708 if (isl_tab_detect_implicit_equalities(cgbr
->cone
) < 0)
2711 if (cgbr
->cone
->n_dead
== cgbr
->cone
->n_col
) {
2712 struct isl_vec
*sample
;
2713 struct isl_tab_undo
*snap
;
2715 if (cgbr
->tab
->basis
) {
2716 if (cgbr
->tab
->basis
->n_col
!= 1 + cgbr
->tab
->n_var
) {
2717 isl_mat_free(cgbr
->tab
->basis
);
2718 cgbr
->tab
->basis
= NULL
;
2720 cgbr
->tab
->n_zero
= 0;
2721 cgbr
->tab
->n_unbounded
= 0;
2724 snap
= isl_tab_snap(cgbr
->tab
);
2726 sample
= isl_tab_sample(cgbr
->tab
);
2728 if (isl_tab_rollback(cgbr
->tab
, snap
) < 0) {
2729 isl_vec_free(sample
);
2736 cone
= isl_basic_set_dup(isl_tab_peek_bset(cgbr
->cone
));
2737 cone
= drop_constant_terms(cone
);
2738 cone
= isl_basic_set_update_from_tab(cone
, cgbr
->cone
);
2739 cone
= isl_basic_set_underlying_set(cone
);
2740 cone
= isl_basic_set_gauss(cone
, NULL
);
2742 bset
= isl_basic_set_dup(isl_tab_peek_bset(cgbr
->tab
));
2743 bset
= isl_basic_set_update_from_tab(bset
, cgbr
->tab
);
2744 bset
= isl_basic_set_underlying_set(bset
);
2745 bset
= isl_basic_set_gauss(bset
, NULL
);
2747 return isl_basic_set_sample_with_cone(bset
, cone
);
2750 static void check_gbr_integer_feasible(struct isl_context_gbr
*cgbr
)
2752 struct isl_vec
*sample
;
2757 if (cgbr
->tab
->empty
)
2760 sample
= gbr_get_sample(cgbr
);
2764 if (sample
->size
== 0) {
2765 isl_vec_free(sample
);
2766 if (isl_tab_mark_empty(cgbr
->tab
) < 0)
2771 cgbr
->tab
= isl_tab_add_sample(cgbr
->tab
, sample
);
2775 isl_tab_free(cgbr
->tab
);
2779 static struct isl_tab
*add_gbr_eq(struct isl_tab
*tab
, isl_int
*eq
)
2786 if (isl_tab_extend_cons(tab
, 2) < 0)
2789 if (isl_tab_add_eq(tab
, eq
) < 0)
2798 static void context_gbr_add_eq(struct isl_context
*context
, isl_int
*eq
,
2799 int check
, int update
)
2801 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2803 cgbr
->tab
= add_gbr_eq(cgbr
->tab
, eq
);
2805 if (cgbr
->cone
&& cgbr
->cone
->n_col
!= cgbr
->cone
->n_dead
) {
2806 if (isl_tab_extend_cons(cgbr
->cone
, 2) < 0)
2808 if (isl_tab_add_eq(cgbr
->cone
, eq
) < 0)
2813 int v
= tab_has_valid_sample(cgbr
->tab
, eq
, 1);
2817 check_gbr_integer_feasible(cgbr
);
2820 cgbr
->tab
= check_samples(cgbr
->tab
, eq
, 1);
2823 isl_tab_free(cgbr
->tab
);
2827 static void add_gbr_ineq(struct isl_context_gbr
*cgbr
, isl_int
*ineq
)
2832 if (isl_tab_extend_cons(cgbr
->tab
, 1) < 0)
2835 if (isl_tab_add_ineq(cgbr
->tab
, ineq
) < 0)
2838 if (cgbr
->shifted
&& !cgbr
->shifted
->empty
&& use_shifted(cgbr
)) {
2841 dim
= isl_basic_map_total_dim(cgbr
->tab
->bmap
);
2843 if (isl_tab_extend_cons(cgbr
->shifted
, 1) < 0)
2846 for (i
= 0; i
< dim
; ++i
) {
2847 if (!isl_int_is_neg(ineq
[1 + i
]))
2849 isl_int_add(ineq
[0], ineq
[0], ineq
[1 + i
]);
2852 if (isl_tab_add_ineq(cgbr
->shifted
, ineq
) < 0)
2855 for (i
= 0; i
< dim
; ++i
) {
2856 if (!isl_int_is_neg(ineq
[1 + i
]))
2858 isl_int_sub(ineq
[0], ineq
[0], ineq
[1 + i
]);
2862 if (cgbr
->cone
&& cgbr
->cone
->n_col
!= cgbr
->cone
->n_dead
) {
2863 if (isl_tab_extend_cons(cgbr
->cone
, 1) < 0)
2865 if (isl_tab_add_ineq(cgbr
->cone
, ineq
) < 0)
2871 isl_tab_free(cgbr
->tab
);
2875 static void context_gbr_add_ineq(struct isl_context
*context
, isl_int
*ineq
,
2876 int check
, int update
)
2878 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2880 add_gbr_ineq(cgbr
, ineq
);
2885 int v
= tab_has_valid_sample(cgbr
->tab
, ineq
, 0);
2889 check_gbr_integer_feasible(cgbr
);
2892 cgbr
->tab
= check_samples(cgbr
->tab
, ineq
, 0);
2895 isl_tab_free(cgbr
->tab
);
2899 static int context_gbr_add_ineq_wrap(void *user
, isl_int
*ineq
)
2901 struct isl_context
*context
= (struct isl_context
*)user
;
2902 context_gbr_add_ineq(context
, ineq
, 0, 0);
2903 return context
->op
->is_ok(context
) ? 0 : -1;
2906 static enum isl_tab_row_sign
context_gbr_ineq_sign(struct isl_context
*context
,
2907 isl_int
*ineq
, int strict
)
2909 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2910 return tab_ineq_sign(cgbr
->tab
, ineq
, strict
);
2913 /* Check whether "ineq" can be added to the tableau without rendering
2916 static int context_gbr_test_ineq(struct isl_context
*context
, isl_int
*ineq
)
2918 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2919 struct isl_tab_undo
*snap
;
2920 struct isl_tab_undo
*shifted_snap
= NULL
;
2921 struct isl_tab_undo
*cone_snap
= NULL
;
2927 if (isl_tab_extend_cons(cgbr
->tab
, 1) < 0)
2930 snap
= isl_tab_snap(cgbr
->tab
);
2932 shifted_snap
= isl_tab_snap(cgbr
->shifted
);
2934 cone_snap
= isl_tab_snap(cgbr
->cone
);
2935 add_gbr_ineq(cgbr
, ineq
);
2936 check_gbr_integer_feasible(cgbr
);
2939 feasible
= !cgbr
->tab
->empty
;
2940 if (isl_tab_rollback(cgbr
->tab
, snap
) < 0)
2943 if (isl_tab_rollback(cgbr
->shifted
, shifted_snap
))
2945 } else if (cgbr
->shifted
) {
2946 isl_tab_free(cgbr
->shifted
);
2947 cgbr
->shifted
= NULL
;
2950 if (isl_tab_rollback(cgbr
->cone
, cone_snap
))
2952 } else if (cgbr
->cone
) {
2953 isl_tab_free(cgbr
->cone
);
2960 /* Return the column of the last of the variables associated to
2961 * a column that has a non-zero coefficient.
2962 * This function is called in a context where only coefficients
2963 * of parameters or divs can be non-zero.
2965 static int last_non_zero_var_col(struct isl_tab
*tab
, isl_int
*p
)
2969 unsigned dim
= tab
->n_var
- tab
->n_param
- tab
->n_div
;
2971 if (tab
->n_var
== 0)
2974 for (i
= tab
->n_var
- 1; i
>= 0; --i
) {
2975 if (i
>= tab
->n_param
&& i
< tab
->n_var
- tab
->n_div
)
2977 if (tab
->var
[i
].is_row
)
2979 col
= tab
->var
[i
].index
;
2980 if (!isl_int_is_zero(p
[col
]))
2987 /* Look through all the recently added equalities in the context
2988 * to see if we can propagate any of them to the main tableau.
2990 * The newly added equalities in the context are encoded as pairs
2991 * of inequalities starting at inequality "first".
2993 * We tentatively add each of these equalities to the main tableau
2994 * and if this happens to result in a row with a final coefficient
2995 * that is one or negative one, we use it to kill a column
2996 * in the main tableau. Otherwise, we discard the tentatively
2999 static void propagate_equalities(struct isl_context_gbr
*cgbr
,
3000 struct isl_tab
*tab
, unsigned first
)
3003 struct isl_vec
*eq
= NULL
;
3005 eq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + tab
->n_var
);
3009 if (isl_tab_extend_cons(tab
, (cgbr
->tab
->bmap
->n_ineq
- first
)/2) < 0)
3012 isl_seq_clr(eq
->el
+ 1 + tab
->n_param
,
3013 tab
->n_var
- tab
->n_param
- tab
->n_div
);
3014 for (i
= first
; i
< cgbr
->tab
->bmap
->n_ineq
; i
+= 2) {
3017 struct isl_tab_undo
*snap
;
3018 snap
= isl_tab_snap(tab
);
3020 isl_seq_cpy(eq
->el
, cgbr
->tab
->bmap
->ineq
[i
], 1 + tab
->n_param
);
3021 isl_seq_cpy(eq
->el
+ 1 + tab
->n_var
- tab
->n_div
,
3022 cgbr
->tab
->bmap
->ineq
[i
] + 1 + tab
->n_param
,
3025 r
= isl_tab_add_row(tab
, eq
->el
);
3028 r
= tab
->con
[r
].index
;
3029 j
= last_non_zero_var_col(tab
, tab
->mat
->row
[r
] + 2 + tab
->M
);
3030 if (j
< 0 || j
< tab
->n_dead
||
3031 !isl_int_is_one(tab
->mat
->row
[r
][0]) ||
3032 (!isl_int_is_one(tab
->mat
->row
[r
][2 + tab
->M
+ j
]) &&
3033 !isl_int_is_negone(tab
->mat
->row
[r
][2 + tab
->M
+ j
]))) {
3034 if (isl_tab_rollback(tab
, snap
) < 0)
3038 if (isl_tab_pivot(tab
, r
, j
) < 0)
3040 if (isl_tab_kill_col(tab
, j
) < 0)
3043 if (restore_lexmin(tab
) < 0)
3052 isl_tab_free(cgbr
->tab
);
3056 static int context_gbr_detect_equalities(struct isl_context
*context
,
3057 struct isl_tab
*tab
)
3059 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3060 struct isl_ctx
*ctx
;
3062 enum isl_lp_result res
;
3065 ctx
= cgbr
->tab
->mat
->ctx
;
3068 struct isl_basic_set
*bset
= isl_tab_peek_bset(cgbr
->tab
);
3069 cgbr
->cone
= isl_tab_from_recession_cone(bset
, 0);
3072 if (isl_tab_track_bset(cgbr
->cone
, isl_basic_set_dup(bset
)) < 0)
3075 if (isl_tab_detect_implicit_equalities(cgbr
->cone
) < 0)
3078 n_ineq
= cgbr
->tab
->bmap
->n_ineq
;
3079 cgbr
->tab
= isl_tab_detect_equalities(cgbr
->tab
, cgbr
->cone
);
3080 if (cgbr
->tab
&& cgbr
->tab
->bmap
->n_ineq
> n_ineq
)
3081 propagate_equalities(cgbr
, tab
, n_ineq
);
3085 isl_tab_free(cgbr
->tab
);
3090 static int context_gbr_get_div(struct isl_context
*context
, struct isl_tab
*tab
,
3091 struct isl_vec
*div
)
3093 return get_div(tab
, context
, div
);
3096 static int context_gbr_add_div(struct isl_context
*context
, struct isl_vec
*div
)
3098 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3102 if (isl_tab_extend_cons(cgbr
->cone
, 3) < 0)
3104 if (isl_tab_extend_vars(cgbr
->cone
, 1) < 0)
3106 if (isl_tab_allocate_var(cgbr
->cone
) <0)
3109 cgbr
->cone
->bmap
= isl_basic_map_extend_dim(cgbr
->cone
->bmap
,
3110 isl_basic_map_get_dim(cgbr
->cone
->bmap
), 1, 0, 2);
3111 k
= isl_basic_map_alloc_div(cgbr
->cone
->bmap
);
3114 isl_seq_cpy(cgbr
->cone
->bmap
->div
[k
], div
->el
, div
->size
);
3115 if (isl_tab_push(cgbr
->cone
, isl_tab_undo_bmap_div
) < 0)
3118 return context_tab_add_div(cgbr
->tab
, div
,
3119 context_gbr_add_ineq_wrap
, context
);
3122 static int context_gbr_best_split(struct isl_context
*context
,
3123 struct isl_tab
*tab
)
3125 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3126 struct isl_tab_undo
*snap
;
3129 snap
= isl_tab_snap(cgbr
->tab
);
3130 r
= best_split(tab
, cgbr
->tab
);
3132 if (r
>= 0 && isl_tab_rollback(cgbr
->tab
, snap
) < 0)
3138 static int context_gbr_is_empty(struct isl_context
*context
)
3140 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3143 return cgbr
->tab
->empty
;
3146 struct isl_gbr_tab_undo
{
3147 struct isl_tab_undo
*tab_snap
;
3148 struct isl_tab_undo
*shifted_snap
;
3149 struct isl_tab_undo
*cone_snap
;
3152 static void *context_gbr_save(struct isl_context
*context
)
3154 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3155 struct isl_gbr_tab_undo
*snap
;
3157 snap
= isl_alloc_type(cgbr
->tab
->mat
->ctx
, struct isl_gbr_tab_undo
);
3161 snap
->tab_snap
= isl_tab_snap(cgbr
->tab
);
3162 if (isl_tab_save_samples(cgbr
->tab
) < 0)
3166 snap
->shifted_snap
= isl_tab_snap(cgbr
->shifted
);
3168 snap
->shifted_snap
= NULL
;
3171 snap
->cone_snap
= isl_tab_snap(cgbr
->cone
);
3173 snap
->cone_snap
= NULL
;
3181 static void context_gbr_restore(struct isl_context
*context
, void *save
)
3183 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3184 struct isl_gbr_tab_undo
*snap
= (struct isl_gbr_tab_undo
*)save
;
3187 if (isl_tab_rollback(cgbr
->tab
, snap
->tab_snap
) < 0) {
3188 isl_tab_free(cgbr
->tab
);
3192 if (snap
->shifted_snap
) {
3193 if (isl_tab_rollback(cgbr
->shifted
, snap
->shifted_snap
) < 0)
3195 } else if (cgbr
->shifted
) {
3196 isl_tab_free(cgbr
->shifted
);
3197 cgbr
->shifted
= NULL
;
3200 if (snap
->cone_snap
) {
3201 if (isl_tab_rollback(cgbr
->cone
, snap
->cone_snap
) < 0)
3203 } else if (cgbr
->cone
) {
3204 isl_tab_free(cgbr
->cone
);
3213 isl_tab_free(cgbr
->tab
);
3217 static int context_gbr_is_ok(struct isl_context
*context
)
3219 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3223 static void context_gbr_invalidate(struct isl_context
*context
)
3225 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3226 isl_tab_free(cgbr
->tab
);
3230 static void context_gbr_free(struct isl_context
*context
)
3232 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3233 isl_tab_free(cgbr
->tab
);
3234 isl_tab_free(cgbr
->shifted
);
3235 isl_tab_free(cgbr
->cone
);
3239 struct isl_context_op isl_context_gbr_op
= {
3240 context_gbr_detect_nonnegative_parameters
,
3241 context_gbr_peek_basic_set
,
3242 context_gbr_peek_tab
,
3244 context_gbr_add_ineq
,
3245 context_gbr_ineq_sign
,
3246 context_gbr_test_ineq
,
3247 context_gbr_get_div
,
3248 context_gbr_add_div
,
3249 context_gbr_detect_equalities
,
3250 context_gbr_best_split
,
3251 context_gbr_is_empty
,
3254 context_gbr_restore
,
3255 context_gbr_invalidate
,
3259 static struct isl_context
*isl_context_gbr_alloc(struct isl_basic_set
*dom
)
3261 struct isl_context_gbr
*cgbr
;
3266 cgbr
= isl_calloc_type(dom
->ctx
, struct isl_context_gbr
);
3270 cgbr
->context
.op
= &isl_context_gbr_op
;
3272 cgbr
->shifted
= NULL
;
3274 cgbr
->tab
= isl_tab_from_basic_set(dom
);
3275 cgbr
->tab
= isl_tab_init_samples(cgbr
->tab
);
3278 if (isl_tab_track_bset(cgbr
->tab
,
3279 isl_basic_set_cow(isl_basic_set_copy(dom
))) < 0)
3281 check_gbr_integer_feasible(cgbr
);
3283 return &cgbr
->context
;
3285 cgbr
->context
.op
->free(&cgbr
->context
);
3289 static struct isl_context
*isl_context_alloc(struct isl_basic_set
*dom
)
3294 if (dom
->ctx
->opt
->context
== ISL_CONTEXT_LEXMIN
)
3295 return isl_context_lex_alloc(dom
);
3297 return isl_context_gbr_alloc(dom
);
3300 /* Construct an isl_sol_map structure for accumulating the solution.
3301 * If track_empty is set, then we also keep track of the parts
3302 * of the context where there is no solution.
3303 * If max is set, then we are solving a maximization, rather than
3304 * a minimization problem, which means that the variables in the
3305 * tableau have value "M - x" rather than "M + x".
3307 static struct isl_sol_map
*sol_map_init(struct isl_basic_map
*bmap
,
3308 struct isl_basic_set
*dom
, int track_empty
, int max
)
3310 struct isl_sol_map
*sol_map
= NULL
;
3315 sol_map
= isl_calloc_type(bmap
->ctx
, struct isl_sol_map
);
3319 sol_map
->sol
.rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
3320 sol_map
->sol
.dec_level
.callback
.run
= &sol_dec_level_wrap
;
3321 sol_map
->sol
.dec_level
.sol
= &sol_map
->sol
;
3322 sol_map
->sol
.max
= max
;
3323 sol_map
->sol
.n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
3324 sol_map
->sol
.add
= &sol_map_add_wrap
;
3325 sol_map
->sol
.add_empty
= track_empty
? &sol_map_add_empty_wrap
: NULL
;
3326 sol_map
->sol
.free
= &sol_map_free_wrap
;
3327 sol_map
->map
= isl_map_alloc_dim(isl_basic_map_get_dim(bmap
), 1,
3332 sol_map
->sol
.context
= isl_context_alloc(dom
);
3333 if (!sol_map
->sol
.context
)
3337 sol_map
->empty
= isl_set_alloc_dim(isl_basic_set_get_dim(dom
),
3338 1, ISL_SET_DISJOINT
);
3339 if (!sol_map
->empty
)
3343 isl_basic_set_free(dom
);
3346 isl_basic_set_free(dom
);
3347 sol_map_free(sol_map
);
3351 /* Check whether all coefficients of (non-parameter) variables
3352 * are non-positive, meaning that no pivots can be performed on the row.
3354 static int is_critical(struct isl_tab
*tab
, int row
)
3357 unsigned off
= 2 + tab
->M
;
3359 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
3360 if (tab
->col_var
[j
] >= 0 &&
3361 (tab
->col_var
[j
] < tab
->n_param
||
3362 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
3365 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ j
]))
3372 /* Check whether the inequality represented by vec is strict over the integers,
3373 * i.e., there are no integer values satisfying the constraint with
3374 * equality. This happens if the gcd of the coefficients is not a divisor
3375 * of the constant term. If so, scale the constraint down by the gcd
3376 * of the coefficients.
3378 static int is_strict(struct isl_vec
*vec
)
3384 isl_seq_gcd(vec
->el
+ 1, vec
->size
- 1, &gcd
);
3385 if (!isl_int_is_one(gcd
)) {
3386 strict
= !isl_int_is_divisible_by(vec
->el
[0], gcd
);
3387 isl_int_fdiv_q(vec
->el
[0], vec
->el
[0], gcd
);
3388 isl_seq_scale_down(vec
->el
+ 1, vec
->el
+ 1, gcd
, vec
->size
-1);
3395 /* Determine the sign of the given row of the main tableau.
3396 * The result is one of
3397 * isl_tab_row_pos: always non-negative; no pivot needed
3398 * isl_tab_row_neg: always non-positive; pivot
3399 * isl_tab_row_any: can be both positive and negative; split
3401 * We first handle some simple cases
3402 * - the row sign may be known already
3403 * - the row may be obviously non-negative
3404 * - the parametric constant may be equal to that of another row
3405 * for which we know the sign. This sign will be either "pos" or
3406 * "any". If it had been "neg" then we would have pivoted before.
3408 * If none of these cases hold, we check the value of the row for each
3409 * of the currently active samples. Based on the signs of these values
3410 * we make an initial determination of the sign of the row.
3412 * all zero -> unk(nown)
3413 * all non-negative -> pos
3414 * all non-positive -> neg
3415 * both negative and positive -> all
3417 * If we end up with "all", we are done.
3418 * Otherwise, we perform a check for positive and/or negative
3419 * values as follows.
3421 * samples neg unk pos
3427 * There is no special sign for "zero", because we can usually treat zero
3428 * as either non-negative or non-positive, whatever works out best.
3429 * However, if the row is "critical", meaning that pivoting is impossible
3430 * then we don't want to limp zero with the non-positive case, because
3431 * then we we would lose the solution for those values of the parameters
3432 * where the value of the row is zero. Instead, we treat 0 as non-negative
3433 * ensuring a split if the row can attain both zero and negative values.
3434 * The same happens when the original constraint was one that could not
3435 * be satisfied with equality by any integer values of the parameters.
3436 * In this case, we normalize the constraint, but then a value of zero
3437 * for the normalized constraint is actually a positive value for the
3438 * original constraint, so again we need to treat zero as non-negative.
3439 * In both these cases, we have the following decision tree instead:
3441 * all non-negative -> pos
3442 * all negative -> neg
3443 * both negative and non-negative -> all
3451 static enum isl_tab_row_sign
row_sign(struct isl_tab
*tab
,
3452 struct isl_sol
*sol
, int row
)
3454 struct isl_vec
*ineq
= NULL
;
3455 enum isl_tab_row_sign res
= isl_tab_row_unknown
;
3460 if (tab
->row_sign
[row
] != isl_tab_row_unknown
)
3461 return tab
->row_sign
[row
];
3462 if (is_obviously_nonneg(tab
, row
))
3463 return isl_tab_row_pos
;
3464 for (row2
= tab
->n_redundant
; row2
< tab
->n_row
; ++row2
) {
3465 if (tab
->row_sign
[row2
] == isl_tab_row_unknown
)
3467 if (identical_parameter_line(tab
, row
, row2
))
3468 return tab
->row_sign
[row2
];
3471 critical
= is_critical(tab
, row
);
3473 ineq
= get_row_parameter_ineq(tab
, row
);
3477 strict
= is_strict(ineq
);
3479 res
= sol
->context
->op
->ineq_sign(sol
->context
, ineq
->el
,
3480 critical
|| strict
);
3482 if (res
== isl_tab_row_unknown
|| res
== isl_tab_row_pos
) {
3483 /* test for negative values */
3485 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3486 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3488 feasible
= sol
->context
->op
->test_ineq(sol
->context
, ineq
->el
);
3492 res
= isl_tab_row_pos
;
3494 res
= (res
== isl_tab_row_unknown
) ? isl_tab_row_neg
3496 if (res
== isl_tab_row_neg
) {
3497 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3498 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3502 if (res
== isl_tab_row_neg
) {
3503 /* test for positive values */
3505 if (!critical
&& !strict
)
3506 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3508 feasible
= sol
->context
->op
->test_ineq(sol
->context
, ineq
->el
);
3512 res
= isl_tab_row_any
;
3519 return isl_tab_row_unknown
;
3522 static void find_solutions(struct isl_sol
*sol
, struct isl_tab
*tab
);
3524 /* Find solutions for values of the parameters that satisfy the given
3527 * We currently take a snapshot of the context tableau that is reset
3528 * when we return from this function, while we make a copy of the main
3529 * tableau, leaving the original main tableau untouched.
3530 * These are fairly arbitrary choices. Making a copy also of the context
3531 * tableau would obviate the need to undo any changes made to it later,
3532 * while taking a snapshot of the main tableau could reduce memory usage.
3533 * If we were to switch to taking a snapshot of the main tableau,
3534 * we would have to keep in mind that we need to save the row signs
3535 * and that we need to do this before saving the current basis
3536 * such that the basis has been restore before we restore the row signs.
3538 static void find_in_pos(struct isl_sol
*sol
, struct isl_tab
*tab
, isl_int
*ineq
)
3544 saved
= sol
->context
->op
->save(sol
->context
);
3546 tab
= isl_tab_dup(tab
);
3550 sol
->context
->op
->add_ineq(sol
->context
, ineq
, 0, 1);
3552 find_solutions(sol
, tab
);
3555 sol
->context
->op
->restore(sol
->context
, saved
);
3561 /* Record the absence of solutions for those values of the parameters
3562 * that do not satisfy the given inequality with equality.
3564 static void no_sol_in_strict(struct isl_sol
*sol
,
3565 struct isl_tab
*tab
, struct isl_vec
*ineq
)
3570 if (!sol
->context
|| sol
->error
)
3572 saved
= sol
->context
->op
->save(sol
->context
);
3574 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3576 sol
->context
->op
->add_ineq(sol
->context
, ineq
->el
, 1, 0);
3585 isl_int_add_ui(ineq
->el
[0], ineq
->el
[0], 1);
3587 sol
->context
->op
->restore(sol
->context
, saved
);
3593 /* Compute the lexicographic minimum of the set represented by the main
3594 * tableau "tab" within the context "sol->context_tab".
3595 * On entry the sample value of the main tableau is lexicographically
3596 * less than or equal to this lexicographic minimum.
3597 * Pivots are performed until a feasible point is found, which is then
3598 * necessarily equal to the minimum, or until the tableau is found to
3599 * be infeasible. Some pivots may need to be performed for only some
3600 * feasible values of the context tableau. If so, the context tableau
3601 * is split into a part where the pivot is needed and a part where it is not.
3603 * Whenever we enter the main loop, the main tableau is such that no
3604 * "obvious" pivots need to be performed on it, where "obvious" means
3605 * that the given row can be seen to be negative without looking at
3606 * the context tableau. In particular, for non-parametric problems,
3607 * no pivots need to be performed on the main tableau.
3608 * The caller of find_solutions is responsible for making this property
3609 * hold prior to the first iteration of the loop, while restore_lexmin
3610 * is called before every other iteration.
3612 * Inside the main loop, we first examine the signs of the rows of
3613 * the main tableau within the context of the context tableau.
3614 * If we find a row that is always non-positive for all values of
3615 * the parameters satisfying the context tableau and negative for at
3616 * least one value of the parameters, we perform the appropriate pivot
3617 * and start over. An exception is the case where no pivot can be
3618 * performed on the row. In this case, we require that the sign of
3619 * the row is negative for all values of the parameters (rather than just
3620 * non-positive). This special case is handled inside row_sign, which
3621 * will say that the row can have any sign if it determines that it can
3622 * attain both negative and zero values.
3624 * If we can't find a row that always requires a pivot, but we can find
3625 * one or more rows that require a pivot for some values of the parameters
3626 * (i.e., the row can attain both positive and negative signs), then we split
3627 * the context tableau into two parts, one where we force the sign to be
3628 * non-negative and one where we force is to be negative.
3629 * The non-negative part is handled by a recursive call (through find_in_pos).
3630 * Upon returning from this call, we continue with the negative part and
3631 * perform the required pivot.
3633 * If no such rows can be found, all rows are non-negative and we have
3634 * found a (rational) feasible point. If we only wanted a rational point
3636 * Otherwise, we check if all values of the sample point of the tableau
3637 * are integral for the variables. If so, we have found the minimal
3638 * integral point and we are done.
3639 * If the sample point is not integral, then we need to make a distinction
3640 * based on whether the constant term is non-integral or the coefficients
3641 * of the parameters. Furthermore, in order to decide how to handle
3642 * the non-integrality, we also need to know whether the coefficients
3643 * of the other columns in the tableau are integral. This leads
3644 * to the following table. The first two rows do not correspond
3645 * to a non-integral sample point and are only mentioned for completeness.
3647 * constant parameters other
3650 * int int rat | -> no problem
3652 * rat int int -> fail
3654 * rat int rat -> cut
3657 * rat rat rat | -> parametric cut
3660 * rat rat int | -> split context
3662 * If the parametric constant is completely integral, then there is nothing
3663 * to be done. If the constant term is non-integral, but all the other
3664 * coefficient are integral, then there is nothing that can be done
3665 * and the tableau has no integral solution.
3666 * If, on the other hand, one or more of the other columns have rational
3667 * coefficients, but the parameter coefficients are all integral, then
3668 * we can perform a regular (non-parametric) cut.
3669 * Finally, if there is any parameter coefficient that is non-integral,
3670 * then we need to involve the context tableau. There are two cases here.
3671 * If at least one other column has a rational coefficient, then we
3672 * can perform a parametric cut in the main tableau by adding a new
3673 * integer division in the context tableau.
3674 * If all other columns have integral coefficients, then we need to
3675 * enforce that the rational combination of parameters (c + \sum a_i y_i)/m
3676 * is always integral. We do this by introducing an integer division
3677 * q = floor((c + \sum a_i y_i)/m) and stipulating that its argument should
3678 * always be integral in the context tableau, i.e., m q = c + \sum a_i y_i.
3679 * Since q is expressed in the tableau as
3680 * c + \sum a_i y_i - m q >= 0
3681 * -c - \sum a_i y_i + m q + m - 1 >= 0
3682 * it is sufficient to add the inequality
3683 * -c - \sum a_i y_i + m q >= 0
3684 * In the part of the context where this inequality does not hold, the
3685 * main tableau is marked as being empty.
3687 static void find_solutions(struct isl_sol
*sol
, struct isl_tab
*tab
)
3689 struct isl_context
*context
;
3692 if (!tab
|| sol
->error
)
3695 context
= sol
->context
;
3699 if (context
->op
->is_empty(context
))
3702 for (r
= 0; r
>= 0 && tab
&& !tab
->empty
; r
= restore_lexmin(tab
)) {
3705 enum isl_tab_row_sign sgn
;
3709 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3710 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
3712 sgn
= row_sign(tab
, sol
, row
);
3715 tab
->row_sign
[row
] = sgn
;
3716 if (sgn
== isl_tab_row_any
)
3718 if (sgn
== isl_tab_row_any
&& split
== -1)
3720 if (sgn
== isl_tab_row_neg
)
3723 if (row
< tab
->n_row
)
3726 struct isl_vec
*ineq
;
3728 split
= context
->op
->best_split(context
, tab
);
3731 ineq
= get_row_parameter_ineq(tab
, split
);
3735 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3736 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
3738 if (tab
->row_sign
[row
] == isl_tab_row_any
)
3739 tab
->row_sign
[row
] = isl_tab_row_unknown
;
3741 tab
->row_sign
[split
] = isl_tab_row_pos
;
3743 find_in_pos(sol
, tab
, ineq
->el
);
3744 tab
->row_sign
[split
] = isl_tab_row_neg
;
3746 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3747 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3749 context
->op
->add_ineq(context
, ineq
->el
, 0, 1);
3757 row
= first_non_integer_row(tab
, &flags
);
3760 if (ISL_FL_ISSET(flags
, I_PAR
)) {
3761 if (ISL_FL_ISSET(flags
, I_VAR
)) {
3762 if (isl_tab_mark_empty(tab
) < 0)
3766 row
= add_cut(tab
, row
);
3767 } else if (ISL_FL_ISSET(flags
, I_VAR
)) {
3768 struct isl_vec
*div
;
3769 struct isl_vec
*ineq
;
3771 div
= get_row_split_div(tab
, row
);
3774 d
= context
->op
->get_div(context
, tab
, div
);
3778 ineq
= ineq_for_div(context
->op
->peek_basic_set(context
), d
);
3782 no_sol_in_strict(sol
, tab
, ineq
);
3783 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3784 context
->op
->add_ineq(context
, ineq
->el
, 1, 1);
3786 if (sol
->error
|| !context
->op
->is_ok(context
))
3788 tab
= set_row_cst_to_div(tab
, row
, d
);
3789 if (context
->op
->is_empty(context
))
3792 row
= add_parametric_cut(tab
, row
, context
);
3807 /* Compute the lexicographic minimum of the set represented by the main
3808 * tableau "tab" within the context "sol->context_tab".
3810 * As a preprocessing step, we first transfer all the purely parametric
3811 * equalities from the main tableau to the context tableau, i.e.,
3812 * parameters that have been pivoted to a row.
3813 * These equalities are ignored by the main algorithm, because the
3814 * corresponding rows may not be marked as being non-negative.
3815 * In parts of the context where the added equality does not hold,
3816 * the main tableau is marked as being empty.
3818 static void find_solutions_main(struct isl_sol
*sol
, struct isl_tab
*tab
)
3827 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3831 if (tab
->row_var
[row
] < 0)
3833 if (tab
->row_var
[row
] >= tab
->n_param
&&
3834 tab
->row_var
[row
] < tab
->n_var
- tab
->n_div
)
3836 if (tab
->row_var
[row
] < tab
->n_param
)
3837 p
= tab
->row_var
[row
];
3839 p
= tab
->row_var
[row
]
3840 + tab
->n_param
- (tab
->n_var
- tab
->n_div
);
3842 eq
= isl_vec_alloc(tab
->mat
->ctx
, 1+tab
->n_param
+tab
->n_div
);
3845 get_row_parameter_line(tab
, row
, eq
->el
);
3846 isl_int_neg(eq
->el
[1 + p
], tab
->mat
->row
[row
][0]);
3847 eq
= isl_vec_normalize(eq
);
3850 no_sol_in_strict(sol
, tab
, eq
);
3852 isl_seq_neg(eq
->el
, eq
->el
, eq
->size
);
3854 no_sol_in_strict(sol
, tab
, eq
);
3855 isl_seq_neg(eq
->el
, eq
->el
, eq
->size
);
3857 sol
->context
->op
->add_eq(sol
->context
, eq
->el
, 1, 1);
3861 if (isl_tab_mark_redundant(tab
, row
) < 0)
3864 if (sol
->context
->op
->is_empty(sol
->context
))
3867 row
= tab
->n_redundant
- 1;
3870 find_solutions(sol
, tab
);
3881 static void sol_map_find_solutions(struct isl_sol_map
*sol_map
,
3882 struct isl_tab
*tab
)
3884 find_solutions_main(&sol_map
->sol
, tab
);
3887 /* Check if integer division "div" of "dom" also occurs in "bmap".
3888 * If so, return its position within the divs.
3889 * If not, return -1.
3891 static int find_context_div(struct isl_basic_map
*bmap
,
3892 struct isl_basic_set
*dom
, unsigned div
)
3895 unsigned b_dim
= isl_dim_total(bmap
->dim
);
3896 unsigned d_dim
= isl_dim_total(dom
->dim
);
3898 if (isl_int_is_zero(dom
->div
[div
][0]))
3900 if (isl_seq_first_non_zero(dom
->div
[div
] + 2 + d_dim
, dom
->n_div
) != -1)
3903 for (i
= 0; i
< bmap
->n_div
; ++i
) {
3904 if (isl_int_is_zero(bmap
->div
[i
][0]))
3906 if (isl_seq_first_non_zero(bmap
->div
[i
] + 2 + d_dim
,
3907 (b_dim
- d_dim
) + bmap
->n_div
) != -1)
3909 if (isl_seq_eq(bmap
->div
[i
], dom
->div
[div
], 2 + d_dim
))
3915 /* The correspondence between the variables in the main tableau,
3916 * the context tableau, and the input map and domain is as follows.
3917 * The first n_param and the last n_div variables of the main tableau
3918 * form the variables of the context tableau.
3919 * In the basic map, these n_param variables correspond to the
3920 * parameters and the input dimensions. In the domain, they correspond
3921 * to the parameters and the set dimensions.
3922 * The n_div variables correspond to the integer divisions in the domain.
3923 * To ensure that everything lines up, we may need to copy some of the
3924 * integer divisions of the domain to the map. These have to be placed
3925 * in the same order as those in the context and they have to be placed
3926 * after any other integer divisions that the map may have.
3927 * This function performs the required reordering.
3929 static struct isl_basic_map
*align_context_divs(struct isl_basic_map
*bmap
,
3930 struct isl_basic_set
*dom
)
3936 for (i
= 0; i
< dom
->n_div
; ++i
)
3937 if (find_context_div(bmap
, dom
, i
) != -1)
3939 other
= bmap
->n_div
- common
;
3940 if (dom
->n_div
- common
> 0) {
3941 bmap
= isl_basic_map_extend_dim(bmap
, isl_dim_copy(bmap
->dim
),
3942 dom
->n_div
- common
, 0, 0);
3946 for (i
= 0; i
< dom
->n_div
; ++i
) {
3947 int pos
= find_context_div(bmap
, dom
, i
);
3949 pos
= isl_basic_map_alloc_div(bmap
);
3952 isl_int_set_si(bmap
->div
[pos
][0], 0);
3954 if (pos
!= other
+ i
)
3955 isl_basic_map_swap_div(bmap
, pos
, other
+ i
);
3959 isl_basic_map_free(bmap
);
3963 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
3964 * some obvious symmetries.
3966 * We make sure the divs in the domain are properly ordered,
3967 * because they will be added one by one in the given order
3968 * during the construction of the solution map.
3970 static __isl_give isl_map
*basic_map_partial_lexopt_base(
3971 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
3972 __isl_give isl_set
**empty
, int max
)
3974 isl_map
*result
= NULL
;
3975 struct isl_tab
*tab
;
3976 struct isl_sol_map
*sol_map
= NULL
;
3977 struct isl_context
*context
;
3980 dom
= isl_basic_set_order_divs(dom
);
3981 bmap
= align_context_divs(bmap
, dom
);
3983 sol_map
= sol_map_init(bmap
, dom
, !!empty
, max
);
3987 context
= sol_map
->sol
.context
;
3988 if (isl_basic_set_plain_is_empty(context
->op
->peek_basic_set(context
)))
3990 else if (isl_basic_map_plain_is_empty(bmap
))
3991 sol_map_add_empty_if_needed(sol_map
,
3992 isl_basic_set_copy(context
->op
->peek_basic_set(context
)));
3994 tab
= tab_for_lexmin(bmap
,
3995 context
->op
->peek_basic_set(context
), 1, max
);
3996 tab
= context
->op
->detect_nonnegative_parameters(context
, tab
);
3997 sol_map_find_solutions(sol_map
, tab
);
3999 if (sol_map
->sol
.error
)
4002 result
= isl_map_copy(sol_map
->map
);
4004 *empty
= isl_set_copy(sol_map
->empty
);
4005 sol_free(&sol_map
->sol
);
4006 isl_basic_map_free(bmap
);
4009 sol_free(&sol_map
->sol
);
4010 isl_basic_map_free(bmap
);
4014 /* Structure used during detection of parallel constraints.
4015 * n_in: number of "input" variables: isl_dim_param + isl_dim_in
4016 * n_out: number of "output" variables: isl_dim_out + isl_dim_div
4017 * val: the coefficients of the output variables
4019 struct isl_constraint_equal_info
{
4020 isl_basic_map
*bmap
;
4026 /* Check whether the coefficients of the output variables
4027 * of the constraint in "entry" are equal to info->val.
4029 static int constraint_equal(const void *entry
, const void *val
)
4031 isl_int
**row
= (isl_int
**)entry
;
4032 const struct isl_constraint_equal_info
*info
= val
;
4034 return isl_seq_eq((*row
) + 1 + info
->n_in
, info
->val
, info
->n_out
);
4037 /* Check whether "bmap" has a pair of constraints that have
4038 * the same coefficients for the output variables.
4039 * Note that the coefficients of the existentially quantified
4040 * variables need to be zero since the existentially quantified
4041 * of the result are usually not the same as those of the input.
4042 * the isl_dim_out and isl_dim_div dimensions.
4043 * If so, return 1 and return the row indices of the two constraints
4044 * in *first and *second.
4046 static int parallel_constraints(__isl_keep isl_basic_map
*bmap
,
4047 int *first
, int *second
)
4050 isl_ctx
*ctx
= isl_basic_map_get_ctx(bmap
);
4051 struct isl_hash_table
*table
= NULL
;
4052 struct isl_hash_table_entry
*entry
;
4053 struct isl_constraint_equal_info info
;
4057 ctx
= isl_basic_map_get_ctx(bmap
);
4058 table
= isl_hash_table_alloc(ctx
, bmap
->n_ineq
);
4062 info
.n_in
= isl_basic_map_dim(bmap
, isl_dim_param
) +
4063 isl_basic_map_dim(bmap
, isl_dim_in
);
4065 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4066 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4067 info
.n_out
= n_out
+ n_div
;
4068 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
4071 info
.val
= bmap
->ineq
[i
] + 1 + info
.n_in
;
4072 if (isl_seq_first_non_zero(info
.val
, n_out
) < 0)
4074 if (isl_seq_first_non_zero(info
.val
+ n_out
, n_div
) >= 0)
4076 hash
= isl_seq_get_hash(info
.val
, info
.n_out
);
4077 entry
= isl_hash_table_find(ctx
, table
, hash
,
4078 constraint_equal
, &info
, 1);
4083 entry
->data
= &bmap
->ineq
[i
];
4086 if (i
< bmap
->n_ineq
) {
4087 *first
= ((isl_int
**)entry
->data
) - bmap
->ineq
;
4091 isl_hash_table_free(ctx
, table
);
4093 return i
< bmap
->n_ineq
;
4095 isl_hash_table_free(ctx
, table
);
4099 /* Given a set of upper bounds on the last "input" variable m,
4100 * construct a set that assigns the minimal upper bound to m, i.e.,
4101 * construct a set that divides the space into cells where one
4102 * of the upper bounds is smaller than all the others and assign
4103 * this upper bound to m.
4105 * In particular, if there are n bounds b_i, then the result
4106 * consists of n basic sets, each one of the form
4109 * b_i <= b_j for j > i
4110 * b_i < b_j for j < i
4112 static __isl_give isl_set
*set_minimum(__isl_take isl_dim
*dim
,
4113 __isl_take isl_mat
*var
)
4116 isl_basic_set
*bset
= NULL
;
4118 isl_set
*set
= NULL
;
4123 ctx
= isl_dim_get_ctx(dim
);
4124 set
= isl_set_alloc_dim(isl_dim_copy(dim
),
4125 var
->n_row
, ISL_SET_DISJOINT
);
4127 for (i
= 0; i
< var
->n_row
; ++i
) {
4128 bset
= isl_basic_set_alloc_dim(isl_dim_copy(dim
), 0,
4130 k
= isl_basic_set_alloc_equality(bset
);
4133 isl_seq_cpy(bset
->eq
[k
], var
->row
[i
], var
->n_col
);
4134 isl_int_set_si(bset
->eq
[k
][var
->n_col
], -1);
4135 for (j
= 0; j
< var
->n_row
; ++j
) {
4138 k
= isl_basic_set_alloc_inequality(bset
);
4141 isl_seq_combine(bset
->ineq
[k
], ctx
->one
, var
->row
[j
],
4142 ctx
->negone
, var
->row
[i
],
4144 isl_int_set_si(bset
->ineq
[k
][var
->n_col
], 0);
4146 isl_int_sub_ui(bset
->ineq
[k
][0],
4147 bset
->ineq
[k
][0], 1);
4149 bset
= isl_basic_set_finalize(bset
);
4150 set
= isl_set_add_basic_set(set
, bset
);
4157 isl_basic_set_free(bset
);
4164 /* Given that the last input variable of "bmap" represents the minimum
4165 * of the bounds in "cst", check whether we need to split the domain
4166 * based on which bound attains the minimum.
4168 * A split is needed when the minimum appears in an integer division
4169 * or in an equality. Otherwise, it is only needed if it appears in
4170 * an upper bound that is different from the upper bounds on which it
4173 static int need_split_map(__isl_keep isl_basic_map
*bmap
,
4174 __isl_keep isl_mat
*cst
)
4180 pos
= cst
->n_col
- 1;
4181 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
4183 for (i
= 0; i
< bmap
->n_div
; ++i
)
4184 if (!isl_int_is_zero(bmap
->div
[i
][2 + pos
]))
4187 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4188 if (!isl_int_is_zero(bmap
->eq
[i
][1 + pos
]))
4191 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
4192 if (isl_int_is_nonneg(bmap
->ineq
[i
][1 + pos
]))
4194 if (!isl_int_is_negone(bmap
->ineq
[i
][1 + pos
]))
4196 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + pos
+ 1,
4197 total
- pos
- 1) >= 0)
4200 for (j
= 0; j
< cst
->n_row
; ++j
)
4201 if (isl_seq_eq(bmap
->ineq
[i
], cst
->row
[j
], cst
->n_col
))
4203 if (j
>= cst
->n_row
)
4210 static int need_split_set(__isl_keep isl_basic_set
*bset
,
4211 __isl_keep isl_mat
*cst
)
4213 return need_split_map((isl_basic_map
*)bset
, cst
);
4216 /* Given a set of which the last set variable is the minimum
4217 * of the bounds in "cst", split each basic set in the set
4218 * in pieces where one of the bounds is (strictly) smaller than the others.
4219 * This subdivision is given in "min_expr".
4220 * The variable is subsequently projected out.
4222 * We only do the split when it is needed.
4223 * For example if the last input variable m = min(a,b) and the only
4224 * constraints in the given basic set are lower bounds on m,
4225 * i.e., l <= m = min(a,b), then we can simply project out m
4226 * to obtain l <= a and l <= b, without having to split on whether
4227 * m is equal to a or b.
4229 static __isl_give isl_set
*split(__isl_take isl_set
*empty
,
4230 __isl_take isl_set
*min_expr
, __isl_take isl_mat
*cst
)
4237 if (!empty
|| !min_expr
|| !cst
)
4240 n_in
= isl_set_dim(empty
, isl_dim_set
);
4241 dim
= isl_set_get_dim(empty
);
4242 dim
= isl_dim_drop(dim
, isl_dim_set
, n_in
- 1, 1);
4243 res
= isl_set_empty(dim
);
4245 for (i
= 0; i
< empty
->n
; ++i
) {
4248 set
= isl_set_from_basic_set(isl_basic_set_copy(empty
->p
[i
]));
4249 if (need_split_set(empty
->p
[i
], cst
))
4250 set
= isl_set_intersect(set
, isl_set_copy(min_expr
));
4251 set
= isl_set_remove_dims(set
, isl_dim_set
, n_in
- 1, 1);
4253 res
= isl_set_union_disjoint(res
, set
);
4256 isl_set_free(empty
);
4257 isl_set_free(min_expr
);
4261 isl_set_free(empty
);
4262 isl_set_free(min_expr
);
4267 /* Given a map of which the last input variable is the minimum
4268 * of the bounds in "cst", split each basic set in the set
4269 * in pieces where one of the bounds is (strictly) smaller than the others.
4270 * This subdivision is given in "min_expr".
4271 * The variable is subsequently projected out.
4273 * The implementation is essentially the same as that of "split".
4275 static __isl_give isl_map
*split_domain(__isl_take isl_map
*opt
,
4276 __isl_take isl_set
*min_expr
, __isl_take isl_mat
*cst
)
4283 if (!opt
|| !min_expr
|| !cst
)
4286 n_in
= isl_map_dim(opt
, isl_dim_in
);
4287 dim
= isl_map_get_dim(opt
);
4288 dim
= isl_dim_drop(dim
, isl_dim_in
, n_in
- 1, 1);
4289 res
= isl_map_empty(dim
);
4291 for (i
= 0; i
< opt
->n
; ++i
) {
4294 map
= isl_map_from_basic_map(isl_basic_map_copy(opt
->p
[i
]));
4295 if (need_split_map(opt
->p
[i
], cst
))
4296 map
= isl_map_intersect_domain(map
,
4297 isl_set_copy(min_expr
));
4298 map
= isl_map_remove_dims(map
, isl_dim_in
, n_in
- 1, 1);
4300 res
= isl_map_union_disjoint(res
, map
);
4304 isl_set_free(min_expr
);
4309 isl_set_free(min_expr
);
4314 static __isl_give isl_map
*basic_map_partial_lexopt(
4315 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4316 __isl_give isl_set
**empty
, int max
);
4318 /* Given a basic map with at least two parallel constraints (as found
4319 * by the function parallel_constraints), first look for more constraints
4320 * parallel to the two constraint and replace the found list of parallel
4321 * constraints by a single constraint with as "input" part the minimum
4322 * of the input parts of the list of constraints. Then, recursively call
4323 * basic_map_partial_lexopt (possibly finding more parallel constraints)
4324 * and plug in the definition of the minimum in the result.
4326 * More specifically, given a set of constraints
4330 * Replace this set by a single constraint
4334 * with u a new parameter with constraints
4338 * Any solution to the new system is also a solution for the original system
4341 * a x >= -u >= -b_i(p)
4343 * Moreover, m = min_i(b_i(p)) satisfies the constraints on u and can
4344 * therefore be plugged into the solution.
4346 static __isl_give isl_map
*basic_map_partial_lexopt_symm(
4347 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4348 __isl_give isl_set
**empty
, int max
, int first
, int second
)
4352 unsigned n_in
, n_out
, n_div
;
4354 isl_vec
*var
= NULL
;
4355 isl_mat
*cst
= NULL
;
4358 isl_dim
*map_dim
, *set_dim
;
4360 map_dim
= isl_basic_map_get_dim(bmap
);
4361 set_dim
= empty
? isl_basic_set_get_dim(dom
) : NULL
;
4363 n_in
= isl_basic_map_dim(bmap
, isl_dim_param
) +
4364 isl_basic_map_dim(bmap
, isl_dim_in
);
4365 n_out
= isl_basic_map_dim(bmap
, isl_dim_all
) - n_in
;
4367 ctx
= isl_basic_map_get_ctx(bmap
);
4368 list
= isl_alloc_array(ctx
, int, bmap
->n_ineq
);
4369 var
= isl_vec_alloc(ctx
, n_out
);
4375 isl_seq_cpy(var
->el
, bmap
->ineq
[first
] + 1 + n_in
, n_out
);
4376 for (i
= second
+ 1, n
= 2; i
< bmap
->n_ineq
; ++i
) {
4377 if (isl_seq_eq(var
->el
, bmap
->ineq
[i
] + 1 + n_in
, n_out
))
4381 cst
= isl_mat_alloc(ctx
, n
, 1 + n_in
);
4385 for (i
= 0; i
< n
; ++i
)
4386 isl_seq_cpy(cst
->row
[i
], bmap
->ineq
[list
[i
]], 1 + n_in
);
4388 bmap
= isl_basic_map_cow(bmap
);
4391 for (i
= n
- 1; i
>= 0; --i
)
4392 if (isl_basic_map_drop_inequality(bmap
, list
[i
]) < 0)
4395 bmap
= isl_basic_map_add(bmap
, isl_dim_in
, 1);
4396 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
4397 k
= isl_basic_map_alloc_inequality(bmap
);
4400 isl_seq_clr(bmap
->ineq
[k
], 1 + n_in
);
4401 isl_int_set_si(bmap
->ineq
[k
][1 + n_in
], 1);
4402 isl_seq_cpy(bmap
->ineq
[k
] + 1 + n_in
+ 1, var
->el
, n_out
);
4403 bmap
= isl_basic_map_finalize(bmap
);
4405 n_div
= isl_basic_set_dim(dom
, isl_dim_div
);
4406 dom
= isl_basic_set_add(dom
, isl_dim_set
, 1);
4407 dom
= isl_basic_set_extend_constraints(dom
, 0, n
);
4408 for (i
= 0; i
< n
; ++i
) {
4409 k
= isl_basic_set_alloc_inequality(dom
);
4412 isl_seq_cpy(dom
->ineq
[k
], cst
->row
[i
], 1 + n_in
);
4413 isl_int_set_si(dom
->ineq
[k
][1 + n_in
], -1);
4414 isl_seq_clr(dom
->ineq
[k
] + 1 + n_in
+ 1, n_div
);
4417 min_expr
= set_minimum(isl_basic_set_get_dim(dom
), isl_mat_copy(cst
));
4422 opt
= basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4425 *empty
= split(*empty
,
4426 isl_set_copy(min_expr
), isl_mat_copy(cst
));
4427 *empty
= isl_set_reset_dim(*empty
, set_dim
);
4430 opt
= split_domain(opt
, min_expr
, cst
);
4431 opt
= isl_map_reset_dim(opt
, map_dim
);
4435 isl_dim_free(map_dim
);
4436 isl_dim_free(set_dim
);
4440 isl_basic_set_free(dom
);
4441 isl_basic_map_free(bmap
);
4445 /* Recursive part of isl_tab_basic_map_partial_lexopt, after detecting
4446 * equalities and removing redundant constraints.
4448 * We first check if there are any parallel constraints (left).
4449 * If not, we are in the base case.
4450 * If there are parallel constraints, we replace them by a single
4451 * constraint in basic_map_partial_lexopt_symm and then call
4452 * this function recursively to look for more parallel constraints.
4454 static __isl_give isl_map
*basic_map_partial_lexopt(
4455 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4456 __isl_give isl_set
**empty
, int max
)
4464 if (bmap
->ctx
->opt
->pip_symmetry
)
4465 par
= parallel_constraints(bmap
, &first
, &second
);
4469 return basic_map_partial_lexopt_base(bmap
, dom
, empty
, max
);
4471 return basic_map_partial_lexopt_symm(bmap
, dom
, empty
, max
,
4474 isl_basic_set_free(dom
);
4475 isl_basic_map_free(bmap
);
4479 /* Compute the lexicographic minimum (or maximum if "max" is set)
4480 * of "bmap" over the domain "dom" and return the result as a map.
4481 * If "empty" is not NULL, then *empty is assigned a set that
4482 * contains those parts of the domain where there is no solution.
4483 * If "bmap" is marked as rational (ISL_BASIC_MAP_RATIONAL),
4484 * then we compute the rational optimum. Otherwise, we compute
4485 * the integral optimum.
4487 * We perform some preprocessing. As the PILP solver does not
4488 * handle implicit equalities very well, we first make sure all
4489 * the equalities are explicitly available.
4491 * We also add context constraints to the basic map and remove
4492 * redundant constraints. This is only needed because of the
4493 * way we handle simple symmetries. In particular, we currently look
4494 * for symmetries on the constraints, before we set up the main tableau.
4495 * It is then no good to look for symmetries on possibly redundant constraints.
4497 struct isl_map
*isl_tab_basic_map_partial_lexopt(
4498 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
4499 struct isl_set
**empty
, int max
)
4506 isl_assert(bmap
->ctx
,
4507 isl_basic_map_compatible_domain(bmap
, dom
), goto error
);
4509 if (isl_basic_set_dim(dom
, isl_dim_all
) == 0)
4510 return basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4512 bmap
= isl_basic_map_intersect_domain(bmap
, isl_basic_set_copy(dom
));
4513 bmap
= isl_basic_map_detect_equalities(bmap
);
4514 bmap
= isl_basic_map_remove_redundancies(bmap
);
4516 return basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4518 isl_basic_set_free(dom
);
4519 isl_basic_map_free(bmap
);
4523 struct isl_sol_for
{
4525 int (*fn
)(__isl_take isl_basic_set
*dom
,
4526 __isl_take isl_mat
*map
, void *user
);
4530 static void sol_for_free(struct isl_sol_for
*sol_for
)
4532 if (sol_for
->sol
.context
)
4533 sol_for
->sol
.context
->op
->free(sol_for
->sol
.context
);
4537 static void sol_for_free_wrap(struct isl_sol
*sol
)
4539 sol_for_free((struct isl_sol_for
*)sol
);
4542 /* Add the solution identified by the tableau and the context tableau.
4544 * See documentation of sol_add for more details.
4546 * Instead of constructing a basic map, this function calls a user
4547 * defined function with the current context as a basic set and
4548 * an affine matrix representing the relation between the input and output.
4549 * The number of rows in this matrix is equal to one plus the number
4550 * of output variables. The number of columns is equal to one plus
4551 * the total dimension of the context, i.e., the number of parameters,
4552 * input variables and divs. Since some of the columns in the matrix
4553 * may refer to the divs, the basic set is not simplified.
4554 * (Simplification may reorder or remove divs.)
4556 static void sol_for_add(struct isl_sol_for
*sol
,
4557 struct isl_basic_set
*dom
, struct isl_mat
*M
)
4559 if (sol
->sol
.error
|| !dom
|| !M
)
4562 dom
= isl_basic_set_finalize(dom
);
4564 if (sol
->fn(isl_basic_set_copy(dom
), isl_mat_copy(M
), sol
->user
) < 0)
4567 isl_basic_set_free(dom
);
4571 isl_basic_set_free(dom
);
4576 static void sol_for_add_wrap(struct isl_sol
*sol
,
4577 struct isl_basic_set
*dom
, struct isl_mat
*M
)
4579 sol_for_add((struct isl_sol_for
*)sol
, dom
, M
);
4582 static struct isl_sol_for
*sol_for_init(struct isl_basic_map
*bmap
, int max
,
4583 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_mat
*map
,
4587 struct isl_sol_for
*sol_for
= NULL
;
4588 struct isl_dim
*dom_dim
;
4589 struct isl_basic_set
*dom
= NULL
;
4591 sol_for
= isl_calloc_type(bmap
->ctx
, struct isl_sol_for
);
4595 dom_dim
= isl_dim_domain(isl_dim_copy(bmap
->dim
));
4596 dom
= isl_basic_set_universe(dom_dim
);
4598 sol_for
->sol
.rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
4599 sol_for
->sol
.dec_level
.callback
.run
= &sol_dec_level_wrap
;
4600 sol_for
->sol
.dec_level
.sol
= &sol_for
->sol
;
4602 sol_for
->user
= user
;
4603 sol_for
->sol
.max
= max
;
4604 sol_for
->sol
.n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4605 sol_for
->sol
.add
= &sol_for_add_wrap
;
4606 sol_for
->sol
.add_empty
= NULL
;
4607 sol_for
->sol
.free
= &sol_for_free_wrap
;
4609 sol_for
->sol
.context
= isl_context_alloc(dom
);
4610 if (!sol_for
->sol
.context
)
4613 isl_basic_set_free(dom
);
4616 isl_basic_set_free(dom
);
4617 sol_for_free(sol_for
);
4621 static void sol_for_find_solutions(struct isl_sol_for
*sol_for
,
4622 struct isl_tab
*tab
)
4624 find_solutions_main(&sol_for
->sol
, tab
);
4627 int isl_basic_map_foreach_lexopt(__isl_keep isl_basic_map
*bmap
, int max
,
4628 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_mat
*map
,
4632 struct isl_sol_for
*sol_for
= NULL
;
4634 bmap
= isl_basic_map_copy(bmap
);
4638 bmap
= isl_basic_map_detect_equalities(bmap
);
4639 sol_for
= sol_for_init(bmap
, max
, fn
, user
);
4641 if (isl_basic_map_plain_is_empty(bmap
))
4644 struct isl_tab
*tab
;
4645 struct isl_context
*context
= sol_for
->sol
.context
;
4646 tab
= tab_for_lexmin(bmap
,
4647 context
->op
->peek_basic_set(context
), 1, max
);
4648 tab
= context
->op
->detect_nonnegative_parameters(context
, tab
);
4649 sol_for_find_solutions(sol_for
, tab
);
4650 if (sol_for
->sol
.error
)
4654 sol_free(&sol_for
->sol
);
4655 isl_basic_map_free(bmap
);
4658 sol_free(&sol_for
->sol
);
4659 isl_basic_map_free(bmap
);
4663 int isl_basic_map_foreach_lexmin(__isl_keep isl_basic_map
*bmap
,
4664 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_mat
*map
,
4668 return isl_basic_map_foreach_lexopt(bmap
, 0, fn
, user
);
4671 int isl_basic_map_foreach_lexmax(__isl_keep isl_basic_map
*bmap
,
4672 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_mat
*map
,
4676 return isl_basic_map_foreach_lexopt(bmap
, 1, fn
, user
);
4679 /* Check if the given sequence of len variables starting at pos
4680 * represents a trivial (i.e., zero) solution.
4681 * The variables are assumed to be non-negative and to come in pairs,
4682 * with each pair representing a variable of unrestricted sign.
4683 * The solution is trivial if each such pair in the sequence consists
4684 * of two identical values, meaning that the variable being represented
4687 static int region_is_trivial(struct isl_tab
*tab
, int pos
, int len
)
4694 for (i
= 0; i
< len
; i
+= 2) {
4698 neg_row
= tab
->var
[pos
+ i
].is_row
?
4699 tab
->var
[pos
+ i
].index
: -1;
4700 pos_row
= tab
->var
[pos
+ i
+ 1].is_row
?
4701 tab
->var
[pos
+ i
+ 1].index
: -1;
4704 isl_int_is_zero(tab
->mat
->row
[neg_row
][1])) &&
4706 isl_int_is_zero(tab
->mat
->row
[pos_row
][1])))
4709 if (neg_row
< 0 || pos_row
< 0)
4711 if (isl_int_ne(tab
->mat
->row
[neg_row
][1],
4712 tab
->mat
->row
[pos_row
][1]))
4719 /* Return the index of the first trivial region or -1 if all regions
4722 static int first_trivial_region(struct isl_tab
*tab
,
4723 int n_region
, struct isl_region
*region
)
4727 for (i
= 0; i
< n_region
; ++i
) {
4728 if (region_is_trivial(tab
, region
[i
].pos
, region
[i
].len
))
4735 /* Check if the solution is optimal, i.e., whether the first
4736 * n_op entries are zero.
4738 static int is_optimal(__isl_keep isl_vec
*sol
, int n_op
)
4742 for (i
= 0; i
< n_op
; ++i
)
4743 if (!isl_int_is_zero(sol
->el
[1 + i
]))
4748 /* Add constraints to "tab" that ensure that any solution is significantly
4749 * better that that represented by "sol". That is, find the first
4750 * relevant (within first n_op) non-zero coefficient and force it (along
4751 * with all previous coefficients) to be zero.
4752 * If the solution is already optimal (all relevant coefficients are zero),
4753 * then just mark the table as empty.
4755 static int force_better_solution(struct isl_tab
*tab
,
4756 __isl_keep isl_vec
*sol
, int n_op
)
4765 for (i
= 0; i
< n_op
; ++i
)
4766 if (!isl_int_is_zero(sol
->el
[1 + i
]))
4770 if (isl_tab_mark_empty(tab
) < 0)
4775 ctx
= isl_vec_get_ctx(sol
);
4776 v
= isl_vec_alloc(ctx
, 1 + tab
->n_var
);
4780 for (; i
>= 0; --i
) {
4782 isl_int_set_si(v
->el
[1 + i
], -1);
4783 if (add_lexmin_eq(tab
, v
->el
) < 0)
4794 struct isl_trivial
{
4798 struct isl_tab_undo
*snap
;
4801 /* Return the lexicographically smallest non-trivial solution of the
4802 * given ILP problem.
4804 * All variables are assumed to be non-negative.
4806 * n_op is the number of initial coordinates to optimize.
4807 * That is, once a solution has been found, we will only continue looking
4808 * for solution that result in significantly better values for those
4809 * initial coordinates. That is, we only continue looking for solutions
4810 * that increase the number of initial zeros in this sequence.
4812 * A solution is non-trivial, if it is non-trivial on each of the
4813 * specified regions. Each region represents a sequence of pairs
4814 * of variables. A solution is non-trivial on such a region if
4815 * at least one of these pairs consists of different values, i.e.,
4816 * such that the non-negative variable represented by the pair is non-zero.
4818 * Whenever a conflict is encountered, all constraints involved are
4819 * reported to the caller through a call to "conflict".
4821 * We perform a simple branch-and-bound backtracking search.
4822 * Each level in the search represents initially trivial region that is forced
4823 * to be non-trivial.
4824 * At each level we consider n cases, where n is the length of the region.
4825 * In terms of the n/2 variables of unrestricted signs being encoded by
4826 * the region, we consider the cases
4829 * x_0 = 0 and x_1 >= 1
4830 * x_0 = 0 and x_1 <= -1
4831 * x_0 = 0 and x_1 = 0 and x_2 >= 1
4832 * x_0 = 0 and x_1 = 0 and x_2 <= -1
4834 * The cases are considered in this order, assuming that each pair
4835 * x_i_a x_i_b represents the value x_i_b - x_i_a.
4836 * That is, x_0 >= 1 is enforced by adding the constraint
4837 * x_0_b - x_0_a >= 1
4839 __isl_give isl_vec
*isl_tab_basic_set_non_trivial_lexmin(
4840 __isl_take isl_basic_set
*bset
, int n_op
, int n_region
,
4841 struct isl_region
*region
,
4842 int (*conflict
)(int con
, void *user
), void *user
)
4845 int need_update
= 0;
4847 isl_ctx
*ctx
= isl_basic_set_get_ctx(bset
);
4849 isl_vec
*sol
= isl_vec_alloc(ctx
, 0);
4850 struct isl_tab
*tab
;
4851 struct isl_trivial
*triv
= NULL
;
4854 tab
= tab_for_lexmin(isl_basic_map_from_range(bset
), NULL
, 0, 0);
4857 tab
->conflict
= conflict
;
4858 tab
->conflict_user
= user
;
4860 v
= isl_vec_alloc(ctx
, 1 + tab
->n_var
);
4861 triv
= isl_calloc_array(ctx
, struct isl_trivial
, n_region
);
4868 while (level
>= 0) {
4872 tab
= cut_to_integer_lexmin(tab
);
4877 r
= first_trivial_region(tab
, n_region
, region
);
4879 for (i
= 0; i
< level
; ++i
)
4882 sol
= isl_tab_get_sample_value(tab
);
4885 if (is_optimal(sol
, n_op
))
4889 if (level
>= n_region
)
4890 isl_die(ctx
, isl_error_internal
,
4891 "nesting level too deep", goto error
);
4892 if (isl_tab_extend_cons(tab
,
4893 2 * region
[r
].len
+ 2 * n_op
) < 0)
4895 triv
[level
].region
= r
;
4896 triv
[level
].side
= 0;
4899 r
= triv
[level
].region
;
4900 side
= triv
[level
].side
;
4901 base
= 2 * (side
/2);
4903 if (side
>= region
[r
].len
) {
4908 if (isl_tab_rollback(tab
, triv
[level
].snap
) < 0)
4913 if (triv
[level
].update
) {
4914 if (force_better_solution(tab
, sol
, n_op
) < 0)
4916 triv
[level
].update
= 0;
4919 if (side
== base
&& base
>= 2) {
4920 for (j
= base
- 2; j
< base
; ++j
) {
4922 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ j
], 1);
4923 if (add_lexmin_eq(tab
, v
->el
) < 0)
4928 triv
[level
].snap
= isl_tab_snap(tab
);
4929 if (isl_tab_push_basis(tab
) < 0)
4933 isl_int_set_si(v
->el
[0], -1);
4934 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ side
], -1);
4935 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ (side
^ 1)], 1);
4936 tab
= add_lexmin_ineq(tab
, v
->el
);
4946 isl_basic_set_free(bset
);
4953 isl_basic_set_free(bset
);
4958 /* Return the lexicographically smallest rational point in "bset",
4959 * assuming that all variables are non-negative.
4960 * If "bset" is empty, then return a zero-length vector.
4962 __isl_give isl_vec
*isl_tab_basic_set_non_neg_lexmin(
4963 __isl_take isl_basic_set
*bset
)
4965 struct isl_tab
*tab
;
4966 isl_ctx
*ctx
= isl_basic_set_get_ctx(bset
);
4969 tab
= tab_for_lexmin(isl_basic_map_from_range(bset
), NULL
, 0, 0);
4973 sol
= isl_vec_alloc(ctx
, 0);
4975 sol
= isl_tab_get_sample_value(tab
);
4977 isl_basic_set_free(bset
);
4981 isl_basic_set_free(bset
);