2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 * Copyright 2010 INRIA Saclay
5 * Use of this software is governed by the MIT license
7 * Written by Sven Verdoolaege, K.U.Leuven, Departement
8 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
9 * and INRIA Saclay - Ile-de-France, Parc Club Orsay Universite,
10 * ZAC des vignes, 4 rue Jacques Monod, 91893 Orsay, France
13 #include <isl_ctx_private.h>
14 #include "isl_map_private.h"
17 #include "isl_sample.h"
18 #include <isl_mat_private.h>
19 #include <isl_vec_private.h>
20 #include <isl_aff_private.h>
21 #include <isl_options_private.h>
22 #include <isl_config.h>
25 * The implementation of parametric integer linear programming in this file
26 * was inspired by the paper "Parametric Integer Programming" and the
27 * report "Solving systems of affine (in)equalities" by Paul Feautrier
30 * The strategy used for obtaining a feasible solution is different
31 * from the one used in isl_tab.c. In particular, in isl_tab.c,
32 * upon finding a constraint that is not yet satisfied, we pivot
33 * in a row that increases the constant term of the row holding the
34 * constraint, making sure the sample solution remains feasible
35 * for all the constraints it already satisfied.
36 * Here, we always pivot in the row holding the constraint,
37 * choosing a column that induces the lexicographically smallest
38 * increment to the sample solution.
40 * By starting out from a sample value that is lexicographically
41 * smaller than any integer point in the problem space, the first
42 * feasible integer sample point we find will also be the lexicographically
43 * smallest. If all variables can be assumed to be non-negative,
44 * then the initial sample value may be chosen equal to zero.
45 * However, we will not make this assumption. Instead, we apply
46 * the "big parameter" trick. Any variable x is then not directly
47 * used in the tableau, but instead it is represented by another
48 * variable x' = M + x, where M is an arbitrarily large (positive)
49 * value. x' is therefore always non-negative, whatever the value of x.
50 * Taking as initial sample value x' = 0 corresponds to x = -M,
51 * which is always smaller than any possible value of x.
53 * The big parameter trick is used in the main tableau and
54 * also in the context tableau if isl_context_lex is used.
55 * In this case, each tableaus has its own big parameter.
56 * Before doing any real work, we check if all the parameters
57 * happen to be non-negative. If so, we drop the column corresponding
58 * to M from the initial context tableau.
59 * If isl_context_gbr is used, then the big parameter trick is only
60 * used in the main tableau.
64 struct isl_context_op
{
65 /* detect nonnegative parameters in context and mark them in tab */
66 struct isl_tab
*(*detect_nonnegative_parameters
)(
67 struct isl_context
*context
, struct isl_tab
*tab
);
68 /* return temporary reference to basic set representation of context */
69 struct isl_basic_set
*(*peek_basic_set
)(struct isl_context
*context
);
70 /* return temporary reference to tableau representation of context */
71 struct isl_tab
*(*peek_tab
)(struct isl_context
*context
);
72 /* add equality; check is 1 if eq may not be valid;
73 * update is 1 if we may want to call ineq_sign on context later.
75 void (*add_eq
)(struct isl_context
*context
, isl_int
*eq
,
76 int check
, int update
);
77 /* add inequality; check is 1 if ineq may not be valid;
78 * update is 1 if we may want to call ineq_sign on context later.
80 void (*add_ineq
)(struct isl_context
*context
, isl_int
*ineq
,
81 int check
, int update
);
82 /* check sign of ineq based on previous information.
83 * strict is 1 if saturation should be treated as a positive sign.
85 enum isl_tab_row_sign (*ineq_sign
)(struct isl_context
*context
,
86 isl_int
*ineq
, int strict
);
87 /* check if inequality maintains feasibility */
88 int (*test_ineq
)(struct isl_context
*context
, isl_int
*ineq
);
89 /* return index of a div that corresponds to "div" */
90 int (*get_div
)(struct isl_context
*context
, struct isl_tab
*tab
,
92 /* add div "div" to context and return non-negativity */
93 int (*add_div
)(struct isl_context
*context
, struct isl_vec
*div
);
94 int (*detect_equalities
)(struct isl_context
*context
,
96 /* return row index of "best" split */
97 int (*best_split
)(struct isl_context
*context
, struct isl_tab
*tab
);
98 /* check if context has already been determined to be empty */
99 int (*is_empty
)(struct isl_context
*context
);
100 /* check if context is still usable */
101 int (*is_ok
)(struct isl_context
*context
);
102 /* save a copy/snapshot of context */
103 void *(*save
)(struct isl_context
*context
);
104 /* restore saved context */
105 void (*restore
)(struct isl_context
*context
, void *);
106 /* discard saved context */
107 void (*discard
)(void *);
108 /* invalidate context */
109 void (*invalidate
)(struct isl_context
*context
);
111 void (*free
)(struct isl_context
*context
);
115 struct isl_context_op
*op
;
118 struct isl_context_lex
{
119 struct isl_context context
;
123 /* A stack (linked list) of solutions of subtrees of the search space.
125 * "M" describes the solution in terms of the dimensions of "dom".
126 * The number of columns of "M" is one more than the total number
127 * of dimensions of "dom".
129 * If "M" is NULL, then there is no solution on "dom".
131 struct isl_partial_sol
{
133 struct isl_basic_set
*dom
;
136 struct isl_partial_sol
*next
;
140 struct isl_sol_callback
{
141 struct isl_tab_callback callback
;
145 /* isl_sol is an interface for constructing a solution to
146 * a parametric integer linear programming problem.
147 * Every time the algorithm reaches a state where a solution
148 * can be read off from the tableau (including cases where the tableau
149 * is empty), the function "add" is called on the isl_sol passed
150 * to find_solutions_main.
152 * The context tableau is owned by isl_sol and is updated incrementally.
154 * There are currently two implementations of this interface,
155 * isl_sol_map, which simply collects the solutions in an isl_map
156 * and (optionally) the parts of the context where there is no solution
158 * isl_sol_for, which calls a user-defined function for each part of
167 struct isl_context
*context
;
168 struct isl_partial_sol
*partial
;
169 void (*add
)(struct isl_sol
*sol
,
170 struct isl_basic_set
*dom
, struct isl_mat
*M
);
171 void (*add_empty
)(struct isl_sol
*sol
, struct isl_basic_set
*bset
);
172 void (*free
)(struct isl_sol
*sol
);
173 struct isl_sol_callback dec_level
;
176 static void sol_free(struct isl_sol
*sol
)
178 struct isl_partial_sol
*partial
, *next
;
181 for (partial
= sol
->partial
; partial
; partial
= next
) {
182 next
= partial
->next
;
183 isl_basic_set_free(partial
->dom
);
184 isl_mat_free(partial
->M
);
190 /* Push a partial solution represented by a domain and mapping M
191 * onto the stack of partial solutions.
193 static void sol_push_sol(struct isl_sol
*sol
,
194 struct isl_basic_set
*dom
, struct isl_mat
*M
)
196 struct isl_partial_sol
*partial
;
198 if (sol
->error
|| !dom
)
201 partial
= isl_alloc_type(dom
->ctx
, struct isl_partial_sol
);
205 partial
->level
= sol
->level
;
208 partial
->next
= sol
->partial
;
210 sol
->partial
= partial
;
214 isl_basic_set_free(dom
);
219 /* Pop one partial solution from the partial solution stack and
220 * pass it on to sol->add or sol->add_empty.
222 static void sol_pop_one(struct isl_sol
*sol
)
224 struct isl_partial_sol
*partial
;
226 partial
= sol
->partial
;
227 sol
->partial
= partial
->next
;
230 sol
->add(sol
, partial
->dom
, partial
->M
);
232 sol
->add_empty(sol
, partial
->dom
);
236 /* Return a fresh copy of the domain represented by the context tableau.
238 static struct isl_basic_set
*sol_domain(struct isl_sol
*sol
)
240 struct isl_basic_set
*bset
;
245 bset
= isl_basic_set_dup(sol
->context
->op
->peek_basic_set(sol
->context
));
246 bset
= isl_basic_set_update_from_tab(bset
,
247 sol
->context
->op
->peek_tab(sol
->context
));
252 /* Check whether two partial solutions have the same mapping, where n_div
253 * is the number of divs that the two partial solutions have in common.
255 static int same_solution(struct isl_partial_sol
*s1
, struct isl_partial_sol
*s2
,
261 if (!s1
->M
!= !s2
->M
)
266 dim
= isl_basic_set_total_dim(s1
->dom
) - s1
->dom
->n_div
;
268 for (i
= 0; i
< s1
->M
->n_row
; ++i
) {
269 if (isl_seq_first_non_zero(s1
->M
->row
[i
]+1+dim
+n_div
,
270 s1
->M
->n_col
-1-dim
-n_div
) != -1)
272 if (isl_seq_first_non_zero(s2
->M
->row
[i
]+1+dim
+n_div
,
273 s2
->M
->n_col
-1-dim
-n_div
) != -1)
275 if (!isl_seq_eq(s1
->M
->row
[i
], s2
->M
->row
[i
], 1+dim
+n_div
))
281 /* Pop all solutions from the partial solution stack that were pushed onto
282 * the stack at levels that are deeper than the current level.
283 * If the two topmost elements on the stack have the same level
284 * and represent the same solution, then their domains are combined.
285 * This combined domain is the same as the current context domain
286 * as sol_pop is called each time we move back to a higher level.
288 static void sol_pop(struct isl_sol
*sol
)
290 struct isl_partial_sol
*partial
;
296 if (sol
->level
== 0) {
297 for (partial
= sol
->partial
; partial
; partial
= sol
->partial
)
302 partial
= sol
->partial
;
306 if (partial
->level
<= sol
->level
)
309 if (partial
->next
&& partial
->next
->level
== partial
->level
) {
310 n_div
= isl_basic_set_dim(
311 sol
->context
->op
->peek_basic_set(sol
->context
),
314 if (!same_solution(partial
, partial
->next
, n_div
)) {
318 struct isl_basic_set
*bset
;
322 n
= isl_basic_set_dim(partial
->next
->dom
, isl_dim_div
);
324 bset
= sol_domain(sol
);
325 isl_basic_set_free(partial
->next
->dom
);
326 partial
->next
->dom
= bset
;
327 M
= partial
->next
->M
;
329 M
= isl_mat_drop_cols(M
, M
->n_col
- n
, n
);
330 partial
->next
->M
= M
;
334 partial
->next
->level
= sol
->level
;
339 sol
->partial
= partial
->next
;
340 isl_basic_set_free(partial
->dom
);
341 isl_mat_free(partial
->M
);
348 error
: sol
->error
= 1;
351 static void sol_dec_level(struct isl_sol
*sol
)
361 static int sol_dec_level_wrap(struct isl_tab_callback
*cb
)
363 struct isl_sol_callback
*callback
= (struct isl_sol_callback
*)cb
;
365 sol_dec_level(callback
->sol
);
367 return callback
->sol
->error
? -1 : 0;
370 /* Move down to next level and push callback onto context tableau
371 * to decrease the level again when it gets rolled back across
372 * the current state. That is, dec_level will be called with
373 * the context tableau in the same state as it is when inc_level
376 static void sol_inc_level(struct isl_sol
*sol
)
384 tab
= sol
->context
->op
->peek_tab(sol
->context
);
385 if (isl_tab_push_callback(tab
, &sol
->dec_level
.callback
) < 0)
389 static void scale_rows(struct isl_mat
*mat
, isl_int m
, int n_row
)
393 if (isl_int_is_one(m
))
396 for (i
= 0; i
< n_row
; ++i
)
397 isl_seq_scale(mat
->row
[i
], mat
->row
[i
], m
, mat
->n_col
);
400 /* Add the solution identified by the tableau and the context tableau.
402 * The layout of the variables is as follows.
403 * tab->n_var is equal to the total number of variables in the input
404 * map (including divs that were copied from the context)
405 * + the number of extra divs constructed
406 * Of these, the first tab->n_param and the last tab->n_div variables
407 * correspond to the variables in the context, i.e.,
408 * tab->n_param + tab->n_div = context_tab->n_var
409 * tab->n_param is equal to the number of parameters and input
410 * dimensions in the input map
411 * tab->n_div is equal to the number of divs in the context
413 * If there is no solution, then call add_empty with a basic set
414 * that corresponds to the context tableau. (If add_empty is NULL,
417 * If there is a solution, then first construct a matrix that maps
418 * all dimensions of the context to the output variables, i.e.,
419 * the output dimensions in the input map.
420 * The divs in the input map (if any) that do not correspond to any
421 * div in the context do not appear in the solution.
422 * The algorithm will make sure that they have an integer value,
423 * but these values themselves are of no interest.
424 * We have to be careful not to drop or rearrange any divs in the
425 * context because that would change the meaning of the matrix.
427 * To extract the value of the output variables, it should be noted
428 * that we always use a big parameter M in the main tableau and so
429 * the variable stored in this tableau is not an output variable x itself, but
430 * x' = M + x (in case of minimization)
432 * x' = M - x (in case of maximization)
433 * If x' appears in a column, then its optimal value is zero,
434 * which means that the optimal value of x is an unbounded number
435 * (-M for minimization and M for maximization).
436 * We currently assume that the output dimensions in the original map
437 * are bounded, so this cannot occur.
438 * Similarly, when x' appears in a row, then the coefficient of M in that
439 * row is necessarily 1.
440 * If the row in the tableau represents
441 * d x' = c + d M + e(y)
442 * then, in case of minimization, the corresponding row in the matrix
445 * with a d = m, the (updated) common denominator of the matrix.
446 * In case of maximization, the row will be
449 static void sol_add(struct isl_sol
*sol
, struct isl_tab
*tab
)
451 struct isl_basic_set
*bset
= NULL
;
452 struct isl_mat
*mat
= NULL
;
457 if (sol
->error
|| !tab
)
460 if (tab
->empty
&& !sol
->add_empty
)
462 if (sol
->context
->op
->is_empty(sol
->context
))
465 bset
= sol_domain(sol
);
468 sol_push_sol(sol
, bset
, NULL
);
474 mat
= isl_mat_alloc(tab
->mat
->ctx
, 1 + sol
->n_out
,
475 1 + tab
->n_param
+ tab
->n_div
);
481 isl_seq_clr(mat
->row
[0] + 1, mat
->n_col
- 1);
482 isl_int_set_si(mat
->row
[0][0], 1);
483 for (row
= 0; row
< sol
->n_out
; ++row
) {
484 int i
= tab
->n_param
+ row
;
487 isl_seq_clr(mat
->row
[1 + row
], mat
->n_col
);
488 if (!tab
->var
[i
].is_row
) {
490 isl_die(mat
->ctx
, isl_error_invalid
,
491 "unbounded optimum", goto error2
);
495 r
= tab
->var
[i
].index
;
497 isl_int_ne(tab
->mat
->row
[r
][2], tab
->mat
->row
[r
][0]))
498 isl_die(mat
->ctx
, isl_error_invalid
,
499 "unbounded optimum", goto error2
);
500 isl_int_gcd(m
, mat
->row
[0][0], tab
->mat
->row
[r
][0]);
501 isl_int_divexact(m
, tab
->mat
->row
[r
][0], m
);
502 scale_rows(mat
, m
, 1 + row
);
503 isl_int_divexact(m
, mat
->row
[0][0], tab
->mat
->row
[r
][0]);
504 isl_int_mul(mat
->row
[1 + row
][0], m
, tab
->mat
->row
[r
][1]);
505 for (j
= 0; j
< tab
->n_param
; ++j
) {
507 if (tab
->var
[j
].is_row
)
509 col
= tab
->var
[j
].index
;
510 isl_int_mul(mat
->row
[1 + row
][1 + j
], m
,
511 tab
->mat
->row
[r
][off
+ col
]);
513 for (j
= 0; j
< tab
->n_div
; ++j
) {
515 if (tab
->var
[tab
->n_var
- tab
->n_div
+j
].is_row
)
517 col
= tab
->var
[tab
->n_var
- tab
->n_div
+j
].index
;
518 isl_int_mul(mat
->row
[1 + row
][1 + tab
->n_param
+ j
], m
,
519 tab
->mat
->row
[r
][off
+ col
]);
522 isl_seq_neg(mat
->row
[1 + row
], mat
->row
[1 + row
],
528 sol_push_sol(sol
, bset
, mat
);
533 isl_basic_set_free(bset
);
541 struct isl_set
*empty
;
544 static void sol_map_free(struct isl_sol_map
*sol_map
)
548 if (sol_map
->sol
.context
)
549 sol_map
->sol
.context
->op
->free(sol_map
->sol
.context
);
550 isl_map_free(sol_map
->map
);
551 isl_set_free(sol_map
->empty
);
555 static void sol_map_free_wrap(struct isl_sol
*sol
)
557 sol_map_free((struct isl_sol_map
*)sol
);
560 /* This function is called for parts of the context where there is
561 * no solution, with "bset" corresponding to the context tableau.
562 * Simply add the basic set to the set "empty".
564 static void sol_map_add_empty(struct isl_sol_map
*sol
,
565 struct isl_basic_set
*bset
)
569 isl_assert(bset
->ctx
, sol
->empty
, goto error
);
571 sol
->empty
= isl_set_grow(sol
->empty
, 1);
572 bset
= isl_basic_set_simplify(bset
);
573 bset
= isl_basic_set_finalize(bset
);
574 sol
->empty
= isl_set_add_basic_set(sol
->empty
, isl_basic_set_copy(bset
));
577 isl_basic_set_free(bset
);
580 isl_basic_set_free(bset
);
584 static void sol_map_add_empty_wrap(struct isl_sol
*sol
,
585 struct isl_basic_set
*bset
)
587 sol_map_add_empty((struct isl_sol_map
*)sol
, bset
);
590 /* Given a basic map "dom" that represents the context and an affine
591 * matrix "M" that maps the dimensions of the context to the
592 * output variables, construct a basic map with the same parameters
593 * and divs as the context, the dimensions of the context as input
594 * dimensions and a number of output dimensions that is equal to
595 * the number of output dimensions in the input map.
597 * The constraints and divs of the context are simply copied
598 * from "dom". For each row
602 * is added, with d the common denominator of M.
604 static void sol_map_add(struct isl_sol_map
*sol
,
605 struct isl_basic_set
*dom
, struct isl_mat
*M
)
608 struct isl_basic_map
*bmap
= NULL
;
616 if (sol
->sol
.error
|| !dom
|| !M
)
619 n_out
= sol
->sol
.n_out
;
620 n_eq
= dom
->n_eq
+ n_out
;
621 n_ineq
= dom
->n_ineq
;
623 nparam
= isl_basic_set_total_dim(dom
) - n_div
;
624 total
= isl_map_dim(sol
->map
, isl_dim_all
);
625 bmap
= isl_basic_map_alloc_space(isl_map_get_space(sol
->map
),
626 n_div
, n_eq
, 2 * n_div
+ n_ineq
);
629 if (sol
->sol
.rational
)
630 ISL_F_SET(bmap
, ISL_BASIC_MAP_RATIONAL
);
631 for (i
= 0; i
< dom
->n_div
; ++i
) {
632 int k
= isl_basic_map_alloc_div(bmap
);
635 isl_seq_cpy(bmap
->div
[k
], dom
->div
[i
], 1 + 1 + nparam
);
636 isl_seq_clr(bmap
->div
[k
] + 1 + 1 + nparam
, total
- nparam
);
637 isl_seq_cpy(bmap
->div
[k
] + 1 + 1 + total
,
638 dom
->div
[i
] + 1 + 1 + nparam
, i
);
640 for (i
= 0; i
< dom
->n_eq
; ++i
) {
641 int k
= isl_basic_map_alloc_equality(bmap
);
644 isl_seq_cpy(bmap
->eq
[k
], dom
->eq
[i
], 1 + nparam
);
645 isl_seq_clr(bmap
->eq
[k
] + 1 + nparam
, total
- nparam
);
646 isl_seq_cpy(bmap
->eq
[k
] + 1 + total
,
647 dom
->eq
[i
] + 1 + nparam
, n_div
);
649 for (i
= 0; i
< dom
->n_ineq
; ++i
) {
650 int k
= isl_basic_map_alloc_inequality(bmap
);
653 isl_seq_cpy(bmap
->ineq
[k
], dom
->ineq
[i
], 1 + nparam
);
654 isl_seq_clr(bmap
->ineq
[k
] + 1 + nparam
, total
- nparam
);
655 isl_seq_cpy(bmap
->ineq
[k
] + 1 + total
,
656 dom
->ineq
[i
] + 1 + nparam
, n_div
);
658 for (i
= 0; i
< M
->n_row
- 1; ++i
) {
659 int k
= isl_basic_map_alloc_equality(bmap
);
662 isl_seq_cpy(bmap
->eq
[k
], M
->row
[1 + i
], 1 + nparam
);
663 isl_seq_clr(bmap
->eq
[k
] + 1 + nparam
, n_out
);
664 isl_int_neg(bmap
->eq
[k
][1 + nparam
+ i
], M
->row
[0][0]);
665 isl_seq_cpy(bmap
->eq
[k
] + 1 + nparam
+ n_out
,
666 M
->row
[1 + i
] + 1 + nparam
, n_div
);
668 bmap
= isl_basic_map_simplify(bmap
);
669 bmap
= isl_basic_map_finalize(bmap
);
670 sol
->map
= isl_map_grow(sol
->map
, 1);
671 sol
->map
= isl_map_add_basic_map(sol
->map
, bmap
);
672 isl_basic_set_free(dom
);
678 isl_basic_set_free(dom
);
680 isl_basic_map_free(bmap
);
684 static void sol_map_add_wrap(struct isl_sol
*sol
,
685 struct isl_basic_set
*dom
, struct isl_mat
*M
)
687 sol_map_add((struct isl_sol_map
*)sol
, dom
, M
);
691 /* Store the "parametric constant" of row "row" of tableau "tab" in "line",
692 * i.e., the constant term and the coefficients of all variables that
693 * appear in the context tableau.
694 * Note that the coefficient of the big parameter M is NOT copied.
695 * The context tableau may not have a big parameter and even when it
696 * does, it is a different big parameter.
698 static void get_row_parameter_line(struct isl_tab
*tab
, int row
, isl_int
*line
)
701 unsigned off
= 2 + tab
->M
;
703 isl_int_set(line
[0], tab
->mat
->row
[row
][1]);
704 for (i
= 0; i
< tab
->n_param
; ++i
) {
705 if (tab
->var
[i
].is_row
)
706 isl_int_set_si(line
[1 + i
], 0);
708 int col
= tab
->var
[i
].index
;
709 isl_int_set(line
[1 + i
], tab
->mat
->row
[row
][off
+ col
]);
712 for (i
= 0; i
< tab
->n_div
; ++i
) {
713 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
714 isl_int_set_si(line
[1 + tab
->n_param
+ i
], 0);
716 int col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
717 isl_int_set(line
[1 + tab
->n_param
+ i
],
718 tab
->mat
->row
[row
][off
+ col
]);
723 /* Check if rows "row1" and "row2" have identical "parametric constants",
724 * as explained above.
725 * In this case, we also insist that the coefficients of the big parameter
726 * be the same as the values of the constants will only be the same
727 * if these coefficients are also the same.
729 static int identical_parameter_line(struct isl_tab
*tab
, int row1
, int row2
)
732 unsigned off
= 2 + tab
->M
;
734 if (isl_int_ne(tab
->mat
->row
[row1
][1], tab
->mat
->row
[row2
][1]))
737 if (tab
->M
&& isl_int_ne(tab
->mat
->row
[row1
][2],
738 tab
->mat
->row
[row2
][2]))
741 for (i
= 0; i
< tab
->n_param
+ tab
->n_div
; ++i
) {
742 int pos
= i
< tab
->n_param
? i
:
743 tab
->n_var
- tab
->n_div
+ i
- tab
->n_param
;
746 if (tab
->var
[pos
].is_row
)
748 col
= tab
->var
[pos
].index
;
749 if (isl_int_ne(tab
->mat
->row
[row1
][off
+ col
],
750 tab
->mat
->row
[row2
][off
+ col
]))
756 /* Return an inequality that expresses that the "parametric constant"
757 * should be non-negative.
758 * This function is only called when the coefficient of the big parameter
761 static struct isl_vec
*get_row_parameter_ineq(struct isl_tab
*tab
, int row
)
763 struct isl_vec
*ineq
;
765 ineq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + tab
->n_param
+ tab
->n_div
);
769 get_row_parameter_line(tab
, row
, ineq
->el
);
771 ineq
= isl_vec_normalize(ineq
);
776 /* Normalize a div expression of the form
778 * [(g*f(x) + c)/(g * m)]
780 * with c the constant term and f(x) the remaining coefficients, to
784 static void normalize_div(__isl_keep isl_vec
*div
)
786 isl_ctx
*ctx
= isl_vec_get_ctx(div
);
787 int len
= div
->size
- 2;
789 isl_seq_gcd(div
->el
+ 2, len
, &ctx
->normalize_gcd
);
790 isl_int_gcd(ctx
->normalize_gcd
, ctx
->normalize_gcd
, div
->el
[0]);
792 if (isl_int_is_one(ctx
->normalize_gcd
))
795 isl_int_divexact(div
->el
[0], div
->el
[0], ctx
->normalize_gcd
);
796 isl_int_fdiv_q(div
->el
[1], div
->el
[1], ctx
->normalize_gcd
);
797 isl_seq_scale_down(div
->el
+ 2, div
->el
+ 2, ctx
->normalize_gcd
, len
);
800 /* Return a integer division for use in a parametric cut based on the given row.
801 * In particular, let the parametric constant of the row be
805 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
806 * The div returned is equal to
808 * floor(\sum_i {-a_i} y_i) = floor((\sum_i (-a_i mod d) y_i)/d)
810 static struct isl_vec
*get_row_parameter_div(struct isl_tab
*tab
, int row
)
814 div
= isl_vec_alloc(tab
->mat
->ctx
, 1 + 1 + tab
->n_param
+ tab
->n_div
);
818 isl_int_set(div
->el
[0], tab
->mat
->row
[row
][0]);
819 get_row_parameter_line(tab
, row
, div
->el
+ 1);
820 isl_seq_neg(div
->el
+ 1, div
->el
+ 1, div
->size
- 1);
822 isl_seq_fdiv_r(div
->el
+ 1, div
->el
+ 1, div
->el
[0], div
->size
- 1);
827 /* Return a integer division for use in transferring an integrality constraint
829 * In particular, let the parametric constant of the row be
833 * where y_0 = 1, but none of the y_i corresponds to the big parameter M.
834 * The the returned div is equal to
836 * floor(\sum_i {a_i} y_i) = floor((\sum_i (a_i mod d) y_i)/d)
838 static struct isl_vec
*get_row_split_div(struct isl_tab
*tab
, int row
)
842 div
= isl_vec_alloc(tab
->mat
->ctx
, 1 + 1 + tab
->n_param
+ tab
->n_div
);
846 isl_int_set(div
->el
[0], tab
->mat
->row
[row
][0]);
847 get_row_parameter_line(tab
, row
, div
->el
+ 1);
849 isl_seq_fdiv_r(div
->el
+ 1, div
->el
+ 1, div
->el
[0], div
->size
- 1);
854 /* Construct and return an inequality that expresses an upper bound
856 * In particular, if the div is given by
860 * then the inequality expresses
864 static struct isl_vec
*ineq_for_div(struct isl_basic_set
*bset
, unsigned div
)
868 struct isl_vec
*ineq
;
873 total
= isl_basic_set_total_dim(bset
);
874 div_pos
= 1 + total
- bset
->n_div
+ div
;
876 ineq
= isl_vec_alloc(bset
->ctx
, 1 + total
);
880 isl_seq_cpy(ineq
->el
, bset
->div
[div
] + 1, 1 + total
);
881 isl_int_neg(ineq
->el
[div_pos
], bset
->div
[div
][0]);
885 /* Given a row in the tableau and a div that was created
886 * using get_row_split_div and that has been constrained to equality, i.e.,
888 * d = floor(\sum_i {a_i} y_i) = \sum_i {a_i} y_i
890 * replace the expression "\sum_i {a_i} y_i" in the row by d,
891 * i.e., we subtract "\sum_i {a_i} y_i" and add 1 d.
892 * The coefficients of the non-parameters in the tableau have been
893 * verified to be integral. We can therefore simply replace coefficient b
894 * by floor(b). For the coefficients of the parameters we have
895 * floor(a_i) = a_i - {a_i}, while for the other coefficients, we have
898 static struct isl_tab
*set_row_cst_to_div(struct isl_tab
*tab
, int row
, int div
)
900 isl_seq_fdiv_q(tab
->mat
->row
[row
] + 1, tab
->mat
->row
[row
] + 1,
901 tab
->mat
->row
[row
][0], 1 + tab
->M
+ tab
->n_col
);
903 isl_int_set_si(tab
->mat
->row
[row
][0], 1);
905 if (tab
->var
[tab
->n_var
- tab
->n_div
+ div
].is_row
) {
906 int drow
= tab
->var
[tab
->n_var
- tab
->n_div
+ div
].index
;
908 isl_assert(tab
->mat
->ctx
,
909 isl_int_is_one(tab
->mat
->row
[drow
][0]), goto error
);
910 isl_seq_combine(tab
->mat
->row
[row
] + 1,
911 tab
->mat
->ctx
->one
, tab
->mat
->row
[row
] + 1,
912 tab
->mat
->ctx
->one
, tab
->mat
->row
[drow
] + 1,
913 1 + tab
->M
+ tab
->n_col
);
915 int dcol
= tab
->var
[tab
->n_var
- tab
->n_div
+ div
].index
;
917 isl_int_add_ui(tab
->mat
->row
[row
][2 + tab
->M
+ dcol
],
918 tab
->mat
->row
[row
][2 + tab
->M
+ dcol
], 1);
927 /* Check if the (parametric) constant of the given row is obviously
928 * negative, meaning that we don't need to consult the context tableau.
929 * If there is a big parameter and its coefficient is non-zero,
930 * then this coefficient determines the outcome.
931 * Otherwise, we check whether the constant is negative and
932 * all non-zero coefficients of parameters are negative and
933 * belong to non-negative parameters.
935 static int is_obviously_neg(struct isl_tab
*tab
, int row
)
939 unsigned off
= 2 + tab
->M
;
942 if (isl_int_is_pos(tab
->mat
->row
[row
][2]))
944 if (isl_int_is_neg(tab
->mat
->row
[row
][2]))
948 if (isl_int_is_nonneg(tab
->mat
->row
[row
][1]))
950 for (i
= 0; i
< tab
->n_param
; ++i
) {
951 /* Eliminated parameter */
952 if (tab
->var
[i
].is_row
)
954 col
= tab
->var
[i
].index
;
955 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
957 if (!tab
->var
[i
].is_nonneg
)
959 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
962 for (i
= 0; i
< tab
->n_div
; ++i
) {
963 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
965 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
966 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
968 if (!tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_nonneg
)
970 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
976 /* Check if the (parametric) constant of the given row is obviously
977 * non-negative, meaning that we don't need to consult the context tableau.
978 * If there is a big parameter and its coefficient is non-zero,
979 * then this coefficient determines the outcome.
980 * Otherwise, we check whether the constant is non-negative and
981 * all non-zero coefficients of parameters are positive and
982 * belong to non-negative parameters.
984 static int is_obviously_nonneg(struct isl_tab
*tab
, int row
)
988 unsigned off
= 2 + tab
->M
;
991 if (isl_int_is_pos(tab
->mat
->row
[row
][2]))
993 if (isl_int_is_neg(tab
->mat
->row
[row
][2]))
997 if (isl_int_is_neg(tab
->mat
->row
[row
][1]))
999 for (i
= 0; i
< tab
->n_param
; ++i
) {
1000 /* Eliminated parameter */
1001 if (tab
->var
[i
].is_row
)
1003 col
= tab
->var
[i
].index
;
1004 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1006 if (!tab
->var
[i
].is_nonneg
)
1008 if (isl_int_is_neg(tab
->mat
->row
[row
][off
+ col
]))
1011 for (i
= 0; i
< tab
->n_div
; ++i
) {
1012 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
1014 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
1015 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1017 if (!tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_nonneg
)
1019 if (isl_int_is_neg(tab
->mat
->row
[row
][off
+ col
]))
1025 /* Given a row r and two columns, return the column that would
1026 * lead to the lexicographically smallest increment in the sample
1027 * solution when leaving the basis in favor of the row.
1028 * Pivoting with column c will increment the sample value by a non-negative
1029 * constant times a_{V,c}/a_{r,c}, with a_{V,c} the elements of column c
1030 * corresponding to the non-parametric variables.
1031 * If variable v appears in a column c_v, the a_{v,c} = 1 iff c = c_v,
1032 * with all other entries in this virtual row equal to zero.
1033 * If variable v appears in a row, then a_{v,c} is the element in column c
1036 * Let v be the first variable with a_{v,c1}/a_{r,c1} != a_{v,c2}/a_{r,c2}.
1037 * Then if a_{v,c1}/a_{r,c1} < a_{v,c2}/a_{r,c2}, i.e.,
1038 * a_{v,c2} a_{r,c1} - a_{v,c1} a_{r,c2} > 0, c1 results in the minimal
1039 * increment. Otherwise, it's c2.
1041 static int lexmin_col_pair(struct isl_tab
*tab
,
1042 int row
, int col1
, int col2
, isl_int tmp
)
1047 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1049 for (i
= tab
->n_param
; i
< tab
->n_var
- tab
->n_div
; ++i
) {
1053 if (!tab
->var
[i
].is_row
) {
1054 if (tab
->var
[i
].index
== col1
)
1056 if (tab
->var
[i
].index
== col2
)
1061 if (tab
->var
[i
].index
== row
)
1064 r
= tab
->mat
->row
[tab
->var
[i
].index
] + 2 + tab
->M
;
1065 s1
= isl_int_sgn(r
[col1
]);
1066 s2
= isl_int_sgn(r
[col2
]);
1067 if (s1
== 0 && s2
== 0)
1074 isl_int_mul(tmp
, r
[col2
], tr
[col1
]);
1075 isl_int_submul(tmp
, r
[col1
], tr
[col2
]);
1076 if (isl_int_is_pos(tmp
))
1078 if (isl_int_is_neg(tmp
))
1084 /* Given a row in the tableau, find and return the column that would
1085 * result in the lexicographically smallest, but positive, increment
1086 * in the sample point.
1087 * If there is no such column, then return tab->n_col.
1088 * If anything goes wrong, return -1.
1090 static int lexmin_pivot_col(struct isl_tab
*tab
, int row
)
1093 int col
= tab
->n_col
;
1097 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1101 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
1102 if (tab
->col_var
[j
] >= 0 &&
1103 (tab
->col_var
[j
] < tab
->n_param
||
1104 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
1107 if (!isl_int_is_pos(tr
[j
]))
1110 if (col
== tab
->n_col
)
1113 col
= lexmin_col_pair(tab
, row
, col
, j
, tmp
);
1114 isl_assert(tab
->mat
->ctx
, col
>= 0, goto error
);
1124 /* Return the first known violated constraint, i.e., a non-negative
1125 * constraint that currently has an either obviously negative value
1126 * or a previously determined to be negative value.
1128 * If any constraint has a negative coefficient for the big parameter,
1129 * if any, then we return one of these first.
1131 static int first_neg(struct isl_tab
*tab
)
1136 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
1137 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
1139 if (!isl_int_is_neg(tab
->mat
->row
[row
][2]))
1142 tab
->row_sign
[row
] = isl_tab_row_neg
;
1145 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
1146 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
1148 if (tab
->row_sign
) {
1149 if (tab
->row_sign
[row
] == 0 &&
1150 is_obviously_neg(tab
, row
))
1151 tab
->row_sign
[row
] = isl_tab_row_neg
;
1152 if (tab
->row_sign
[row
] != isl_tab_row_neg
)
1154 } else if (!is_obviously_neg(tab
, row
))
1161 /* Check whether the invariant that all columns are lexico-positive
1162 * is satisfied. This function is not called from the current code
1163 * but is useful during debugging.
1165 static void check_lexpos(struct isl_tab
*tab
) __attribute__ ((unused
));
1166 static void check_lexpos(struct isl_tab
*tab
)
1168 unsigned off
= 2 + tab
->M
;
1173 for (col
= tab
->n_dead
; col
< tab
->n_col
; ++col
) {
1174 if (tab
->col_var
[col
] >= 0 &&
1175 (tab
->col_var
[col
] < tab
->n_param
||
1176 tab
->col_var
[col
] >= tab
->n_var
- tab
->n_div
))
1178 for (var
= tab
->n_param
; var
< tab
->n_var
- tab
->n_div
; ++var
) {
1179 if (!tab
->var
[var
].is_row
) {
1180 if (tab
->var
[var
].index
== col
)
1185 row
= tab
->var
[var
].index
;
1186 if (isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1188 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ col
]))
1190 fprintf(stderr
, "lexneg column %d (row %d)\n",
1193 if (var
>= tab
->n_var
- tab
->n_div
)
1194 fprintf(stderr
, "zero column %d\n", col
);
1198 /* Report to the caller that the given constraint is part of an encountered
1201 static int report_conflicting_constraint(struct isl_tab
*tab
, int con
)
1203 return tab
->conflict(con
, tab
->conflict_user
);
1206 /* Given a conflicting row in the tableau, report all constraints
1207 * involved in the row to the caller. That is, the row itself
1208 * (if it represents a constraint) and all constraint columns with
1209 * non-zero (and therefore negative) coefficients.
1211 static int report_conflict(struct isl_tab
*tab
, int row
)
1219 if (tab
->row_var
[row
] < 0 &&
1220 report_conflicting_constraint(tab
, ~tab
->row_var
[row
]) < 0)
1223 tr
= tab
->mat
->row
[row
] + 2 + tab
->M
;
1225 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
1226 if (tab
->col_var
[j
] >= 0 &&
1227 (tab
->col_var
[j
] < tab
->n_param
||
1228 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
1231 if (!isl_int_is_neg(tr
[j
]))
1234 if (tab
->col_var
[j
] < 0 &&
1235 report_conflicting_constraint(tab
, ~tab
->col_var
[j
]) < 0)
1242 /* Resolve all known or obviously violated constraints through pivoting.
1243 * In particular, as long as we can find any violated constraint, we
1244 * look for a pivoting column that would result in the lexicographically
1245 * smallest increment in the sample point. If there is no such column
1246 * then the tableau is infeasible.
1248 static int restore_lexmin(struct isl_tab
*tab
) WARN_UNUSED
;
1249 static int restore_lexmin(struct isl_tab
*tab
)
1257 while ((row
= first_neg(tab
)) != -1) {
1258 col
= lexmin_pivot_col(tab
, row
);
1259 if (col
>= tab
->n_col
) {
1260 if (report_conflict(tab
, row
) < 0)
1262 if (isl_tab_mark_empty(tab
) < 0)
1268 if (isl_tab_pivot(tab
, row
, col
) < 0)
1274 /* Given a row that represents an equality, look for an appropriate
1276 * In particular, if there are any non-zero coefficients among
1277 * the non-parameter variables, then we take the last of these
1278 * variables. Eliminating this variable in terms of the other
1279 * variables and/or parameters does not influence the property
1280 * that all column in the initial tableau are lexicographically
1281 * positive. The row corresponding to the eliminated variable
1282 * will only have non-zero entries below the diagonal of the
1283 * initial tableau. That is, we transform
1289 * If there is no such non-parameter variable, then we are dealing with
1290 * pure parameter equality and we pick any parameter with coefficient 1 or -1
1291 * for elimination. This will ensure that the eliminated parameter
1292 * always has an integer value whenever all the other parameters are integral.
1293 * If there is no such parameter then we return -1.
1295 static int last_var_col_or_int_par_col(struct isl_tab
*tab
, int row
)
1297 unsigned off
= 2 + tab
->M
;
1300 for (i
= tab
->n_var
- tab
->n_div
- 1; i
>= 0 && i
>= tab
->n_param
; --i
) {
1302 if (tab
->var
[i
].is_row
)
1304 col
= tab
->var
[i
].index
;
1305 if (col
<= tab
->n_dead
)
1307 if (!isl_int_is_zero(tab
->mat
->row
[row
][off
+ col
]))
1310 for (i
= tab
->n_dead
; i
< tab
->n_col
; ++i
) {
1311 if (isl_int_is_one(tab
->mat
->row
[row
][off
+ i
]))
1313 if (isl_int_is_negone(tab
->mat
->row
[row
][off
+ i
]))
1319 /* Add an equality that is known to be valid to the tableau.
1320 * We first check if we can eliminate a variable or a parameter.
1321 * If not, we add the equality as two inequalities.
1322 * In this case, the equality was a pure parameter equality and there
1323 * is no need to resolve any constraint violations.
1325 static struct isl_tab
*add_lexmin_valid_eq(struct isl_tab
*tab
, isl_int
*eq
)
1332 r
= isl_tab_add_row(tab
, eq
);
1336 r
= tab
->con
[r
].index
;
1337 i
= last_var_col_or_int_par_col(tab
, r
);
1339 tab
->con
[r
].is_nonneg
= 1;
1340 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1342 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1343 r
= isl_tab_add_row(tab
, eq
);
1346 tab
->con
[r
].is_nonneg
= 1;
1347 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1350 if (isl_tab_pivot(tab
, r
, i
) < 0)
1352 if (isl_tab_kill_col(tab
, i
) < 0)
1363 /* Check if the given row is a pure constant.
1365 static int is_constant(struct isl_tab
*tab
, int row
)
1367 unsigned off
= 2 + tab
->M
;
1369 return isl_seq_first_non_zero(tab
->mat
->row
[row
] + off
+ tab
->n_dead
,
1370 tab
->n_col
- tab
->n_dead
) == -1;
1373 /* Add an equality that may or may not be valid to the tableau.
1374 * If the resulting row is a pure constant, then it must be zero.
1375 * Otherwise, the resulting tableau is empty.
1377 * If the row is not a pure constant, then we add two inequalities,
1378 * each time checking that they can be satisfied.
1379 * In the end we try to use one of the two constraints to eliminate
1382 static int add_lexmin_eq(struct isl_tab
*tab
, isl_int
*eq
) WARN_UNUSED
;
1383 static int add_lexmin_eq(struct isl_tab
*tab
, isl_int
*eq
)
1387 struct isl_tab_undo
*snap
;
1391 snap
= isl_tab_snap(tab
);
1392 r1
= isl_tab_add_row(tab
, eq
);
1395 tab
->con
[r1
].is_nonneg
= 1;
1396 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r1
]) < 0)
1399 row
= tab
->con
[r1
].index
;
1400 if (is_constant(tab
, row
)) {
1401 if (!isl_int_is_zero(tab
->mat
->row
[row
][1]) ||
1402 (tab
->M
&& !isl_int_is_zero(tab
->mat
->row
[row
][2]))) {
1403 if (isl_tab_mark_empty(tab
) < 0)
1407 if (isl_tab_rollback(tab
, snap
) < 0)
1412 if (restore_lexmin(tab
) < 0)
1417 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1419 r2
= isl_tab_add_row(tab
, eq
);
1422 tab
->con
[r2
].is_nonneg
= 1;
1423 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r2
]) < 0)
1426 if (restore_lexmin(tab
) < 0)
1431 if (!tab
->con
[r1
].is_row
) {
1432 if (isl_tab_kill_col(tab
, tab
->con
[r1
].index
) < 0)
1434 } else if (!tab
->con
[r2
].is_row
) {
1435 if (isl_tab_kill_col(tab
, tab
->con
[r2
].index
) < 0)
1440 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, eq
);
1441 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1443 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1444 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, eq
);
1445 isl_seq_neg(eq
, eq
, 1 + tab
->n_var
);
1446 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1455 /* Add an inequality to the tableau, resolving violations using
1458 static struct isl_tab
*add_lexmin_ineq(struct isl_tab
*tab
, isl_int
*ineq
)
1465 tab
->bmap
= isl_basic_map_add_ineq(tab
->bmap
, ineq
);
1466 if (isl_tab_push(tab
, isl_tab_undo_bmap_ineq
) < 0)
1471 r
= isl_tab_add_row(tab
, ineq
);
1474 tab
->con
[r
].is_nonneg
= 1;
1475 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1477 if (isl_tab_row_is_redundant(tab
, tab
->con
[r
].index
)) {
1478 if (isl_tab_mark_redundant(tab
, tab
->con
[r
].index
) < 0)
1483 if (restore_lexmin(tab
) < 0)
1485 if (!tab
->empty
&& tab
->con
[r
].is_row
&&
1486 isl_tab_row_is_redundant(tab
, tab
->con
[r
].index
))
1487 if (isl_tab_mark_redundant(tab
, tab
->con
[r
].index
) < 0)
1495 /* Check if the coefficients of the parameters are all integral.
1497 static int integer_parameter(struct isl_tab
*tab
, int row
)
1501 unsigned off
= 2 + tab
->M
;
1503 for (i
= 0; i
< tab
->n_param
; ++i
) {
1504 /* Eliminated parameter */
1505 if (tab
->var
[i
].is_row
)
1507 col
= tab
->var
[i
].index
;
1508 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ col
],
1509 tab
->mat
->row
[row
][0]))
1512 for (i
= 0; i
< tab
->n_div
; ++i
) {
1513 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
1515 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
1516 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ col
],
1517 tab
->mat
->row
[row
][0]))
1523 /* Check if the coefficients of the non-parameter variables are all integral.
1525 static int integer_variable(struct isl_tab
*tab
, int row
)
1528 unsigned off
= 2 + tab
->M
;
1530 for (i
= tab
->n_dead
; i
< tab
->n_col
; ++i
) {
1531 if (tab
->col_var
[i
] >= 0 &&
1532 (tab
->col_var
[i
] < tab
->n_param
||
1533 tab
->col_var
[i
] >= tab
->n_var
- tab
->n_div
))
1535 if (!isl_int_is_divisible_by(tab
->mat
->row
[row
][off
+ i
],
1536 tab
->mat
->row
[row
][0]))
1542 /* Check if the constant term is integral.
1544 static int integer_constant(struct isl_tab
*tab
, int row
)
1546 return isl_int_is_divisible_by(tab
->mat
->row
[row
][1],
1547 tab
->mat
->row
[row
][0]);
1550 #define I_CST 1 << 0
1551 #define I_PAR 1 << 1
1552 #define I_VAR 1 << 2
1554 /* Check for next (non-parameter) variable after "var" (first if var == -1)
1555 * that is non-integer and therefore requires a cut and return
1556 * the index of the variable.
1557 * For parametric tableaus, there are three parts in a row,
1558 * the constant, the coefficients of the parameters and the rest.
1559 * For each part, we check whether the coefficients in that part
1560 * are all integral and if so, set the corresponding flag in *f.
1561 * If the constant and the parameter part are integral, then the
1562 * current sample value is integral and no cut is required
1563 * (irrespective of whether the variable part is integral).
1565 static int next_non_integer_var(struct isl_tab
*tab
, int var
, int *f
)
1567 var
= var
< 0 ? tab
->n_param
: var
+ 1;
1569 for (; var
< tab
->n_var
- tab
->n_div
; ++var
) {
1572 if (!tab
->var
[var
].is_row
)
1574 row
= tab
->var
[var
].index
;
1575 if (integer_constant(tab
, row
))
1576 ISL_FL_SET(flags
, I_CST
);
1577 if (integer_parameter(tab
, row
))
1578 ISL_FL_SET(flags
, I_PAR
);
1579 if (ISL_FL_ISSET(flags
, I_CST
) && ISL_FL_ISSET(flags
, I_PAR
))
1581 if (integer_variable(tab
, row
))
1582 ISL_FL_SET(flags
, I_VAR
);
1589 /* Check for first (non-parameter) variable that is non-integer and
1590 * therefore requires a cut and return the corresponding row.
1591 * For parametric tableaus, there are three parts in a row,
1592 * the constant, the coefficients of the parameters and the rest.
1593 * For each part, we check whether the coefficients in that part
1594 * are all integral and if so, set the corresponding flag in *f.
1595 * If the constant and the parameter part are integral, then the
1596 * current sample value is integral and no cut is required
1597 * (irrespective of whether the variable part is integral).
1599 static int first_non_integer_row(struct isl_tab
*tab
, int *f
)
1601 int var
= next_non_integer_var(tab
, -1, f
);
1603 return var
< 0 ? -1 : tab
->var
[var
].index
;
1606 /* Add a (non-parametric) cut to cut away the non-integral sample
1607 * value of the given row.
1609 * If the row is given by
1611 * m r = f + \sum_i a_i y_i
1615 * c = - {-f/m} + \sum_i {a_i/m} y_i >= 0
1617 * The big parameter, if any, is ignored, since it is assumed to be big
1618 * enough to be divisible by any integer.
1619 * If the tableau is actually a parametric tableau, then this function
1620 * is only called when all coefficients of the parameters are integral.
1621 * The cut therefore has zero coefficients for the parameters.
1623 * The current value is known to be negative, so row_sign, if it
1624 * exists, is set accordingly.
1626 * Return the row of the cut or -1.
1628 static int add_cut(struct isl_tab
*tab
, int row
)
1633 unsigned off
= 2 + tab
->M
;
1635 if (isl_tab_extend_cons(tab
, 1) < 0)
1637 r
= isl_tab_allocate_con(tab
);
1641 r_row
= tab
->mat
->row
[tab
->con
[r
].index
];
1642 isl_int_set(r_row
[0], tab
->mat
->row
[row
][0]);
1643 isl_int_neg(r_row
[1], tab
->mat
->row
[row
][1]);
1644 isl_int_fdiv_r(r_row
[1], r_row
[1], tab
->mat
->row
[row
][0]);
1645 isl_int_neg(r_row
[1], r_row
[1]);
1647 isl_int_set_si(r_row
[2], 0);
1648 for (i
= 0; i
< tab
->n_col
; ++i
)
1649 isl_int_fdiv_r(r_row
[off
+ i
],
1650 tab
->mat
->row
[row
][off
+ i
], tab
->mat
->row
[row
][0]);
1652 tab
->con
[r
].is_nonneg
= 1;
1653 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
1656 tab
->row_sign
[tab
->con
[r
].index
] = isl_tab_row_neg
;
1658 return tab
->con
[r
].index
;
1664 /* Given a non-parametric tableau, add cuts until an integer
1665 * sample point is obtained or until the tableau is determined
1666 * to be integer infeasible.
1667 * As long as there is any non-integer value in the sample point,
1668 * we add appropriate cuts, if possible, for each of these
1669 * non-integer values and then resolve the violated
1670 * cut constraints using restore_lexmin.
1671 * If one of the corresponding rows is equal to an integral
1672 * combination of variables/constraints plus a non-integral constant,
1673 * then there is no way to obtain an integer point and we return
1674 * a tableau that is marked empty.
1675 * The parameter cutting_strategy controls the strategy used when adding cuts
1676 * to remove non-integer points. CUT_ALL adds all possible cuts
1677 * before continuing the search. CUT_ONE adds only one cut at a time.
1679 static struct isl_tab
*cut_to_integer_lexmin(struct isl_tab
*tab
,
1680 int cutting_strategy
)
1691 while ((var
= next_non_integer_var(tab
, -1, &flags
)) != -1) {
1693 if (ISL_FL_ISSET(flags
, I_VAR
)) {
1694 if (isl_tab_mark_empty(tab
) < 0)
1698 row
= tab
->var
[var
].index
;
1699 row
= add_cut(tab
, row
);
1702 if (cutting_strategy
== CUT_ONE
)
1704 } while ((var
= next_non_integer_var(tab
, var
, &flags
)) != -1);
1705 if (restore_lexmin(tab
) < 0)
1716 /* Check whether all the currently active samples also satisfy the inequality
1717 * "ineq" (treated as an equality if eq is set).
1718 * Remove those samples that do not.
1720 static struct isl_tab
*check_samples(struct isl_tab
*tab
, isl_int
*ineq
, int eq
)
1728 isl_assert(tab
->mat
->ctx
, tab
->bmap
, goto error
);
1729 isl_assert(tab
->mat
->ctx
, tab
->samples
, goto error
);
1730 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
, goto error
);
1733 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
1735 isl_seq_inner_product(ineq
, tab
->samples
->row
[i
],
1736 1 + tab
->n_var
, &v
);
1737 sgn
= isl_int_sgn(v
);
1738 if (eq
? (sgn
== 0) : (sgn
>= 0))
1740 tab
= isl_tab_drop_sample(tab
, i
);
1752 /* Check whether the sample value of the tableau is finite,
1753 * i.e., either the tableau does not use a big parameter, or
1754 * all values of the variables are equal to the big parameter plus
1755 * some constant. This constant is the actual sample value.
1757 static int sample_is_finite(struct isl_tab
*tab
)
1764 for (i
= 0; i
< tab
->n_var
; ++i
) {
1766 if (!tab
->var
[i
].is_row
)
1768 row
= tab
->var
[i
].index
;
1769 if (isl_int_ne(tab
->mat
->row
[row
][0], tab
->mat
->row
[row
][2]))
1775 /* Check if the context tableau of sol has any integer points.
1776 * Leave tab in empty state if no integer point can be found.
1777 * If an integer point can be found and if moreover it is finite,
1778 * then it is added to the list of sample values.
1780 * This function is only called when none of the currently active sample
1781 * values satisfies the most recently added constraint.
1783 static struct isl_tab
*check_integer_feasible(struct isl_tab
*tab
)
1785 struct isl_tab_undo
*snap
;
1790 snap
= isl_tab_snap(tab
);
1791 if (isl_tab_push_basis(tab
) < 0)
1794 tab
= cut_to_integer_lexmin(tab
, CUT_ALL
);
1798 if (!tab
->empty
&& sample_is_finite(tab
)) {
1799 struct isl_vec
*sample
;
1801 sample
= isl_tab_get_sample_value(tab
);
1803 if (isl_tab_add_sample(tab
, sample
) < 0)
1807 if (!tab
->empty
&& isl_tab_rollback(tab
, snap
) < 0)
1816 /* Check if any of the currently active sample values satisfies
1817 * the inequality "ineq" (an equality if eq is set).
1819 static int tab_has_valid_sample(struct isl_tab
*tab
, isl_int
*ineq
, int eq
)
1827 isl_assert(tab
->mat
->ctx
, tab
->bmap
, return -1);
1828 isl_assert(tab
->mat
->ctx
, tab
->samples
, return -1);
1829 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
, return -1);
1832 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
1834 isl_seq_inner_product(ineq
, tab
->samples
->row
[i
],
1835 1 + tab
->n_var
, &v
);
1836 sgn
= isl_int_sgn(v
);
1837 if (eq
? (sgn
== 0) : (sgn
>= 0))
1842 return i
< tab
->n_sample
;
1845 /* Add a div specified by "div" to the tableau "tab" and return
1846 * 1 if the div is obviously non-negative.
1848 static int context_tab_add_div(struct isl_tab
*tab
, struct isl_vec
*div
,
1849 int (*add_ineq
)(void *user
, isl_int
*), void *user
)
1853 struct isl_mat
*samples
;
1856 r
= isl_tab_add_div(tab
, div
, add_ineq
, user
);
1859 nonneg
= tab
->var
[r
].is_nonneg
;
1860 tab
->var
[r
].frozen
= 1;
1862 samples
= isl_mat_extend(tab
->samples
,
1863 tab
->n_sample
, 1 + tab
->n_var
);
1864 tab
->samples
= samples
;
1867 for (i
= tab
->n_outside
; i
< samples
->n_row
; ++i
) {
1868 isl_seq_inner_product(div
->el
+ 1, samples
->row
[i
],
1869 div
->size
- 1, &samples
->row
[i
][samples
->n_col
- 1]);
1870 isl_int_fdiv_q(samples
->row
[i
][samples
->n_col
- 1],
1871 samples
->row
[i
][samples
->n_col
- 1], div
->el
[0]);
1877 /* Add a div specified by "div" to both the main tableau and
1878 * the context tableau. In case of the main tableau, we only
1879 * need to add an extra div. In the context tableau, we also
1880 * need to express the meaning of the div.
1881 * Return the index of the div or -1 if anything went wrong.
1883 static int add_div(struct isl_tab
*tab
, struct isl_context
*context
,
1884 struct isl_vec
*div
)
1889 if ((nonneg
= context
->op
->add_div(context
, div
)) < 0)
1892 if (!context
->op
->is_ok(context
))
1895 if (isl_tab_extend_vars(tab
, 1) < 0)
1897 r
= isl_tab_allocate_var(tab
);
1901 tab
->var
[r
].is_nonneg
= 1;
1902 tab
->var
[r
].frozen
= 1;
1905 return tab
->n_div
- 1;
1907 context
->op
->invalidate(context
);
1911 static int find_div(struct isl_tab
*tab
, isl_int
*div
, isl_int denom
)
1914 unsigned total
= isl_basic_map_total_dim(tab
->bmap
);
1916 for (i
= 0; i
< tab
->bmap
->n_div
; ++i
) {
1917 if (isl_int_ne(tab
->bmap
->div
[i
][0], denom
))
1919 if (!isl_seq_eq(tab
->bmap
->div
[i
] + 1, div
, 1 + total
))
1926 /* Return the index of a div that corresponds to "div".
1927 * We first check if we already have such a div and if not, we create one.
1929 static int get_div(struct isl_tab
*tab
, struct isl_context
*context
,
1930 struct isl_vec
*div
)
1933 struct isl_tab
*context_tab
= context
->op
->peek_tab(context
);
1938 d
= find_div(context_tab
, div
->el
+ 1, div
->el
[0]);
1942 return add_div(tab
, context
, div
);
1945 /* Add a parametric cut to cut away the non-integral sample value
1947 * Let a_i be the coefficients of the constant term and the parameters
1948 * and let b_i be the coefficients of the variables or constraints
1949 * in basis of the tableau.
1950 * Let q be the div q = floor(\sum_i {-a_i} y_i).
1952 * The cut is expressed as
1954 * c = \sum_i -{-a_i} y_i + \sum_i {b_i} x_i + q >= 0
1956 * If q did not already exist in the context tableau, then it is added first.
1957 * If q is in a column of the main tableau then the "+ q" can be accomplished
1958 * by setting the corresponding entry to the denominator of the constraint.
1959 * If q happens to be in a row of the main tableau, then the corresponding
1960 * row needs to be added instead (taking care of the denominators).
1961 * Note that this is very unlikely, but perhaps not entirely impossible.
1963 * The current value of the cut is known to be negative (or at least
1964 * non-positive), so row_sign is set accordingly.
1966 * Return the row of the cut or -1.
1968 static int add_parametric_cut(struct isl_tab
*tab
, int row
,
1969 struct isl_context
*context
)
1971 struct isl_vec
*div
;
1978 unsigned off
= 2 + tab
->M
;
1983 div
= get_row_parameter_div(tab
, row
);
1988 d
= context
->op
->get_div(context
, tab
, div
);
1993 if (isl_tab_extend_cons(tab
, 1) < 0)
1995 r
= isl_tab_allocate_con(tab
);
1999 r_row
= tab
->mat
->row
[tab
->con
[r
].index
];
2000 isl_int_set(r_row
[0], tab
->mat
->row
[row
][0]);
2001 isl_int_neg(r_row
[1], tab
->mat
->row
[row
][1]);
2002 isl_int_fdiv_r(r_row
[1], r_row
[1], tab
->mat
->row
[row
][0]);
2003 isl_int_neg(r_row
[1], r_row
[1]);
2005 isl_int_set_si(r_row
[2], 0);
2006 for (i
= 0; i
< tab
->n_param
; ++i
) {
2007 if (tab
->var
[i
].is_row
)
2009 col
= tab
->var
[i
].index
;
2010 isl_int_neg(r_row
[off
+ col
], tab
->mat
->row
[row
][off
+ col
]);
2011 isl_int_fdiv_r(r_row
[off
+ col
], r_row
[off
+ col
],
2012 tab
->mat
->row
[row
][0]);
2013 isl_int_neg(r_row
[off
+ col
], r_row
[off
+ col
]);
2015 for (i
= 0; i
< tab
->n_div
; ++i
) {
2016 if (tab
->var
[tab
->n_var
- tab
->n_div
+ i
].is_row
)
2018 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ i
].index
;
2019 isl_int_neg(r_row
[off
+ col
], tab
->mat
->row
[row
][off
+ col
]);
2020 isl_int_fdiv_r(r_row
[off
+ col
], r_row
[off
+ col
],
2021 tab
->mat
->row
[row
][0]);
2022 isl_int_neg(r_row
[off
+ col
], r_row
[off
+ col
]);
2024 for (i
= 0; i
< tab
->n_col
; ++i
) {
2025 if (tab
->col_var
[i
] >= 0 &&
2026 (tab
->col_var
[i
] < tab
->n_param
||
2027 tab
->col_var
[i
] >= tab
->n_var
- tab
->n_div
))
2029 isl_int_fdiv_r(r_row
[off
+ i
],
2030 tab
->mat
->row
[row
][off
+ i
], tab
->mat
->row
[row
][0]);
2032 if (tab
->var
[tab
->n_var
- tab
->n_div
+ d
].is_row
) {
2034 int d_row
= tab
->var
[tab
->n_var
- tab
->n_div
+ d
].index
;
2036 isl_int_gcd(gcd
, tab
->mat
->row
[d_row
][0], r_row
[0]);
2037 isl_int_divexact(r_row
[0], r_row
[0], gcd
);
2038 isl_int_divexact(gcd
, tab
->mat
->row
[d_row
][0], gcd
);
2039 isl_seq_combine(r_row
+ 1, gcd
, r_row
+ 1,
2040 r_row
[0], tab
->mat
->row
[d_row
] + 1,
2041 off
- 1 + tab
->n_col
);
2042 isl_int_mul(r_row
[0], r_row
[0], tab
->mat
->row
[d_row
][0]);
2045 col
= tab
->var
[tab
->n_var
- tab
->n_div
+ d
].index
;
2046 isl_int_set(r_row
[off
+ col
], tab
->mat
->row
[row
][0]);
2049 tab
->con
[r
].is_nonneg
= 1;
2050 if (isl_tab_push_var(tab
, isl_tab_undo_nonneg
, &tab
->con
[r
]) < 0)
2053 tab
->row_sign
[tab
->con
[r
].index
] = isl_tab_row_neg
;
2055 row
= tab
->con
[r
].index
;
2057 if (d
>= n
&& context
->op
->detect_equalities(context
, tab
) < 0)
2063 /* Construct a tableau for bmap that can be used for computing
2064 * the lexicographic minimum (or maximum) of bmap.
2065 * If not NULL, then dom is the domain where the minimum
2066 * should be computed. In this case, we set up a parametric
2067 * tableau with row signs (initialized to "unknown").
2068 * If M is set, then the tableau will use a big parameter.
2069 * If max is set, then a maximum should be computed instead of a minimum.
2070 * This means that for each variable x, the tableau will contain the variable
2071 * x' = M - x, rather than x' = M + x. This in turn means that the coefficient
2072 * of the variables in all constraints are negated prior to adding them
2075 static struct isl_tab
*tab_for_lexmin(struct isl_basic_map
*bmap
,
2076 struct isl_basic_set
*dom
, unsigned M
, int max
)
2079 struct isl_tab
*tab
;
2083 tab
= isl_tab_alloc(bmap
->ctx
, 2 * bmap
->n_eq
+ bmap
->n_ineq
+ 1,
2084 isl_basic_map_total_dim(bmap
), M
);
2088 tab
->rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
2090 tab
->n_param
= isl_basic_set_total_dim(dom
) - dom
->n_div
;
2091 tab
->n_div
= dom
->n_div
;
2092 tab
->row_sign
= isl_calloc_array(bmap
->ctx
,
2093 enum isl_tab_row_sign
, tab
->mat
->n_row
);
2094 if (tab
->mat
->n_row
&& !tab
->row_sign
)
2097 if (ISL_F_ISSET(bmap
, ISL_BASIC_MAP_EMPTY
)) {
2098 if (isl_tab_mark_empty(tab
) < 0)
2103 for (i
= tab
->n_param
; i
< tab
->n_var
- tab
->n_div
; ++i
) {
2104 tab
->var
[i
].is_nonneg
= 1;
2105 tab
->var
[i
].frozen
= 1;
2107 o_var
= 1 + tab
->n_param
;
2108 n_var
= tab
->n_var
- tab
->n_param
- tab
->n_div
;
2109 for (i
= 0; i
< bmap
->n_eq
; ++i
) {
2111 isl_seq_neg(bmap
->eq
[i
] + o_var
,
2112 bmap
->eq
[i
] + o_var
, n_var
);
2113 tab
= add_lexmin_valid_eq(tab
, bmap
->eq
[i
]);
2115 isl_seq_neg(bmap
->eq
[i
] + o_var
,
2116 bmap
->eq
[i
] + o_var
, n_var
);
2117 if (!tab
|| tab
->empty
)
2120 if (bmap
->n_eq
&& restore_lexmin(tab
) < 0)
2122 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
2124 isl_seq_neg(bmap
->ineq
[i
] + o_var
,
2125 bmap
->ineq
[i
] + o_var
, n_var
);
2126 tab
= add_lexmin_ineq(tab
, bmap
->ineq
[i
]);
2128 isl_seq_neg(bmap
->ineq
[i
] + o_var
,
2129 bmap
->ineq
[i
] + o_var
, n_var
);
2130 if (!tab
|| tab
->empty
)
2139 /* Given a main tableau where more than one row requires a split,
2140 * determine and return the "best" row to split on.
2142 * Given two rows in the main tableau, if the inequality corresponding
2143 * to the first row is redundant with respect to that of the second row
2144 * in the current tableau, then it is better to split on the second row,
2145 * since in the positive part, both row will be positive.
2146 * (In the negative part a pivot will have to be performed and just about
2147 * anything can happen to the sign of the other row.)
2149 * As a simple heuristic, we therefore select the row that makes the most
2150 * of the other rows redundant.
2152 * Perhaps it would also be useful to look at the number of constraints
2153 * that conflict with any given constraint.
2155 * best is the best row so far (-1 when we have not found any row yet).
2156 * best_r is the number of other rows made redundant by row best.
2157 * When best is still -1, bset_r is meaningless, but it is initialized
2158 * to some arbitrary value (0) anyway. Without this redundant initialization
2159 * valgrind may warn about uninitialized memory accesses when isl
2160 * is compiled with some versions of gcc.
2162 static int best_split(struct isl_tab
*tab
, struct isl_tab
*context_tab
)
2164 struct isl_tab_undo
*snap
;
2170 if (isl_tab_extend_cons(context_tab
, 2) < 0)
2173 snap
= isl_tab_snap(context_tab
);
2175 for (split
= tab
->n_redundant
; split
< tab
->n_row
; ++split
) {
2176 struct isl_tab_undo
*snap2
;
2177 struct isl_vec
*ineq
= NULL
;
2181 if (!isl_tab_var_from_row(tab
, split
)->is_nonneg
)
2183 if (tab
->row_sign
[split
] != isl_tab_row_any
)
2186 ineq
= get_row_parameter_ineq(tab
, split
);
2189 ok
= isl_tab_add_ineq(context_tab
, ineq
->el
) >= 0;
2194 snap2
= isl_tab_snap(context_tab
);
2196 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
2197 struct isl_tab_var
*var
;
2201 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
2203 if (tab
->row_sign
[row
] != isl_tab_row_any
)
2206 ineq
= get_row_parameter_ineq(tab
, row
);
2209 ok
= isl_tab_add_ineq(context_tab
, ineq
->el
) >= 0;
2213 var
= &context_tab
->con
[context_tab
->n_con
- 1];
2214 if (!context_tab
->empty
&&
2215 !isl_tab_min_at_most_neg_one(context_tab
, var
))
2217 if (isl_tab_rollback(context_tab
, snap2
) < 0)
2220 if (best
== -1 || r
> best_r
) {
2224 if (isl_tab_rollback(context_tab
, snap
) < 0)
2231 static struct isl_basic_set
*context_lex_peek_basic_set(
2232 struct isl_context
*context
)
2234 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2237 return isl_tab_peek_bset(clex
->tab
);
2240 static struct isl_tab
*context_lex_peek_tab(struct isl_context
*context
)
2242 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2246 static void context_lex_add_eq(struct isl_context
*context
, isl_int
*eq
,
2247 int check
, int update
)
2249 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2250 if (isl_tab_extend_cons(clex
->tab
, 2) < 0)
2252 if (add_lexmin_eq(clex
->tab
, eq
) < 0)
2255 int v
= tab_has_valid_sample(clex
->tab
, eq
, 1);
2259 clex
->tab
= check_integer_feasible(clex
->tab
);
2262 clex
->tab
= check_samples(clex
->tab
, eq
, 1);
2265 isl_tab_free(clex
->tab
);
2269 static void context_lex_add_ineq(struct isl_context
*context
, isl_int
*ineq
,
2270 int check
, int update
)
2272 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2273 if (isl_tab_extend_cons(clex
->tab
, 1) < 0)
2275 clex
->tab
= add_lexmin_ineq(clex
->tab
, ineq
);
2277 int v
= tab_has_valid_sample(clex
->tab
, ineq
, 0);
2281 clex
->tab
= check_integer_feasible(clex
->tab
);
2284 clex
->tab
= check_samples(clex
->tab
, ineq
, 0);
2287 isl_tab_free(clex
->tab
);
2291 static int context_lex_add_ineq_wrap(void *user
, isl_int
*ineq
)
2293 struct isl_context
*context
= (struct isl_context
*)user
;
2294 context_lex_add_ineq(context
, ineq
, 0, 0);
2295 return context
->op
->is_ok(context
) ? 0 : -1;
2298 /* Check which signs can be obtained by "ineq" on all the currently
2299 * active sample values. See row_sign for more information.
2301 static enum isl_tab_row_sign
tab_ineq_sign(struct isl_tab
*tab
, isl_int
*ineq
,
2307 enum isl_tab_row_sign res
= isl_tab_row_unknown
;
2309 isl_assert(tab
->mat
->ctx
, tab
->samples
, return isl_tab_row_unknown
);
2310 isl_assert(tab
->mat
->ctx
, tab
->samples
->n_col
== 1 + tab
->n_var
,
2311 return isl_tab_row_unknown
);
2314 for (i
= tab
->n_outside
; i
< tab
->n_sample
; ++i
) {
2315 isl_seq_inner_product(tab
->samples
->row
[i
], ineq
,
2316 1 + tab
->n_var
, &tmp
);
2317 sgn
= isl_int_sgn(tmp
);
2318 if (sgn
> 0 || (sgn
== 0 && strict
)) {
2319 if (res
== isl_tab_row_unknown
)
2320 res
= isl_tab_row_pos
;
2321 if (res
== isl_tab_row_neg
)
2322 res
= isl_tab_row_any
;
2325 if (res
== isl_tab_row_unknown
)
2326 res
= isl_tab_row_neg
;
2327 if (res
== isl_tab_row_pos
)
2328 res
= isl_tab_row_any
;
2330 if (res
== isl_tab_row_any
)
2338 static enum isl_tab_row_sign
context_lex_ineq_sign(struct isl_context
*context
,
2339 isl_int
*ineq
, int strict
)
2341 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2342 return tab_ineq_sign(clex
->tab
, ineq
, strict
);
2345 /* Check whether "ineq" can be added to the tableau without rendering
2348 static int context_lex_test_ineq(struct isl_context
*context
, isl_int
*ineq
)
2350 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2351 struct isl_tab_undo
*snap
;
2357 if (isl_tab_extend_cons(clex
->tab
, 1) < 0)
2360 snap
= isl_tab_snap(clex
->tab
);
2361 if (isl_tab_push_basis(clex
->tab
) < 0)
2363 clex
->tab
= add_lexmin_ineq(clex
->tab
, ineq
);
2364 clex
->tab
= check_integer_feasible(clex
->tab
);
2367 feasible
= !clex
->tab
->empty
;
2368 if (isl_tab_rollback(clex
->tab
, snap
) < 0)
2374 static int context_lex_get_div(struct isl_context
*context
, struct isl_tab
*tab
,
2375 struct isl_vec
*div
)
2377 return get_div(tab
, context
, div
);
2380 /* Add a div specified by "div" to the context tableau and return
2381 * 1 if the div is obviously non-negative.
2382 * context_tab_add_div will always return 1, because all variables
2383 * in a isl_context_lex tableau are non-negative.
2384 * However, if we are using a big parameter in the context, then this only
2385 * reflects the non-negativity of the variable used to _encode_ the
2386 * div, i.e., div' = M + div, so we can't draw any conclusions.
2388 static int context_lex_add_div(struct isl_context
*context
, struct isl_vec
*div
)
2390 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2392 nonneg
= context_tab_add_div(clex
->tab
, div
,
2393 context_lex_add_ineq_wrap
, context
);
2401 static int context_lex_detect_equalities(struct isl_context
*context
,
2402 struct isl_tab
*tab
)
2407 static int context_lex_best_split(struct isl_context
*context
,
2408 struct isl_tab
*tab
)
2410 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2411 struct isl_tab_undo
*snap
;
2414 snap
= isl_tab_snap(clex
->tab
);
2415 if (isl_tab_push_basis(clex
->tab
) < 0)
2417 r
= best_split(tab
, clex
->tab
);
2419 if (r
>= 0 && isl_tab_rollback(clex
->tab
, snap
) < 0)
2425 static int context_lex_is_empty(struct isl_context
*context
)
2427 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2430 return clex
->tab
->empty
;
2433 static void *context_lex_save(struct isl_context
*context
)
2435 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2436 struct isl_tab_undo
*snap
;
2438 snap
= isl_tab_snap(clex
->tab
);
2439 if (isl_tab_push_basis(clex
->tab
) < 0)
2441 if (isl_tab_save_samples(clex
->tab
) < 0)
2447 static void context_lex_restore(struct isl_context
*context
, void *save
)
2449 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2450 if (isl_tab_rollback(clex
->tab
, (struct isl_tab_undo
*)save
) < 0) {
2451 isl_tab_free(clex
->tab
);
2456 static void context_lex_discard(void *save
)
2460 static int context_lex_is_ok(struct isl_context
*context
)
2462 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2466 /* For each variable in the context tableau, check if the variable can
2467 * only attain non-negative values. If so, mark the parameter as non-negative
2468 * in the main tableau. This allows for a more direct identification of some
2469 * cases of violated constraints.
2471 static struct isl_tab
*tab_detect_nonnegative_parameters(struct isl_tab
*tab
,
2472 struct isl_tab
*context_tab
)
2475 struct isl_tab_undo
*snap
;
2476 struct isl_vec
*ineq
= NULL
;
2477 struct isl_tab_var
*var
;
2480 if (context_tab
->n_var
== 0)
2483 ineq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + context_tab
->n_var
);
2487 if (isl_tab_extend_cons(context_tab
, 1) < 0)
2490 snap
= isl_tab_snap(context_tab
);
2493 isl_seq_clr(ineq
->el
, ineq
->size
);
2494 for (i
= 0; i
< context_tab
->n_var
; ++i
) {
2495 isl_int_set_si(ineq
->el
[1 + i
], 1);
2496 if (isl_tab_add_ineq(context_tab
, ineq
->el
) < 0)
2498 var
= &context_tab
->con
[context_tab
->n_con
- 1];
2499 if (!context_tab
->empty
&&
2500 !isl_tab_min_at_most_neg_one(context_tab
, var
)) {
2502 if (i
>= tab
->n_param
)
2503 j
= i
- tab
->n_param
+ tab
->n_var
- tab
->n_div
;
2504 tab
->var
[j
].is_nonneg
= 1;
2507 isl_int_set_si(ineq
->el
[1 + i
], 0);
2508 if (isl_tab_rollback(context_tab
, snap
) < 0)
2512 if (context_tab
->M
&& n
== context_tab
->n_var
) {
2513 context_tab
->mat
= isl_mat_drop_cols(context_tab
->mat
, 2, 1);
2525 static struct isl_tab
*context_lex_detect_nonnegative_parameters(
2526 struct isl_context
*context
, struct isl_tab
*tab
)
2528 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2529 struct isl_tab_undo
*snap
;
2534 snap
= isl_tab_snap(clex
->tab
);
2535 if (isl_tab_push_basis(clex
->tab
) < 0)
2538 tab
= tab_detect_nonnegative_parameters(tab
, clex
->tab
);
2540 if (isl_tab_rollback(clex
->tab
, snap
) < 0)
2549 static void context_lex_invalidate(struct isl_context
*context
)
2551 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2552 isl_tab_free(clex
->tab
);
2556 static void context_lex_free(struct isl_context
*context
)
2558 struct isl_context_lex
*clex
= (struct isl_context_lex
*)context
;
2559 isl_tab_free(clex
->tab
);
2563 struct isl_context_op isl_context_lex_op
= {
2564 context_lex_detect_nonnegative_parameters
,
2565 context_lex_peek_basic_set
,
2566 context_lex_peek_tab
,
2568 context_lex_add_ineq
,
2569 context_lex_ineq_sign
,
2570 context_lex_test_ineq
,
2571 context_lex_get_div
,
2572 context_lex_add_div
,
2573 context_lex_detect_equalities
,
2574 context_lex_best_split
,
2575 context_lex_is_empty
,
2578 context_lex_restore
,
2579 context_lex_discard
,
2580 context_lex_invalidate
,
2584 static struct isl_tab
*context_tab_for_lexmin(struct isl_basic_set
*bset
)
2586 struct isl_tab
*tab
;
2590 tab
= tab_for_lexmin((struct isl_basic_map
*)bset
, NULL
, 1, 0);
2593 if (isl_tab_track_bset(tab
, bset
) < 0)
2595 tab
= isl_tab_init_samples(tab
);
2598 isl_basic_set_free(bset
);
2602 static struct isl_context
*isl_context_lex_alloc(struct isl_basic_set
*dom
)
2604 struct isl_context_lex
*clex
;
2609 clex
= isl_alloc_type(dom
->ctx
, struct isl_context_lex
);
2613 clex
->context
.op
= &isl_context_lex_op
;
2615 clex
->tab
= context_tab_for_lexmin(isl_basic_set_copy(dom
));
2616 if (restore_lexmin(clex
->tab
) < 0)
2618 clex
->tab
= check_integer_feasible(clex
->tab
);
2622 return &clex
->context
;
2624 clex
->context
.op
->free(&clex
->context
);
2628 /* Representation of the context when using generalized basis reduction.
2630 * "shifted" contains the offsets of the unit hypercubes that lie inside the
2631 * context. Any rational point in "shifted" can therefore be rounded
2632 * up to an integer point in the context.
2633 * If the context is constrained by any equality, then "shifted" is not used
2634 * as it would be empty.
2636 struct isl_context_gbr
{
2637 struct isl_context context
;
2638 struct isl_tab
*tab
;
2639 struct isl_tab
*shifted
;
2640 struct isl_tab
*cone
;
2643 static struct isl_tab
*context_gbr_detect_nonnegative_parameters(
2644 struct isl_context
*context
, struct isl_tab
*tab
)
2646 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2649 return tab_detect_nonnegative_parameters(tab
, cgbr
->tab
);
2652 static struct isl_basic_set
*context_gbr_peek_basic_set(
2653 struct isl_context
*context
)
2655 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2658 return isl_tab_peek_bset(cgbr
->tab
);
2661 static struct isl_tab
*context_gbr_peek_tab(struct isl_context
*context
)
2663 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2667 /* Initialize the "shifted" tableau of the context, which
2668 * contains the constraints of the original tableau shifted
2669 * by the sum of all negative coefficients. This ensures
2670 * that any rational point in the shifted tableau can
2671 * be rounded up to yield an integer point in the original tableau.
2673 static void gbr_init_shifted(struct isl_context_gbr
*cgbr
)
2676 struct isl_vec
*cst
;
2677 struct isl_basic_set
*bset
= isl_tab_peek_bset(cgbr
->tab
);
2678 unsigned dim
= isl_basic_set_total_dim(bset
);
2680 cst
= isl_vec_alloc(cgbr
->tab
->mat
->ctx
, bset
->n_ineq
);
2684 for (i
= 0; i
< bset
->n_ineq
; ++i
) {
2685 isl_int_set(cst
->el
[i
], bset
->ineq
[i
][0]);
2686 for (j
= 0; j
< dim
; ++j
) {
2687 if (!isl_int_is_neg(bset
->ineq
[i
][1 + j
]))
2689 isl_int_add(bset
->ineq
[i
][0], bset
->ineq
[i
][0],
2690 bset
->ineq
[i
][1 + j
]);
2694 cgbr
->shifted
= isl_tab_from_basic_set(bset
, 0);
2696 for (i
= 0; i
< bset
->n_ineq
; ++i
)
2697 isl_int_set(bset
->ineq
[i
][0], cst
->el
[i
]);
2702 /* Check if the shifted tableau is non-empty, and if so
2703 * use the sample point to construct an integer point
2704 * of the context tableau.
2706 static struct isl_vec
*gbr_get_shifted_sample(struct isl_context_gbr
*cgbr
)
2708 struct isl_vec
*sample
;
2711 gbr_init_shifted(cgbr
);
2714 if (cgbr
->shifted
->empty
)
2715 return isl_vec_alloc(cgbr
->tab
->mat
->ctx
, 0);
2717 sample
= isl_tab_get_sample_value(cgbr
->shifted
);
2718 sample
= isl_vec_ceil(sample
);
2723 static struct isl_basic_set
*drop_constant_terms(struct isl_basic_set
*bset
)
2730 for (i
= 0; i
< bset
->n_eq
; ++i
)
2731 isl_int_set_si(bset
->eq
[i
][0], 0);
2733 for (i
= 0; i
< bset
->n_ineq
; ++i
)
2734 isl_int_set_si(bset
->ineq
[i
][0], 0);
2739 static int use_shifted(struct isl_context_gbr
*cgbr
)
2743 return cgbr
->tab
->bmap
->n_eq
== 0 && cgbr
->tab
->bmap
->n_div
== 0;
2746 static struct isl_vec
*gbr_get_sample(struct isl_context_gbr
*cgbr
)
2748 struct isl_basic_set
*bset
;
2749 struct isl_basic_set
*cone
;
2751 if (isl_tab_sample_is_integer(cgbr
->tab
))
2752 return isl_tab_get_sample_value(cgbr
->tab
);
2754 if (use_shifted(cgbr
)) {
2755 struct isl_vec
*sample
;
2757 sample
= gbr_get_shifted_sample(cgbr
);
2758 if (!sample
|| sample
->size
> 0)
2761 isl_vec_free(sample
);
2765 bset
= isl_tab_peek_bset(cgbr
->tab
);
2766 cgbr
->cone
= isl_tab_from_recession_cone(bset
, 0);
2769 if (isl_tab_track_bset(cgbr
->cone
,
2770 isl_basic_set_copy(bset
)) < 0)
2773 if (isl_tab_detect_implicit_equalities(cgbr
->cone
) < 0)
2776 if (cgbr
->cone
->n_dead
== cgbr
->cone
->n_col
) {
2777 struct isl_vec
*sample
;
2778 struct isl_tab_undo
*snap
;
2780 if (cgbr
->tab
->basis
) {
2781 if (cgbr
->tab
->basis
->n_col
!= 1 + cgbr
->tab
->n_var
) {
2782 isl_mat_free(cgbr
->tab
->basis
);
2783 cgbr
->tab
->basis
= NULL
;
2785 cgbr
->tab
->n_zero
= 0;
2786 cgbr
->tab
->n_unbounded
= 0;
2789 snap
= isl_tab_snap(cgbr
->tab
);
2791 sample
= isl_tab_sample(cgbr
->tab
);
2793 if (isl_tab_rollback(cgbr
->tab
, snap
) < 0) {
2794 isl_vec_free(sample
);
2801 cone
= isl_basic_set_dup(isl_tab_peek_bset(cgbr
->cone
));
2802 cone
= drop_constant_terms(cone
);
2803 cone
= isl_basic_set_update_from_tab(cone
, cgbr
->cone
);
2804 cone
= isl_basic_set_underlying_set(cone
);
2805 cone
= isl_basic_set_gauss(cone
, NULL
);
2807 bset
= isl_basic_set_dup(isl_tab_peek_bset(cgbr
->tab
));
2808 bset
= isl_basic_set_update_from_tab(bset
, cgbr
->tab
);
2809 bset
= isl_basic_set_underlying_set(bset
);
2810 bset
= isl_basic_set_gauss(bset
, NULL
);
2812 return isl_basic_set_sample_with_cone(bset
, cone
);
2815 static void check_gbr_integer_feasible(struct isl_context_gbr
*cgbr
)
2817 struct isl_vec
*sample
;
2822 if (cgbr
->tab
->empty
)
2825 sample
= gbr_get_sample(cgbr
);
2829 if (sample
->size
== 0) {
2830 isl_vec_free(sample
);
2831 if (isl_tab_mark_empty(cgbr
->tab
) < 0)
2836 if (isl_tab_add_sample(cgbr
->tab
, sample
) < 0)
2841 isl_tab_free(cgbr
->tab
);
2845 static struct isl_tab
*add_gbr_eq(struct isl_tab
*tab
, isl_int
*eq
)
2850 if (isl_tab_extend_cons(tab
, 2) < 0)
2853 if (isl_tab_add_eq(tab
, eq
) < 0)
2862 /* Add the equality described by "eq" to the context.
2863 * If "check" is set, then we check if the context is empty after
2864 * adding the equality.
2865 * If "update" is set, then we check if the samples are still valid.
2867 * We do not explicitly add shifted copies of the equality to
2868 * cgbr->shifted since they would conflict with each other.
2869 * Instead, we directly mark cgbr->shifted empty.
2871 static void context_gbr_add_eq(struct isl_context
*context
, isl_int
*eq
,
2872 int check
, int update
)
2874 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2876 cgbr
->tab
= add_gbr_eq(cgbr
->tab
, eq
);
2878 if (cgbr
->shifted
&& !cgbr
->shifted
->empty
&& use_shifted(cgbr
)) {
2879 if (isl_tab_mark_empty(cgbr
->shifted
) < 0)
2883 if (cgbr
->cone
&& cgbr
->cone
->n_col
!= cgbr
->cone
->n_dead
) {
2884 if (isl_tab_extend_cons(cgbr
->cone
, 2) < 0)
2886 if (isl_tab_add_eq(cgbr
->cone
, eq
) < 0)
2891 int v
= tab_has_valid_sample(cgbr
->tab
, eq
, 1);
2895 check_gbr_integer_feasible(cgbr
);
2898 cgbr
->tab
= check_samples(cgbr
->tab
, eq
, 1);
2901 isl_tab_free(cgbr
->tab
);
2905 static void add_gbr_ineq(struct isl_context_gbr
*cgbr
, isl_int
*ineq
)
2910 if (isl_tab_extend_cons(cgbr
->tab
, 1) < 0)
2913 if (isl_tab_add_ineq(cgbr
->tab
, ineq
) < 0)
2916 if (cgbr
->shifted
&& !cgbr
->shifted
->empty
&& use_shifted(cgbr
)) {
2919 dim
= isl_basic_map_total_dim(cgbr
->tab
->bmap
);
2921 if (isl_tab_extend_cons(cgbr
->shifted
, 1) < 0)
2924 for (i
= 0; i
< dim
; ++i
) {
2925 if (!isl_int_is_neg(ineq
[1 + i
]))
2927 isl_int_add(ineq
[0], ineq
[0], ineq
[1 + i
]);
2930 if (isl_tab_add_ineq(cgbr
->shifted
, ineq
) < 0)
2933 for (i
= 0; i
< dim
; ++i
) {
2934 if (!isl_int_is_neg(ineq
[1 + i
]))
2936 isl_int_sub(ineq
[0], ineq
[0], ineq
[1 + i
]);
2940 if (cgbr
->cone
&& cgbr
->cone
->n_col
!= cgbr
->cone
->n_dead
) {
2941 if (isl_tab_extend_cons(cgbr
->cone
, 1) < 0)
2943 if (isl_tab_add_ineq(cgbr
->cone
, ineq
) < 0)
2949 isl_tab_free(cgbr
->tab
);
2953 static void context_gbr_add_ineq(struct isl_context
*context
, isl_int
*ineq
,
2954 int check
, int update
)
2956 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2958 add_gbr_ineq(cgbr
, ineq
);
2963 int v
= tab_has_valid_sample(cgbr
->tab
, ineq
, 0);
2967 check_gbr_integer_feasible(cgbr
);
2970 cgbr
->tab
= check_samples(cgbr
->tab
, ineq
, 0);
2973 isl_tab_free(cgbr
->tab
);
2977 static int context_gbr_add_ineq_wrap(void *user
, isl_int
*ineq
)
2979 struct isl_context
*context
= (struct isl_context
*)user
;
2980 context_gbr_add_ineq(context
, ineq
, 0, 0);
2981 return context
->op
->is_ok(context
) ? 0 : -1;
2984 static enum isl_tab_row_sign
context_gbr_ineq_sign(struct isl_context
*context
,
2985 isl_int
*ineq
, int strict
)
2987 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2988 return tab_ineq_sign(cgbr
->tab
, ineq
, strict
);
2991 /* Check whether "ineq" can be added to the tableau without rendering
2994 static int context_gbr_test_ineq(struct isl_context
*context
, isl_int
*ineq
)
2996 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
2997 struct isl_tab_undo
*snap
;
2998 struct isl_tab_undo
*shifted_snap
= NULL
;
2999 struct isl_tab_undo
*cone_snap
= NULL
;
3005 if (isl_tab_extend_cons(cgbr
->tab
, 1) < 0)
3008 snap
= isl_tab_snap(cgbr
->tab
);
3010 shifted_snap
= isl_tab_snap(cgbr
->shifted
);
3012 cone_snap
= isl_tab_snap(cgbr
->cone
);
3013 add_gbr_ineq(cgbr
, ineq
);
3014 check_gbr_integer_feasible(cgbr
);
3017 feasible
= !cgbr
->tab
->empty
;
3018 if (isl_tab_rollback(cgbr
->tab
, snap
) < 0)
3021 if (isl_tab_rollback(cgbr
->shifted
, shifted_snap
))
3023 } else if (cgbr
->shifted
) {
3024 isl_tab_free(cgbr
->shifted
);
3025 cgbr
->shifted
= NULL
;
3028 if (isl_tab_rollback(cgbr
->cone
, cone_snap
))
3030 } else if (cgbr
->cone
) {
3031 isl_tab_free(cgbr
->cone
);
3038 /* Return the column of the last of the variables associated to
3039 * a column that has a non-zero coefficient.
3040 * This function is called in a context where only coefficients
3041 * of parameters or divs can be non-zero.
3043 static int last_non_zero_var_col(struct isl_tab
*tab
, isl_int
*p
)
3048 if (tab
->n_var
== 0)
3051 for (i
= tab
->n_var
- 1; i
>= 0; --i
) {
3052 if (i
>= tab
->n_param
&& i
< tab
->n_var
- tab
->n_div
)
3054 if (tab
->var
[i
].is_row
)
3056 col
= tab
->var
[i
].index
;
3057 if (!isl_int_is_zero(p
[col
]))
3064 /* Look through all the recently added equalities in the context
3065 * to see if we can propagate any of them to the main tableau.
3067 * The newly added equalities in the context are encoded as pairs
3068 * of inequalities starting at inequality "first".
3070 * We tentatively add each of these equalities to the main tableau
3071 * and if this happens to result in a row with a final coefficient
3072 * that is one or negative one, we use it to kill a column
3073 * in the main tableau. Otherwise, we discard the tentatively
3076 * Return 0 on success and -1 on failure.
3078 static int propagate_equalities(struct isl_context_gbr
*cgbr
,
3079 struct isl_tab
*tab
, unsigned first
)
3082 struct isl_vec
*eq
= NULL
;
3084 eq
= isl_vec_alloc(tab
->mat
->ctx
, 1 + tab
->n_var
);
3088 if (isl_tab_extend_cons(tab
, (cgbr
->tab
->bmap
->n_ineq
- first
)/2) < 0)
3091 isl_seq_clr(eq
->el
+ 1 + tab
->n_param
,
3092 tab
->n_var
- tab
->n_param
- tab
->n_div
);
3093 for (i
= first
; i
< cgbr
->tab
->bmap
->n_ineq
; i
+= 2) {
3096 struct isl_tab_undo
*snap
;
3097 snap
= isl_tab_snap(tab
);
3099 isl_seq_cpy(eq
->el
, cgbr
->tab
->bmap
->ineq
[i
], 1 + tab
->n_param
);
3100 isl_seq_cpy(eq
->el
+ 1 + tab
->n_var
- tab
->n_div
,
3101 cgbr
->tab
->bmap
->ineq
[i
] + 1 + tab
->n_param
,
3104 r
= isl_tab_add_row(tab
, eq
->el
);
3107 r
= tab
->con
[r
].index
;
3108 j
= last_non_zero_var_col(tab
, tab
->mat
->row
[r
] + 2 + tab
->M
);
3109 if (j
< 0 || j
< tab
->n_dead
||
3110 !isl_int_is_one(tab
->mat
->row
[r
][0]) ||
3111 (!isl_int_is_one(tab
->mat
->row
[r
][2 + tab
->M
+ j
]) &&
3112 !isl_int_is_negone(tab
->mat
->row
[r
][2 + tab
->M
+ j
]))) {
3113 if (isl_tab_rollback(tab
, snap
) < 0)
3117 if (isl_tab_pivot(tab
, r
, j
) < 0)
3119 if (isl_tab_kill_col(tab
, j
) < 0)
3122 if (restore_lexmin(tab
) < 0)
3131 isl_tab_free(cgbr
->tab
);
3136 static int context_gbr_detect_equalities(struct isl_context
*context
,
3137 struct isl_tab
*tab
)
3139 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3140 struct isl_ctx
*ctx
;
3143 ctx
= cgbr
->tab
->mat
->ctx
;
3146 struct isl_basic_set
*bset
= isl_tab_peek_bset(cgbr
->tab
);
3147 cgbr
->cone
= isl_tab_from_recession_cone(bset
, 0);
3150 if (isl_tab_track_bset(cgbr
->cone
,
3151 isl_basic_set_copy(bset
)) < 0)
3154 if (isl_tab_detect_implicit_equalities(cgbr
->cone
) < 0)
3157 n_ineq
= cgbr
->tab
->bmap
->n_ineq
;
3158 cgbr
->tab
= isl_tab_detect_equalities(cgbr
->tab
, cgbr
->cone
);
3161 if (cgbr
->tab
->bmap
->n_ineq
> n_ineq
&&
3162 propagate_equalities(cgbr
, tab
, n_ineq
) < 0)
3167 isl_tab_free(cgbr
->tab
);
3172 static int context_gbr_get_div(struct isl_context
*context
, struct isl_tab
*tab
,
3173 struct isl_vec
*div
)
3175 return get_div(tab
, context
, div
);
3178 static int context_gbr_add_div(struct isl_context
*context
, struct isl_vec
*div
)
3180 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3184 if (isl_tab_extend_cons(cgbr
->cone
, 3) < 0)
3186 if (isl_tab_extend_vars(cgbr
->cone
, 1) < 0)
3188 if (isl_tab_allocate_var(cgbr
->cone
) <0)
3191 cgbr
->cone
->bmap
= isl_basic_map_extend_space(cgbr
->cone
->bmap
,
3192 isl_basic_map_get_space(cgbr
->cone
->bmap
), 1, 0, 2);
3193 k
= isl_basic_map_alloc_div(cgbr
->cone
->bmap
);
3196 isl_seq_cpy(cgbr
->cone
->bmap
->div
[k
], div
->el
, div
->size
);
3197 if (isl_tab_push(cgbr
->cone
, isl_tab_undo_bmap_div
) < 0)
3200 return context_tab_add_div(cgbr
->tab
, div
,
3201 context_gbr_add_ineq_wrap
, context
);
3204 static int context_gbr_best_split(struct isl_context
*context
,
3205 struct isl_tab
*tab
)
3207 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3208 struct isl_tab_undo
*snap
;
3211 snap
= isl_tab_snap(cgbr
->tab
);
3212 r
= best_split(tab
, cgbr
->tab
);
3214 if (r
>= 0 && isl_tab_rollback(cgbr
->tab
, snap
) < 0)
3220 static int context_gbr_is_empty(struct isl_context
*context
)
3222 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3225 return cgbr
->tab
->empty
;
3228 struct isl_gbr_tab_undo
{
3229 struct isl_tab_undo
*tab_snap
;
3230 struct isl_tab_undo
*shifted_snap
;
3231 struct isl_tab_undo
*cone_snap
;
3234 static void *context_gbr_save(struct isl_context
*context
)
3236 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3237 struct isl_gbr_tab_undo
*snap
;
3242 snap
= isl_alloc_type(cgbr
->tab
->mat
->ctx
, struct isl_gbr_tab_undo
);
3246 snap
->tab_snap
= isl_tab_snap(cgbr
->tab
);
3247 if (isl_tab_save_samples(cgbr
->tab
) < 0)
3251 snap
->shifted_snap
= isl_tab_snap(cgbr
->shifted
);
3253 snap
->shifted_snap
= NULL
;
3256 snap
->cone_snap
= isl_tab_snap(cgbr
->cone
);
3258 snap
->cone_snap
= NULL
;
3266 static void context_gbr_restore(struct isl_context
*context
, void *save
)
3268 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3269 struct isl_gbr_tab_undo
*snap
= (struct isl_gbr_tab_undo
*)save
;
3272 if (isl_tab_rollback(cgbr
->tab
, snap
->tab_snap
) < 0) {
3273 isl_tab_free(cgbr
->tab
);
3277 if (snap
->shifted_snap
) {
3278 if (isl_tab_rollback(cgbr
->shifted
, snap
->shifted_snap
) < 0)
3280 } else if (cgbr
->shifted
) {
3281 isl_tab_free(cgbr
->shifted
);
3282 cgbr
->shifted
= NULL
;
3285 if (snap
->cone_snap
) {
3286 if (isl_tab_rollback(cgbr
->cone
, snap
->cone_snap
) < 0)
3288 } else if (cgbr
->cone
) {
3289 isl_tab_free(cgbr
->cone
);
3298 isl_tab_free(cgbr
->tab
);
3302 static void context_gbr_discard(void *save
)
3304 struct isl_gbr_tab_undo
*snap
= (struct isl_gbr_tab_undo
*)save
;
3308 static int context_gbr_is_ok(struct isl_context
*context
)
3310 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3314 static void context_gbr_invalidate(struct isl_context
*context
)
3316 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3317 isl_tab_free(cgbr
->tab
);
3321 static void context_gbr_free(struct isl_context
*context
)
3323 struct isl_context_gbr
*cgbr
= (struct isl_context_gbr
*)context
;
3324 isl_tab_free(cgbr
->tab
);
3325 isl_tab_free(cgbr
->shifted
);
3326 isl_tab_free(cgbr
->cone
);
3330 struct isl_context_op isl_context_gbr_op
= {
3331 context_gbr_detect_nonnegative_parameters
,
3332 context_gbr_peek_basic_set
,
3333 context_gbr_peek_tab
,
3335 context_gbr_add_ineq
,
3336 context_gbr_ineq_sign
,
3337 context_gbr_test_ineq
,
3338 context_gbr_get_div
,
3339 context_gbr_add_div
,
3340 context_gbr_detect_equalities
,
3341 context_gbr_best_split
,
3342 context_gbr_is_empty
,
3345 context_gbr_restore
,
3346 context_gbr_discard
,
3347 context_gbr_invalidate
,
3351 static struct isl_context
*isl_context_gbr_alloc(struct isl_basic_set
*dom
)
3353 struct isl_context_gbr
*cgbr
;
3358 cgbr
= isl_calloc_type(dom
->ctx
, struct isl_context_gbr
);
3362 cgbr
->context
.op
= &isl_context_gbr_op
;
3364 cgbr
->shifted
= NULL
;
3366 cgbr
->tab
= isl_tab_from_basic_set(dom
, 1);
3367 cgbr
->tab
= isl_tab_init_samples(cgbr
->tab
);
3370 check_gbr_integer_feasible(cgbr
);
3372 return &cgbr
->context
;
3374 cgbr
->context
.op
->free(&cgbr
->context
);
3378 static struct isl_context
*isl_context_alloc(struct isl_basic_set
*dom
)
3383 if (dom
->ctx
->opt
->context
== ISL_CONTEXT_LEXMIN
)
3384 return isl_context_lex_alloc(dom
);
3386 return isl_context_gbr_alloc(dom
);
3389 /* Construct an isl_sol_map structure for accumulating the solution.
3390 * If track_empty is set, then we also keep track of the parts
3391 * of the context where there is no solution.
3392 * If max is set, then we are solving a maximization, rather than
3393 * a minimization problem, which means that the variables in the
3394 * tableau have value "M - x" rather than "M + x".
3396 static struct isl_sol
*sol_map_init(struct isl_basic_map
*bmap
,
3397 struct isl_basic_set
*dom
, int track_empty
, int max
)
3399 struct isl_sol_map
*sol_map
= NULL
;
3404 sol_map
= isl_calloc_type(bmap
->ctx
, struct isl_sol_map
);
3408 sol_map
->sol
.rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
3409 sol_map
->sol
.dec_level
.callback
.run
= &sol_dec_level_wrap
;
3410 sol_map
->sol
.dec_level
.sol
= &sol_map
->sol
;
3411 sol_map
->sol
.max
= max
;
3412 sol_map
->sol
.n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
3413 sol_map
->sol
.add
= &sol_map_add_wrap
;
3414 sol_map
->sol
.add_empty
= track_empty
? &sol_map_add_empty_wrap
: NULL
;
3415 sol_map
->sol
.free
= &sol_map_free_wrap
;
3416 sol_map
->map
= isl_map_alloc_space(isl_basic_map_get_space(bmap
), 1,
3421 sol_map
->sol
.context
= isl_context_alloc(dom
);
3422 if (!sol_map
->sol
.context
)
3426 sol_map
->empty
= isl_set_alloc_space(isl_basic_set_get_space(dom
),
3427 1, ISL_SET_DISJOINT
);
3428 if (!sol_map
->empty
)
3432 isl_basic_set_free(dom
);
3433 return &sol_map
->sol
;
3435 isl_basic_set_free(dom
);
3436 sol_map_free(sol_map
);
3440 /* Check whether all coefficients of (non-parameter) variables
3441 * are non-positive, meaning that no pivots can be performed on the row.
3443 static int is_critical(struct isl_tab
*tab
, int row
)
3446 unsigned off
= 2 + tab
->M
;
3448 for (j
= tab
->n_dead
; j
< tab
->n_col
; ++j
) {
3449 if (tab
->col_var
[j
] >= 0 &&
3450 (tab
->col_var
[j
] < tab
->n_param
||
3451 tab
->col_var
[j
] >= tab
->n_var
- tab
->n_div
))
3454 if (isl_int_is_pos(tab
->mat
->row
[row
][off
+ j
]))
3461 /* Check whether the inequality represented by vec is strict over the integers,
3462 * i.e., there are no integer values satisfying the constraint with
3463 * equality. This happens if the gcd of the coefficients is not a divisor
3464 * of the constant term. If so, scale the constraint down by the gcd
3465 * of the coefficients.
3467 static int is_strict(struct isl_vec
*vec
)
3473 isl_seq_gcd(vec
->el
+ 1, vec
->size
- 1, &gcd
);
3474 if (!isl_int_is_one(gcd
)) {
3475 strict
= !isl_int_is_divisible_by(vec
->el
[0], gcd
);
3476 isl_int_fdiv_q(vec
->el
[0], vec
->el
[0], gcd
);
3477 isl_seq_scale_down(vec
->el
+ 1, vec
->el
+ 1, gcd
, vec
->size
-1);
3484 /* Determine the sign of the given row of the main tableau.
3485 * The result is one of
3486 * isl_tab_row_pos: always non-negative; no pivot needed
3487 * isl_tab_row_neg: always non-positive; pivot
3488 * isl_tab_row_any: can be both positive and negative; split
3490 * We first handle some simple cases
3491 * - the row sign may be known already
3492 * - the row may be obviously non-negative
3493 * - the parametric constant may be equal to that of another row
3494 * for which we know the sign. This sign will be either "pos" or
3495 * "any". If it had been "neg" then we would have pivoted before.
3497 * If none of these cases hold, we check the value of the row for each
3498 * of the currently active samples. Based on the signs of these values
3499 * we make an initial determination of the sign of the row.
3501 * all zero -> unk(nown)
3502 * all non-negative -> pos
3503 * all non-positive -> neg
3504 * both negative and positive -> all
3506 * If we end up with "all", we are done.
3507 * Otherwise, we perform a check for positive and/or negative
3508 * values as follows.
3510 * samples neg unk pos
3516 * There is no special sign for "zero", because we can usually treat zero
3517 * as either non-negative or non-positive, whatever works out best.
3518 * However, if the row is "critical", meaning that pivoting is impossible
3519 * then we don't want to limp zero with the non-positive case, because
3520 * then we we would lose the solution for those values of the parameters
3521 * where the value of the row is zero. Instead, we treat 0 as non-negative
3522 * ensuring a split if the row can attain both zero and negative values.
3523 * The same happens when the original constraint was one that could not
3524 * be satisfied with equality by any integer values of the parameters.
3525 * In this case, we normalize the constraint, but then a value of zero
3526 * for the normalized constraint is actually a positive value for the
3527 * original constraint, so again we need to treat zero as non-negative.
3528 * In both these cases, we have the following decision tree instead:
3530 * all non-negative -> pos
3531 * all negative -> neg
3532 * both negative and non-negative -> all
3540 static enum isl_tab_row_sign
row_sign(struct isl_tab
*tab
,
3541 struct isl_sol
*sol
, int row
)
3543 struct isl_vec
*ineq
= NULL
;
3544 enum isl_tab_row_sign res
= isl_tab_row_unknown
;
3549 if (tab
->row_sign
[row
] != isl_tab_row_unknown
)
3550 return tab
->row_sign
[row
];
3551 if (is_obviously_nonneg(tab
, row
))
3552 return isl_tab_row_pos
;
3553 for (row2
= tab
->n_redundant
; row2
< tab
->n_row
; ++row2
) {
3554 if (tab
->row_sign
[row2
] == isl_tab_row_unknown
)
3556 if (identical_parameter_line(tab
, row
, row2
))
3557 return tab
->row_sign
[row2
];
3560 critical
= is_critical(tab
, row
);
3562 ineq
= get_row_parameter_ineq(tab
, row
);
3566 strict
= is_strict(ineq
);
3568 res
= sol
->context
->op
->ineq_sign(sol
->context
, ineq
->el
,
3569 critical
|| strict
);
3571 if (res
== isl_tab_row_unknown
|| res
== isl_tab_row_pos
) {
3572 /* test for negative values */
3574 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3575 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3577 feasible
= sol
->context
->op
->test_ineq(sol
->context
, ineq
->el
);
3581 res
= isl_tab_row_pos
;
3583 res
= (res
== isl_tab_row_unknown
) ? isl_tab_row_neg
3585 if (res
== isl_tab_row_neg
) {
3586 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3587 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3591 if (res
== isl_tab_row_neg
) {
3592 /* test for positive values */
3594 if (!critical
&& !strict
)
3595 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3597 feasible
= sol
->context
->op
->test_ineq(sol
->context
, ineq
->el
);
3601 res
= isl_tab_row_any
;
3608 return isl_tab_row_unknown
;
3611 static void find_solutions(struct isl_sol
*sol
, struct isl_tab
*tab
);
3613 /* Find solutions for values of the parameters that satisfy the given
3616 * We currently take a snapshot of the context tableau that is reset
3617 * when we return from this function, while we make a copy of the main
3618 * tableau, leaving the original main tableau untouched.
3619 * These are fairly arbitrary choices. Making a copy also of the context
3620 * tableau would obviate the need to undo any changes made to it later,
3621 * while taking a snapshot of the main tableau could reduce memory usage.
3622 * If we were to switch to taking a snapshot of the main tableau,
3623 * we would have to keep in mind that we need to save the row signs
3624 * and that we need to do this before saving the current basis
3625 * such that the basis has been restore before we restore the row signs.
3627 static void find_in_pos(struct isl_sol
*sol
, struct isl_tab
*tab
, isl_int
*ineq
)
3633 saved
= sol
->context
->op
->save(sol
->context
);
3635 tab
= isl_tab_dup(tab
);
3639 sol
->context
->op
->add_ineq(sol
->context
, ineq
, 0, 1);
3641 find_solutions(sol
, tab
);
3644 sol
->context
->op
->restore(sol
->context
, saved
);
3646 sol
->context
->op
->discard(saved
);
3652 /* Record the absence of solutions for those values of the parameters
3653 * that do not satisfy the given inequality with equality.
3655 static void no_sol_in_strict(struct isl_sol
*sol
,
3656 struct isl_tab
*tab
, struct isl_vec
*ineq
)
3661 if (!sol
->context
|| sol
->error
)
3663 saved
= sol
->context
->op
->save(sol
->context
);
3665 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3667 sol
->context
->op
->add_ineq(sol
->context
, ineq
->el
, 1, 0);
3676 isl_int_add_ui(ineq
->el
[0], ineq
->el
[0], 1);
3678 sol
->context
->op
->restore(sol
->context
, saved
);
3684 /* Compute the lexicographic minimum of the set represented by the main
3685 * tableau "tab" within the context "sol->context_tab".
3686 * On entry the sample value of the main tableau is lexicographically
3687 * less than or equal to this lexicographic minimum.
3688 * Pivots are performed until a feasible point is found, which is then
3689 * necessarily equal to the minimum, or until the tableau is found to
3690 * be infeasible. Some pivots may need to be performed for only some
3691 * feasible values of the context tableau. If so, the context tableau
3692 * is split into a part where the pivot is needed and a part where it is not.
3694 * Whenever we enter the main loop, the main tableau is such that no
3695 * "obvious" pivots need to be performed on it, where "obvious" means
3696 * that the given row can be seen to be negative without looking at
3697 * the context tableau. In particular, for non-parametric problems,
3698 * no pivots need to be performed on the main tableau.
3699 * The caller of find_solutions is responsible for making this property
3700 * hold prior to the first iteration of the loop, while restore_lexmin
3701 * is called before every other iteration.
3703 * Inside the main loop, we first examine the signs of the rows of
3704 * the main tableau within the context of the context tableau.
3705 * If we find a row that is always non-positive for all values of
3706 * the parameters satisfying the context tableau and negative for at
3707 * least one value of the parameters, we perform the appropriate pivot
3708 * and start over. An exception is the case where no pivot can be
3709 * performed on the row. In this case, we require that the sign of
3710 * the row is negative for all values of the parameters (rather than just
3711 * non-positive). This special case is handled inside row_sign, which
3712 * will say that the row can have any sign if it determines that it can
3713 * attain both negative and zero values.
3715 * If we can't find a row that always requires a pivot, but we can find
3716 * one or more rows that require a pivot for some values of the parameters
3717 * (i.e., the row can attain both positive and negative signs), then we split
3718 * the context tableau into two parts, one where we force the sign to be
3719 * non-negative and one where we force is to be negative.
3720 * The non-negative part is handled by a recursive call (through find_in_pos).
3721 * Upon returning from this call, we continue with the negative part and
3722 * perform the required pivot.
3724 * If no such rows can be found, all rows are non-negative and we have
3725 * found a (rational) feasible point. If we only wanted a rational point
3727 * Otherwise, we check if all values of the sample point of the tableau
3728 * are integral for the variables. If so, we have found the minimal
3729 * integral point and we are done.
3730 * If the sample point is not integral, then we need to make a distinction
3731 * based on whether the constant term is non-integral or the coefficients
3732 * of the parameters. Furthermore, in order to decide how to handle
3733 * the non-integrality, we also need to know whether the coefficients
3734 * of the other columns in the tableau are integral. This leads
3735 * to the following table. The first two rows do not correspond
3736 * to a non-integral sample point and are only mentioned for completeness.
3738 * constant parameters other
3741 * int int rat | -> no problem
3743 * rat int int -> fail
3745 * rat int rat -> cut
3748 * rat rat rat | -> parametric cut
3751 * rat rat int | -> split context
3753 * If the parametric constant is completely integral, then there is nothing
3754 * to be done. If the constant term is non-integral, but all the other
3755 * coefficient are integral, then there is nothing that can be done
3756 * and the tableau has no integral solution.
3757 * If, on the other hand, one or more of the other columns have rational
3758 * coefficients, but the parameter coefficients are all integral, then
3759 * we can perform a regular (non-parametric) cut.
3760 * Finally, if there is any parameter coefficient that is non-integral,
3761 * then we need to involve the context tableau. There are two cases here.
3762 * If at least one other column has a rational coefficient, then we
3763 * can perform a parametric cut in the main tableau by adding a new
3764 * integer division in the context tableau.
3765 * If all other columns have integral coefficients, then we need to
3766 * enforce that the rational combination of parameters (c + \sum a_i y_i)/m
3767 * is always integral. We do this by introducing an integer division
3768 * q = floor((c + \sum a_i y_i)/m) and stipulating that its argument should
3769 * always be integral in the context tableau, i.e., m q = c + \sum a_i y_i.
3770 * Since q is expressed in the tableau as
3771 * c + \sum a_i y_i - m q >= 0
3772 * -c - \sum a_i y_i + m q + m - 1 >= 0
3773 * it is sufficient to add the inequality
3774 * -c - \sum a_i y_i + m q >= 0
3775 * In the part of the context where this inequality does not hold, the
3776 * main tableau is marked as being empty.
3778 static void find_solutions(struct isl_sol
*sol
, struct isl_tab
*tab
)
3780 struct isl_context
*context
;
3783 if (!tab
|| sol
->error
)
3786 context
= sol
->context
;
3790 if (context
->op
->is_empty(context
))
3793 for (r
= 0; r
>= 0 && tab
&& !tab
->empty
; r
= restore_lexmin(tab
)) {
3796 enum isl_tab_row_sign sgn
;
3800 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3801 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
3803 sgn
= row_sign(tab
, sol
, row
);
3806 tab
->row_sign
[row
] = sgn
;
3807 if (sgn
== isl_tab_row_any
)
3809 if (sgn
== isl_tab_row_any
&& split
== -1)
3811 if (sgn
== isl_tab_row_neg
)
3814 if (row
< tab
->n_row
)
3817 struct isl_vec
*ineq
;
3819 split
= context
->op
->best_split(context
, tab
);
3822 ineq
= get_row_parameter_ineq(tab
, split
);
3826 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3827 if (!isl_tab_var_from_row(tab
, row
)->is_nonneg
)
3829 if (tab
->row_sign
[row
] == isl_tab_row_any
)
3830 tab
->row_sign
[row
] = isl_tab_row_unknown
;
3832 tab
->row_sign
[split
] = isl_tab_row_pos
;
3834 find_in_pos(sol
, tab
, ineq
->el
);
3835 tab
->row_sign
[split
] = isl_tab_row_neg
;
3837 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3838 isl_int_sub_ui(ineq
->el
[0], ineq
->el
[0], 1);
3840 context
->op
->add_ineq(context
, ineq
->el
, 0, 1);
3848 row
= first_non_integer_row(tab
, &flags
);
3851 if (ISL_FL_ISSET(flags
, I_PAR
)) {
3852 if (ISL_FL_ISSET(flags
, I_VAR
)) {
3853 if (isl_tab_mark_empty(tab
) < 0)
3857 row
= add_cut(tab
, row
);
3858 } else if (ISL_FL_ISSET(flags
, I_VAR
)) {
3859 struct isl_vec
*div
;
3860 struct isl_vec
*ineq
;
3862 div
= get_row_split_div(tab
, row
);
3865 d
= context
->op
->get_div(context
, tab
, div
);
3869 ineq
= ineq_for_div(context
->op
->peek_basic_set(context
), d
);
3873 no_sol_in_strict(sol
, tab
, ineq
);
3874 isl_seq_neg(ineq
->el
, ineq
->el
, ineq
->size
);
3875 context
->op
->add_ineq(context
, ineq
->el
, 1, 1);
3877 if (sol
->error
|| !context
->op
->is_ok(context
))
3879 tab
= set_row_cst_to_div(tab
, row
, d
);
3880 if (context
->op
->is_empty(context
))
3883 row
= add_parametric_cut(tab
, row
, context
);
3898 /* Does "sol" contain a pair of partial solutions that could potentially
3901 * We currently only check that "sol" is not in an error state
3902 * and that there are at least two partial solutions of which the final two
3903 * are defined at the same level.
3905 static int sol_has_mergeable_solutions(struct isl_sol
*sol
)
3911 if (!sol
->partial
->next
)
3913 return sol
->partial
->level
== sol
->partial
->next
->level
;
3916 /* Compute the lexicographic minimum of the set represented by the main
3917 * tableau "tab" within the context "sol->context_tab".
3919 * As a preprocessing step, we first transfer all the purely parametric
3920 * equalities from the main tableau to the context tableau, i.e.,
3921 * parameters that have been pivoted to a row.
3922 * These equalities are ignored by the main algorithm, because the
3923 * corresponding rows may not be marked as being non-negative.
3924 * In parts of the context where the added equality does not hold,
3925 * the main tableau is marked as being empty.
3927 * Before we embark on the actual computation, we save a copy
3928 * of the context. When we return, we check if there are any
3929 * partial solutions that can potentially be merged. If so,
3930 * we perform a rollback to the initial state of the context.
3931 * The merging of partial solutions happens inside calls to
3932 * sol_dec_level that are pushed onto the undo stack of the context.
3933 * If there are no partial solutions that can potentially be merged
3934 * then the rollback is skipped as it would just be wasted effort.
3936 static void find_solutions_main(struct isl_sol
*sol
, struct isl_tab
*tab
)
3946 for (row
= tab
->n_redundant
; row
< tab
->n_row
; ++row
) {
3950 if (tab
->row_var
[row
] < 0)
3952 if (tab
->row_var
[row
] >= tab
->n_param
&&
3953 tab
->row_var
[row
] < tab
->n_var
- tab
->n_div
)
3955 if (tab
->row_var
[row
] < tab
->n_param
)
3956 p
= tab
->row_var
[row
];
3958 p
= tab
->row_var
[row
]
3959 + tab
->n_param
- (tab
->n_var
- tab
->n_div
);
3961 eq
= isl_vec_alloc(tab
->mat
->ctx
, 1+tab
->n_param
+tab
->n_div
);
3964 get_row_parameter_line(tab
, row
, eq
->el
);
3965 isl_int_neg(eq
->el
[1 + p
], tab
->mat
->row
[row
][0]);
3966 eq
= isl_vec_normalize(eq
);
3969 no_sol_in_strict(sol
, tab
, eq
);
3971 isl_seq_neg(eq
->el
, eq
->el
, eq
->size
);
3973 no_sol_in_strict(sol
, tab
, eq
);
3974 isl_seq_neg(eq
->el
, eq
->el
, eq
->size
);
3976 sol
->context
->op
->add_eq(sol
->context
, eq
->el
, 1, 1);
3980 if (isl_tab_mark_redundant(tab
, row
) < 0)
3983 if (sol
->context
->op
->is_empty(sol
->context
))
3986 row
= tab
->n_redundant
- 1;
3989 saved
= sol
->context
->op
->save(sol
->context
);
3991 find_solutions(sol
, tab
);
3993 if (sol_has_mergeable_solutions(sol
))
3994 sol
->context
->op
->restore(sol
->context
, saved
);
3996 sol
->context
->op
->discard(saved
);
4007 /* Check if integer division "div" of "dom" also occurs in "bmap".
4008 * If so, return its position within the divs.
4009 * If not, return -1.
4011 static int find_context_div(struct isl_basic_map
*bmap
,
4012 struct isl_basic_set
*dom
, unsigned div
)
4015 unsigned b_dim
= isl_space_dim(bmap
->dim
, isl_dim_all
);
4016 unsigned d_dim
= isl_space_dim(dom
->dim
, isl_dim_all
);
4018 if (isl_int_is_zero(dom
->div
[div
][0]))
4020 if (isl_seq_first_non_zero(dom
->div
[div
] + 2 + d_dim
, dom
->n_div
) != -1)
4023 for (i
= 0; i
< bmap
->n_div
; ++i
) {
4024 if (isl_int_is_zero(bmap
->div
[i
][0]))
4026 if (isl_seq_first_non_zero(bmap
->div
[i
] + 2 + d_dim
,
4027 (b_dim
- d_dim
) + bmap
->n_div
) != -1)
4029 if (isl_seq_eq(bmap
->div
[i
], dom
->div
[div
], 2 + d_dim
))
4035 /* The correspondence between the variables in the main tableau,
4036 * the context tableau, and the input map and domain is as follows.
4037 * The first n_param and the last n_div variables of the main tableau
4038 * form the variables of the context tableau.
4039 * In the basic map, these n_param variables correspond to the
4040 * parameters and the input dimensions. In the domain, they correspond
4041 * to the parameters and the set dimensions.
4042 * The n_div variables correspond to the integer divisions in the domain.
4043 * To ensure that everything lines up, we may need to copy some of the
4044 * integer divisions of the domain to the map. These have to be placed
4045 * in the same order as those in the context and they have to be placed
4046 * after any other integer divisions that the map may have.
4047 * This function performs the required reordering.
4049 static struct isl_basic_map
*align_context_divs(struct isl_basic_map
*bmap
,
4050 struct isl_basic_set
*dom
)
4056 for (i
= 0; i
< dom
->n_div
; ++i
)
4057 if (find_context_div(bmap
, dom
, i
) != -1)
4059 other
= bmap
->n_div
- common
;
4060 if (dom
->n_div
- common
> 0) {
4061 bmap
= isl_basic_map_extend_space(bmap
, isl_space_copy(bmap
->dim
),
4062 dom
->n_div
- common
, 0, 0);
4066 for (i
= 0; i
< dom
->n_div
; ++i
) {
4067 int pos
= find_context_div(bmap
, dom
, i
);
4069 pos
= isl_basic_map_alloc_div(bmap
);
4072 isl_int_set_si(bmap
->div
[pos
][0], 0);
4074 if (pos
!= other
+ i
)
4075 isl_basic_map_swap_div(bmap
, pos
, other
+ i
);
4079 isl_basic_map_free(bmap
);
4083 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
4084 * some obvious symmetries.
4086 * We make sure the divs in the domain are properly ordered,
4087 * because they will be added one by one in the given order
4088 * during the construction of the solution map.
4090 static struct isl_sol
*basic_map_partial_lexopt_base(
4091 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4092 __isl_give isl_set
**empty
, int max
,
4093 struct isl_sol
*(*init
)(__isl_keep isl_basic_map
*bmap
,
4094 __isl_take isl_basic_set
*dom
, int track_empty
, int max
))
4096 struct isl_tab
*tab
;
4097 struct isl_sol
*sol
= NULL
;
4098 struct isl_context
*context
;
4101 dom
= isl_basic_set_order_divs(dom
);
4102 bmap
= align_context_divs(bmap
, dom
);
4104 sol
= init(bmap
, dom
, !!empty
, max
);
4108 context
= sol
->context
;
4109 if (isl_basic_set_plain_is_empty(context
->op
->peek_basic_set(context
)))
4111 else if (isl_basic_map_plain_is_empty(bmap
)) {
4114 isl_basic_set_copy(context
->op
->peek_basic_set(context
)));
4116 tab
= tab_for_lexmin(bmap
,
4117 context
->op
->peek_basic_set(context
), 1, max
);
4118 tab
= context
->op
->detect_nonnegative_parameters(context
, tab
);
4119 find_solutions_main(sol
, tab
);
4124 isl_basic_map_free(bmap
);
4128 isl_basic_map_free(bmap
);
4132 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
4133 * some obvious symmetries.
4135 * We call basic_map_partial_lexopt_base and extract the results.
4137 static __isl_give isl_map
*basic_map_partial_lexopt_base_map(
4138 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4139 __isl_give isl_set
**empty
, int max
)
4141 isl_map
*result
= NULL
;
4142 struct isl_sol
*sol
;
4143 struct isl_sol_map
*sol_map
;
4145 sol
= basic_map_partial_lexopt_base(bmap
, dom
, empty
, max
,
4149 sol_map
= (struct isl_sol_map
*) sol
;
4151 result
= isl_map_copy(sol_map
->map
);
4153 *empty
= isl_set_copy(sol_map
->empty
);
4154 sol_free(&sol_map
->sol
);
4158 /* Structure used during detection of parallel constraints.
4159 * n_in: number of "input" variables: isl_dim_param + isl_dim_in
4160 * n_out: number of "output" variables: isl_dim_out + isl_dim_div
4161 * val: the coefficients of the output variables
4163 struct isl_constraint_equal_info
{
4164 isl_basic_map
*bmap
;
4170 /* Check whether the coefficients of the output variables
4171 * of the constraint in "entry" are equal to info->val.
4173 static int constraint_equal(const void *entry
, const void *val
)
4175 isl_int
**row
= (isl_int
**)entry
;
4176 const struct isl_constraint_equal_info
*info
= val
;
4178 return isl_seq_eq((*row
) + 1 + info
->n_in
, info
->val
, info
->n_out
);
4181 /* Check whether "bmap" has a pair of constraints that have
4182 * the same coefficients for the output variables.
4183 * Note that the coefficients of the existentially quantified
4184 * variables need to be zero since the existentially quantified
4185 * of the result are usually not the same as those of the input.
4186 * the isl_dim_out and isl_dim_div dimensions.
4187 * If so, return 1 and return the row indices of the two constraints
4188 * in *first and *second.
4190 static int parallel_constraints(__isl_keep isl_basic_map
*bmap
,
4191 int *first
, int *second
)
4194 isl_ctx
*ctx
= isl_basic_map_get_ctx(bmap
);
4195 struct isl_hash_table
*table
= NULL
;
4196 struct isl_hash_table_entry
*entry
;
4197 struct isl_constraint_equal_info info
;
4201 ctx
= isl_basic_map_get_ctx(bmap
);
4202 table
= isl_hash_table_alloc(ctx
, bmap
->n_ineq
);
4206 info
.n_in
= isl_basic_map_dim(bmap
, isl_dim_param
) +
4207 isl_basic_map_dim(bmap
, isl_dim_in
);
4209 n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4210 n_div
= isl_basic_map_dim(bmap
, isl_dim_div
);
4211 info
.n_out
= n_out
+ n_div
;
4212 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
4215 info
.val
= bmap
->ineq
[i
] + 1 + info
.n_in
;
4216 if (isl_seq_first_non_zero(info
.val
, n_out
) < 0)
4218 if (isl_seq_first_non_zero(info
.val
+ n_out
, n_div
) >= 0)
4220 hash
= isl_seq_get_hash(info
.val
, info
.n_out
);
4221 entry
= isl_hash_table_find(ctx
, table
, hash
,
4222 constraint_equal
, &info
, 1);
4227 entry
->data
= &bmap
->ineq
[i
];
4230 if (i
< bmap
->n_ineq
) {
4231 *first
= ((isl_int
**)entry
->data
) - bmap
->ineq
;
4235 isl_hash_table_free(ctx
, table
);
4237 return i
< bmap
->n_ineq
;
4239 isl_hash_table_free(ctx
, table
);
4243 /* Given a set of upper bounds in "var", add constraints to "bset"
4244 * that make the i-th bound smallest.
4246 * In particular, if there are n bounds b_i, then add the constraints
4248 * b_i <= b_j for j > i
4249 * b_i < b_j for j < i
4251 static __isl_give isl_basic_set
*select_minimum(__isl_take isl_basic_set
*bset
,
4252 __isl_keep isl_mat
*var
, int i
)
4257 ctx
= isl_mat_get_ctx(var
);
4259 for (j
= 0; j
< var
->n_row
; ++j
) {
4262 k
= isl_basic_set_alloc_inequality(bset
);
4265 isl_seq_combine(bset
->ineq
[k
], ctx
->one
, var
->row
[j
],
4266 ctx
->negone
, var
->row
[i
], var
->n_col
);
4267 isl_int_set_si(bset
->ineq
[k
][var
->n_col
], 0);
4269 isl_int_sub_ui(bset
->ineq
[k
][0], bset
->ineq
[k
][0], 1);
4272 bset
= isl_basic_set_finalize(bset
);
4276 isl_basic_set_free(bset
);
4280 /* Given a set of upper bounds on the last "input" variable m,
4281 * construct a set that assigns the minimal upper bound to m, i.e.,
4282 * construct a set that divides the space into cells where one
4283 * of the upper bounds is smaller than all the others and assign
4284 * this upper bound to m.
4286 * In particular, if there are n bounds b_i, then the result
4287 * consists of n basic sets, each one of the form
4290 * b_i <= b_j for j > i
4291 * b_i < b_j for j < i
4293 static __isl_give isl_set
*set_minimum(__isl_take isl_space
*dim
,
4294 __isl_take isl_mat
*var
)
4297 isl_basic_set
*bset
= NULL
;
4299 isl_set
*set
= NULL
;
4304 ctx
= isl_space_get_ctx(dim
);
4305 set
= isl_set_alloc_space(isl_space_copy(dim
),
4306 var
->n_row
, ISL_SET_DISJOINT
);
4308 for (i
= 0; i
< var
->n_row
; ++i
) {
4309 bset
= isl_basic_set_alloc_space(isl_space_copy(dim
), 0,
4311 k
= isl_basic_set_alloc_equality(bset
);
4314 isl_seq_cpy(bset
->eq
[k
], var
->row
[i
], var
->n_col
);
4315 isl_int_set_si(bset
->eq
[k
][var
->n_col
], -1);
4316 bset
= select_minimum(bset
, var
, i
);
4317 set
= isl_set_add_basic_set(set
, bset
);
4320 isl_space_free(dim
);
4324 isl_basic_set_free(bset
);
4326 isl_space_free(dim
);
4331 /* Given that the last input variable of "bmap" represents the minimum
4332 * of the bounds in "cst", check whether we need to split the domain
4333 * based on which bound attains the minimum.
4335 * A split is needed when the minimum appears in an integer division
4336 * or in an equality. Otherwise, it is only needed if it appears in
4337 * an upper bound that is different from the upper bounds on which it
4340 static int need_split_basic_map(__isl_keep isl_basic_map
*bmap
,
4341 __isl_keep isl_mat
*cst
)
4347 pos
= cst
->n_col
- 1;
4348 total
= isl_basic_map_dim(bmap
, isl_dim_all
);
4350 for (i
= 0; i
< bmap
->n_div
; ++i
)
4351 if (!isl_int_is_zero(bmap
->div
[i
][2 + pos
]))
4354 for (i
= 0; i
< bmap
->n_eq
; ++i
)
4355 if (!isl_int_is_zero(bmap
->eq
[i
][1 + pos
]))
4358 for (i
= 0; i
< bmap
->n_ineq
; ++i
) {
4359 if (isl_int_is_nonneg(bmap
->ineq
[i
][1 + pos
]))
4361 if (!isl_int_is_negone(bmap
->ineq
[i
][1 + pos
]))
4363 if (isl_seq_first_non_zero(bmap
->ineq
[i
] + 1 + pos
+ 1,
4364 total
- pos
- 1) >= 0)
4367 for (j
= 0; j
< cst
->n_row
; ++j
)
4368 if (isl_seq_eq(bmap
->ineq
[i
], cst
->row
[j
], cst
->n_col
))
4370 if (j
>= cst
->n_row
)
4377 /* Given that the last set variable of "bset" represents the minimum
4378 * of the bounds in "cst", check whether we need to split the domain
4379 * based on which bound attains the minimum.
4381 * We simply call need_split_basic_map here. This is safe because
4382 * the position of the minimum is computed from "cst" and not
4385 static int need_split_basic_set(__isl_keep isl_basic_set
*bset
,
4386 __isl_keep isl_mat
*cst
)
4388 return need_split_basic_map((isl_basic_map
*)bset
, cst
);
4391 /* Given that the last set variable of "set" represents the minimum
4392 * of the bounds in "cst", check whether we need to split the domain
4393 * based on which bound attains the minimum.
4395 static int need_split_set(__isl_keep isl_set
*set
, __isl_keep isl_mat
*cst
)
4399 for (i
= 0; i
< set
->n
; ++i
)
4400 if (need_split_basic_set(set
->p
[i
], cst
))
4406 /* Given a set of which the last set variable is the minimum
4407 * of the bounds in "cst", split each basic set in the set
4408 * in pieces where one of the bounds is (strictly) smaller than the others.
4409 * This subdivision is given in "min_expr".
4410 * The variable is subsequently projected out.
4412 * We only do the split when it is needed.
4413 * For example if the last input variable m = min(a,b) and the only
4414 * constraints in the given basic set are lower bounds on m,
4415 * i.e., l <= m = min(a,b), then we can simply project out m
4416 * to obtain l <= a and l <= b, without having to split on whether
4417 * m is equal to a or b.
4419 static __isl_give isl_set
*split(__isl_take isl_set
*empty
,
4420 __isl_take isl_set
*min_expr
, __isl_take isl_mat
*cst
)
4427 if (!empty
|| !min_expr
|| !cst
)
4430 n_in
= isl_set_dim(empty
, isl_dim_set
);
4431 dim
= isl_set_get_space(empty
);
4432 dim
= isl_space_drop_dims(dim
, isl_dim_set
, n_in
- 1, 1);
4433 res
= isl_set_empty(dim
);
4435 for (i
= 0; i
< empty
->n
; ++i
) {
4438 set
= isl_set_from_basic_set(isl_basic_set_copy(empty
->p
[i
]));
4439 if (need_split_basic_set(empty
->p
[i
], cst
))
4440 set
= isl_set_intersect(set
, isl_set_copy(min_expr
));
4441 set
= isl_set_remove_dims(set
, isl_dim_set
, n_in
- 1, 1);
4443 res
= isl_set_union_disjoint(res
, set
);
4446 isl_set_free(empty
);
4447 isl_set_free(min_expr
);
4451 isl_set_free(empty
);
4452 isl_set_free(min_expr
);
4457 /* Given a map of which the last input variable is the minimum
4458 * of the bounds in "cst", split each basic set in the set
4459 * in pieces where one of the bounds is (strictly) smaller than the others.
4460 * This subdivision is given in "min_expr".
4461 * The variable is subsequently projected out.
4463 * The implementation is essentially the same as that of "split".
4465 static __isl_give isl_map
*split_domain(__isl_take isl_map
*opt
,
4466 __isl_take isl_set
*min_expr
, __isl_take isl_mat
*cst
)
4473 if (!opt
|| !min_expr
|| !cst
)
4476 n_in
= isl_map_dim(opt
, isl_dim_in
);
4477 dim
= isl_map_get_space(opt
);
4478 dim
= isl_space_drop_dims(dim
, isl_dim_in
, n_in
- 1, 1);
4479 res
= isl_map_empty(dim
);
4481 for (i
= 0; i
< opt
->n
; ++i
) {
4484 map
= isl_map_from_basic_map(isl_basic_map_copy(opt
->p
[i
]));
4485 if (need_split_basic_map(opt
->p
[i
], cst
))
4486 map
= isl_map_intersect_domain(map
,
4487 isl_set_copy(min_expr
));
4488 map
= isl_map_remove_dims(map
, isl_dim_in
, n_in
- 1, 1);
4490 res
= isl_map_union_disjoint(res
, map
);
4494 isl_set_free(min_expr
);
4499 isl_set_free(min_expr
);
4504 static __isl_give isl_map
*basic_map_partial_lexopt(
4505 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4506 __isl_give isl_set
**empty
, int max
);
4511 isl_pw_multi_aff
*pma
;
4514 /* This function is called from basic_map_partial_lexopt_symm.
4515 * The last variable of "bmap" and "dom" corresponds to the minimum
4516 * of the bounds in "cst". "map_space" is the space of the original
4517 * input relation (of basic_map_partial_lexopt_symm) and "set_space"
4518 * is the space of the original domain.
4520 * We recursively call basic_map_partial_lexopt and then plug in
4521 * the definition of the minimum in the result.
4523 static __isl_give
union isl_lex_res
basic_map_partial_lexopt_symm_map_core(
4524 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4525 __isl_give isl_set
**empty
, int max
, __isl_take isl_mat
*cst
,
4526 __isl_take isl_space
*map_space
, __isl_take isl_space
*set_space
)
4530 union isl_lex_res res
;
4532 min_expr
= set_minimum(isl_basic_set_get_space(dom
), isl_mat_copy(cst
));
4534 opt
= basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4537 *empty
= split(*empty
,
4538 isl_set_copy(min_expr
), isl_mat_copy(cst
));
4539 *empty
= isl_set_reset_space(*empty
, set_space
);
4542 opt
= split_domain(opt
, min_expr
, cst
);
4543 opt
= isl_map_reset_space(opt
, map_space
);
4549 /* Given a basic map with at least two parallel constraints (as found
4550 * by the function parallel_constraints), first look for more constraints
4551 * parallel to the two constraint and replace the found list of parallel
4552 * constraints by a single constraint with as "input" part the minimum
4553 * of the input parts of the list of constraints. Then, recursively call
4554 * basic_map_partial_lexopt (possibly finding more parallel constraints)
4555 * and plug in the definition of the minimum in the result.
4557 * More specifically, given a set of constraints
4561 * Replace this set by a single constraint
4565 * with u a new parameter with constraints
4569 * Any solution to the new system is also a solution for the original system
4572 * a x >= -u >= -b_i(p)
4574 * Moreover, m = min_i(b_i(p)) satisfies the constraints on u and can
4575 * therefore be plugged into the solution.
4577 static union isl_lex_res
basic_map_partial_lexopt_symm(
4578 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4579 __isl_give isl_set
**empty
, int max
, int first
, int second
,
4580 __isl_give
union isl_lex_res (*core
)(__isl_take isl_basic_map
*bmap
,
4581 __isl_take isl_basic_set
*dom
,
4582 __isl_give isl_set
**empty
,
4583 int max
, __isl_take isl_mat
*cst
,
4584 __isl_take isl_space
*map_space
,
4585 __isl_take isl_space
*set_space
))
4589 unsigned n_in
, n_out
, n_div
;
4591 isl_vec
*var
= NULL
;
4592 isl_mat
*cst
= NULL
;
4593 isl_space
*map_space
, *set_space
;
4594 union isl_lex_res res
;
4596 map_space
= isl_basic_map_get_space(bmap
);
4597 set_space
= empty
? isl_basic_set_get_space(dom
) : NULL
;
4599 n_in
= isl_basic_map_dim(bmap
, isl_dim_param
) +
4600 isl_basic_map_dim(bmap
, isl_dim_in
);
4601 n_out
= isl_basic_map_dim(bmap
, isl_dim_all
) - n_in
;
4603 ctx
= isl_basic_map_get_ctx(bmap
);
4604 list
= isl_alloc_array(ctx
, int, bmap
->n_ineq
);
4605 var
= isl_vec_alloc(ctx
, n_out
);
4606 if ((bmap
->n_ineq
&& !list
) || (n_out
&& !var
))
4611 isl_seq_cpy(var
->el
, bmap
->ineq
[first
] + 1 + n_in
, n_out
);
4612 for (i
= second
+ 1, n
= 2; i
< bmap
->n_ineq
; ++i
) {
4613 if (isl_seq_eq(var
->el
, bmap
->ineq
[i
] + 1 + n_in
, n_out
))
4617 cst
= isl_mat_alloc(ctx
, n
, 1 + n_in
);
4621 for (i
= 0; i
< n
; ++i
)
4622 isl_seq_cpy(cst
->row
[i
], bmap
->ineq
[list
[i
]], 1 + n_in
);
4624 bmap
= isl_basic_map_cow(bmap
);
4627 for (i
= n
- 1; i
>= 0; --i
)
4628 if (isl_basic_map_drop_inequality(bmap
, list
[i
]) < 0)
4631 bmap
= isl_basic_map_add(bmap
, isl_dim_in
, 1);
4632 bmap
= isl_basic_map_extend_constraints(bmap
, 0, 1);
4633 k
= isl_basic_map_alloc_inequality(bmap
);
4636 isl_seq_clr(bmap
->ineq
[k
], 1 + n_in
);
4637 isl_int_set_si(bmap
->ineq
[k
][1 + n_in
], 1);
4638 isl_seq_cpy(bmap
->ineq
[k
] + 1 + n_in
+ 1, var
->el
, n_out
);
4639 bmap
= isl_basic_map_finalize(bmap
);
4641 n_div
= isl_basic_set_dim(dom
, isl_dim_div
);
4642 dom
= isl_basic_set_add_dims(dom
, isl_dim_set
, 1);
4643 dom
= isl_basic_set_extend_constraints(dom
, 0, n
);
4644 for (i
= 0; i
< n
; ++i
) {
4645 k
= isl_basic_set_alloc_inequality(dom
);
4648 isl_seq_cpy(dom
->ineq
[k
], cst
->row
[i
], 1 + n_in
);
4649 isl_int_set_si(dom
->ineq
[k
][1 + n_in
], -1);
4650 isl_seq_clr(dom
->ineq
[k
] + 1 + n_in
+ 1, n_div
);
4656 return core(bmap
, dom
, empty
, max
, cst
, map_space
, set_space
);
4658 isl_space_free(map_space
);
4659 isl_space_free(set_space
);
4663 isl_basic_set_free(dom
);
4664 isl_basic_map_free(bmap
);
4669 static __isl_give isl_map
*basic_map_partial_lexopt_symm_map(
4670 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4671 __isl_give isl_set
**empty
, int max
, int first
, int second
)
4673 return basic_map_partial_lexopt_symm(bmap
, dom
, empty
, max
,
4674 first
, second
, &basic_map_partial_lexopt_symm_map_core
).map
;
4677 /* Recursive part of isl_tab_basic_map_partial_lexopt, after detecting
4678 * equalities and removing redundant constraints.
4680 * We first check if there are any parallel constraints (left).
4681 * If not, we are in the base case.
4682 * If there are parallel constraints, we replace them by a single
4683 * constraint in basic_map_partial_lexopt_symm and then call
4684 * this function recursively to look for more parallel constraints.
4686 static __isl_give isl_map
*basic_map_partial_lexopt(
4687 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
4688 __isl_give isl_set
**empty
, int max
)
4696 if (bmap
->ctx
->opt
->pip_symmetry
)
4697 par
= parallel_constraints(bmap
, &first
, &second
);
4701 return basic_map_partial_lexopt_base_map(bmap
, dom
, empty
, max
);
4703 return basic_map_partial_lexopt_symm_map(bmap
, dom
, empty
, max
,
4706 isl_basic_set_free(dom
);
4707 isl_basic_map_free(bmap
);
4711 /* Compute the lexicographic minimum (or maximum if "max" is set)
4712 * of "bmap" over the domain "dom" and return the result as a map.
4713 * If "empty" is not NULL, then *empty is assigned a set that
4714 * contains those parts of the domain where there is no solution.
4715 * If "bmap" is marked as rational (ISL_BASIC_MAP_RATIONAL),
4716 * then we compute the rational optimum. Otherwise, we compute
4717 * the integral optimum.
4719 * We perform some preprocessing. As the PILP solver does not
4720 * handle implicit equalities very well, we first make sure all
4721 * the equalities are explicitly available.
4723 * We also add context constraints to the basic map and remove
4724 * redundant constraints. This is only needed because of the
4725 * way we handle simple symmetries. In particular, we currently look
4726 * for symmetries on the constraints, before we set up the main tableau.
4727 * It is then no good to look for symmetries on possibly redundant constraints.
4729 struct isl_map
*isl_tab_basic_map_partial_lexopt(
4730 struct isl_basic_map
*bmap
, struct isl_basic_set
*dom
,
4731 struct isl_set
**empty
, int max
)
4738 isl_assert(bmap
->ctx
,
4739 isl_basic_map_compatible_domain(bmap
, dom
), goto error
);
4741 if (isl_basic_set_dim(dom
, isl_dim_all
) == 0)
4742 return basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4744 bmap
= isl_basic_map_intersect_domain(bmap
, isl_basic_set_copy(dom
));
4745 bmap
= isl_basic_map_detect_equalities(bmap
);
4746 bmap
= isl_basic_map_remove_redundancies(bmap
);
4748 return basic_map_partial_lexopt(bmap
, dom
, empty
, max
);
4750 isl_basic_set_free(dom
);
4751 isl_basic_map_free(bmap
);
4755 struct isl_sol_for
{
4757 int (*fn
)(__isl_take isl_basic_set
*dom
,
4758 __isl_take isl_aff_list
*list
, void *user
);
4762 static void sol_for_free(struct isl_sol_for
*sol_for
)
4766 if (sol_for
->sol
.context
)
4767 sol_for
->sol
.context
->op
->free(sol_for
->sol
.context
);
4771 static void sol_for_free_wrap(struct isl_sol
*sol
)
4773 sol_for_free((struct isl_sol_for
*)sol
);
4776 /* Add the solution identified by the tableau and the context tableau.
4778 * See documentation of sol_add for more details.
4780 * Instead of constructing a basic map, this function calls a user
4781 * defined function with the current context as a basic set and
4782 * a list of affine expressions representing the relation between
4783 * the input and output. The space over which the affine expressions
4784 * are defined is the same as that of the domain. The number of
4785 * affine expressions in the list is equal to the number of output variables.
4787 static void sol_for_add(struct isl_sol_for
*sol
,
4788 struct isl_basic_set
*dom
, struct isl_mat
*M
)
4792 isl_local_space
*ls
;
4796 if (sol
->sol
.error
|| !dom
|| !M
)
4799 ctx
= isl_basic_set_get_ctx(dom
);
4800 ls
= isl_basic_set_get_local_space(dom
);
4801 list
= isl_aff_list_alloc(ctx
, M
->n_row
- 1);
4802 for (i
= 1; i
< M
->n_row
; ++i
) {
4803 aff
= isl_aff_alloc(isl_local_space_copy(ls
));
4805 isl_int_set(aff
->v
->el
[0], M
->row
[0][0]);
4806 isl_seq_cpy(aff
->v
->el
+ 1, M
->row
[i
], M
->n_col
);
4808 aff
= isl_aff_normalize(aff
);
4809 list
= isl_aff_list_add(list
, aff
);
4811 isl_local_space_free(ls
);
4813 dom
= isl_basic_set_finalize(dom
);
4815 if (sol
->fn(isl_basic_set_copy(dom
), list
, sol
->user
) < 0)
4818 isl_basic_set_free(dom
);
4822 isl_basic_set_free(dom
);
4827 static void sol_for_add_wrap(struct isl_sol
*sol
,
4828 struct isl_basic_set
*dom
, struct isl_mat
*M
)
4830 sol_for_add((struct isl_sol_for
*)sol
, dom
, M
);
4833 static struct isl_sol_for
*sol_for_init(struct isl_basic_map
*bmap
, int max
,
4834 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_aff_list
*list
,
4838 struct isl_sol_for
*sol_for
= NULL
;
4840 struct isl_basic_set
*dom
= NULL
;
4842 sol_for
= isl_calloc_type(bmap
->ctx
, struct isl_sol_for
);
4846 dom_dim
= isl_space_domain(isl_space_copy(bmap
->dim
));
4847 dom
= isl_basic_set_universe(dom_dim
);
4849 sol_for
->sol
.rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
4850 sol_for
->sol
.dec_level
.callback
.run
= &sol_dec_level_wrap
;
4851 sol_for
->sol
.dec_level
.sol
= &sol_for
->sol
;
4853 sol_for
->user
= user
;
4854 sol_for
->sol
.max
= max
;
4855 sol_for
->sol
.n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
4856 sol_for
->sol
.add
= &sol_for_add_wrap
;
4857 sol_for
->sol
.add_empty
= NULL
;
4858 sol_for
->sol
.free
= &sol_for_free_wrap
;
4860 sol_for
->sol
.context
= isl_context_alloc(dom
);
4861 if (!sol_for
->sol
.context
)
4864 isl_basic_set_free(dom
);
4867 isl_basic_set_free(dom
);
4868 sol_for_free(sol_for
);
4872 static void sol_for_find_solutions(struct isl_sol_for
*sol_for
,
4873 struct isl_tab
*tab
)
4875 find_solutions_main(&sol_for
->sol
, tab
);
4878 int isl_basic_map_foreach_lexopt(__isl_keep isl_basic_map
*bmap
, int max
,
4879 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_aff_list
*list
,
4883 struct isl_sol_for
*sol_for
= NULL
;
4885 bmap
= isl_basic_map_copy(bmap
);
4886 bmap
= isl_basic_map_detect_equalities(bmap
);
4890 sol_for
= sol_for_init(bmap
, max
, fn
, user
);
4894 if (isl_basic_map_plain_is_empty(bmap
))
4897 struct isl_tab
*tab
;
4898 struct isl_context
*context
= sol_for
->sol
.context
;
4899 tab
= tab_for_lexmin(bmap
,
4900 context
->op
->peek_basic_set(context
), 1, max
);
4901 tab
= context
->op
->detect_nonnegative_parameters(context
, tab
);
4902 sol_for_find_solutions(sol_for
, tab
);
4903 if (sol_for
->sol
.error
)
4907 sol_free(&sol_for
->sol
);
4908 isl_basic_map_free(bmap
);
4911 sol_free(&sol_for
->sol
);
4912 isl_basic_map_free(bmap
);
4916 int isl_basic_set_foreach_lexopt(__isl_keep isl_basic_set
*bset
, int max
,
4917 int (*fn
)(__isl_take isl_basic_set
*dom
, __isl_take isl_aff_list
*list
,
4921 return isl_basic_map_foreach_lexopt(bset
, max
, fn
, user
);
4924 /* Check if the given sequence of len variables starting at pos
4925 * represents a trivial (i.e., zero) solution.
4926 * The variables are assumed to be non-negative and to come in pairs,
4927 * with each pair representing a variable of unrestricted sign.
4928 * The solution is trivial if each such pair in the sequence consists
4929 * of two identical values, meaning that the variable being represented
4932 static int region_is_trivial(struct isl_tab
*tab
, int pos
, int len
)
4939 for (i
= 0; i
< len
; i
+= 2) {
4943 neg_row
= tab
->var
[pos
+ i
].is_row
?
4944 tab
->var
[pos
+ i
].index
: -1;
4945 pos_row
= tab
->var
[pos
+ i
+ 1].is_row
?
4946 tab
->var
[pos
+ i
+ 1].index
: -1;
4949 isl_int_is_zero(tab
->mat
->row
[neg_row
][1])) &&
4951 isl_int_is_zero(tab
->mat
->row
[pos_row
][1])))
4954 if (neg_row
< 0 || pos_row
< 0)
4956 if (isl_int_ne(tab
->mat
->row
[neg_row
][1],
4957 tab
->mat
->row
[pos_row
][1]))
4964 /* Return the index of the first trivial region or -1 if all regions
4967 static int first_trivial_region(struct isl_tab
*tab
,
4968 int n_region
, struct isl_region
*region
)
4972 for (i
= 0; i
< n_region
; ++i
) {
4973 if (region_is_trivial(tab
, region
[i
].pos
, region
[i
].len
))
4980 /* Check if the solution is optimal, i.e., whether the first
4981 * n_op entries are zero.
4983 static int is_optimal(__isl_keep isl_vec
*sol
, int n_op
)
4987 for (i
= 0; i
< n_op
; ++i
)
4988 if (!isl_int_is_zero(sol
->el
[1 + i
]))
4993 /* Add constraints to "tab" that ensure that any solution is significantly
4994 * better that that represented by "sol". That is, find the first
4995 * relevant (within first n_op) non-zero coefficient and force it (along
4996 * with all previous coefficients) to be zero.
4997 * If the solution is already optimal (all relevant coefficients are zero),
4998 * then just mark the table as empty.
5000 static int force_better_solution(struct isl_tab
*tab
,
5001 __isl_keep isl_vec
*sol
, int n_op
)
5010 for (i
= 0; i
< n_op
; ++i
)
5011 if (!isl_int_is_zero(sol
->el
[1 + i
]))
5015 if (isl_tab_mark_empty(tab
) < 0)
5020 ctx
= isl_vec_get_ctx(sol
);
5021 v
= isl_vec_alloc(ctx
, 1 + tab
->n_var
);
5025 for (; i
>= 0; --i
) {
5027 isl_int_set_si(v
->el
[1 + i
], -1);
5028 if (add_lexmin_eq(tab
, v
->el
) < 0)
5039 struct isl_trivial
{
5043 struct isl_tab_undo
*snap
;
5046 /* Return the lexicographically smallest non-trivial solution of the
5047 * given ILP problem.
5049 * All variables are assumed to be non-negative.
5051 * n_op is the number of initial coordinates to optimize.
5052 * That is, once a solution has been found, we will only continue looking
5053 * for solution that result in significantly better values for those
5054 * initial coordinates. That is, we only continue looking for solutions
5055 * that increase the number of initial zeros in this sequence.
5057 * A solution is non-trivial, if it is non-trivial on each of the
5058 * specified regions. Each region represents a sequence of pairs
5059 * of variables. A solution is non-trivial on such a region if
5060 * at least one of these pairs consists of different values, i.e.,
5061 * such that the non-negative variable represented by the pair is non-zero.
5063 * Whenever a conflict is encountered, all constraints involved are
5064 * reported to the caller through a call to "conflict".
5066 * We perform a simple branch-and-bound backtracking search.
5067 * Each level in the search represents initially trivial region that is forced
5068 * to be non-trivial.
5069 * At each level we consider n cases, where n is the length of the region.
5070 * In terms of the n/2 variables of unrestricted signs being encoded by
5071 * the region, we consider the cases
5074 * x_0 = 0 and x_1 >= 1
5075 * x_0 = 0 and x_1 <= -1
5076 * x_0 = 0 and x_1 = 0 and x_2 >= 1
5077 * x_0 = 0 and x_1 = 0 and x_2 <= -1
5079 * The cases are considered in this order, assuming that each pair
5080 * x_i_a x_i_b represents the value x_i_b - x_i_a.
5081 * That is, x_0 >= 1 is enforced by adding the constraint
5082 * x_0_b - x_0_a >= 1
5084 __isl_give isl_vec
*isl_tab_basic_set_non_trivial_lexmin(
5085 __isl_take isl_basic_set
*bset
, int n_op
, int n_region
,
5086 struct isl_region
*region
,
5087 int (*conflict
)(int con
, void *user
), void *user
)
5093 isl_vec
*sol
= NULL
;
5094 struct isl_tab
*tab
;
5095 struct isl_trivial
*triv
= NULL
;
5101 ctx
= isl_basic_set_get_ctx(bset
);
5102 sol
= isl_vec_alloc(ctx
, 0);
5104 tab
= tab_for_lexmin(bset
, NULL
, 0, 0);
5107 tab
->conflict
= conflict
;
5108 tab
->conflict_user
= user
;
5110 v
= isl_vec_alloc(ctx
, 1 + tab
->n_var
);
5111 triv
= isl_calloc_array(ctx
, struct isl_trivial
, n_region
);
5112 if (!v
|| (n_region
&& !triv
))
5118 while (level
>= 0) {
5122 tab
= cut_to_integer_lexmin(tab
, CUT_ONE
);
5127 r
= first_trivial_region(tab
, n_region
, region
);
5129 for (i
= 0; i
< level
; ++i
)
5132 sol
= isl_tab_get_sample_value(tab
);
5135 if (is_optimal(sol
, n_op
))
5139 if (level
>= n_region
)
5140 isl_die(ctx
, isl_error_internal
,
5141 "nesting level too deep", goto error
);
5142 if (isl_tab_extend_cons(tab
,
5143 2 * region
[r
].len
+ 2 * n_op
) < 0)
5145 triv
[level
].region
= r
;
5146 triv
[level
].side
= 0;
5149 r
= triv
[level
].region
;
5150 side
= triv
[level
].side
;
5151 base
= 2 * (side
/2);
5153 if (side
>= region
[r
].len
) {
5158 if (isl_tab_rollback(tab
, triv
[level
].snap
) < 0)
5163 if (triv
[level
].update
) {
5164 if (force_better_solution(tab
, sol
, n_op
) < 0)
5166 triv
[level
].update
= 0;
5169 if (side
== base
&& base
>= 2) {
5170 for (j
= base
- 2; j
< base
; ++j
) {
5172 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ j
], 1);
5173 if (add_lexmin_eq(tab
, v
->el
) < 0)
5178 triv
[level
].snap
= isl_tab_snap(tab
);
5179 if (isl_tab_push_basis(tab
) < 0)
5183 isl_int_set_si(v
->el
[0], -1);
5184 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ side
], -1);
5185 isl_int_set_si(v
->el
[1 + region
[r
].pos
+ (side
^ 1)], 1);
5186 tab
= add_lexmin_ineq(tab
, v
->el
);
5196 isl_basic_set_free(bset
);
5203 isl_basic_set_free(bset
);
5208 /* Return the lexicographically smallest rational point in "bset",
5209 * assuming that all variables are non-negative.
5210 * If "bset" is empty, then return a zero-length vector.
5212 __isl_give isl_vec
*isl_tab_basic_set_non_neg_lexmin(
5213 __isl_take isl_basic_set
*bset
)
5215 struct isl_tab
*tab
;
5216 isl_ctx
*ctx
= isl_basic_set_get_ctx(bset
);
5222 tab
= tab_for_lexmin(bset
, NULL
, 0, 0);
5226 sol
= isl_vec_alloc(ctx
, 0);
5228 sol
= isl_tab_get_sample_value(tab
);
5230 isl_basic_set_free(bset
);
5234 isl_basic_set_free(bset
);
5238 struct isl_sol_pma
{
5240 isl_pw_multi_aff
*pma
;
5244 static void sol_pma_free(struct isl_sol_pma
*sol_pma
)
5248 if (sol_pma
->sol
.context
)
5249 sol_pma
->sol
.context
->op
->free(sol_pma
->sol
.context
);
5250 isl_pw_multi_aff_free(sol_pma
->pma
);
5251 isl_set_free(sol_pma
->empty
);
5255 /* This function is called for parts of the context where there is
5256 * no solution, with "bset" corresponding to the context tableau.
5257 * Simply add the basic set to the set "empty".
5259 static void sol_pma_add_empty(struct isl_sol_pma
*sol
,
5260 __isl_take isl_basic_set
*bset
)
5264 isl_assert(bset
->ctx
, sol
->empty
, goto error
);
5266 sol
->empty
= isl_set_grow(sol
->empty
, 1);
5267 bset
= isl_basic_set_simplify(bset
);
5268 bset
= isl_basic_set_finalize(bset
);
5269 sol
->empty
= isl_set_add_basic_set(sol
->empty
, bset
);
5274 isl_basic_set_free(bset
);
5278 /* Given a basic map "dom" that represents the context and an affine
5279 * matrix "M" that maps the dimensions of the context to the
5280 * output variables, construct an isl_pw_multi_aff with a single
5281 * cell corresponding to "dom" and affine expressions copied from "M".
5283 static void sol_pma_add(struct isl_sol_pma
*sol
,
5284 __isl_take isl_basic_set
*dom
, __isl_take isl_mat
*M
)
5287 isl_local_space
*ls
;
5289 isl_multi_aff
*maff
;
5290 isl_pw_multi_aff
*pma
;
5292 maff
= isl_multi_aff_alloc(isl_pw_multi_aff_get_space(sol
->pma
));
5293 ls
= isl_basic_set_get_local_space(dom
);
5294 for (i
= 1; i
< M
->n_row
; ++i
) {
5295 aff
= isl_aff_alloc(isl_local_space_copy(ls
));
5297 isl_int_set(aff
->v
->el
[0], M
->row
[0][0]);
5298 isl_seq_cpy(aff
->v
->el
+ 1, M
->row
[i
], M
->n_col
);
5300 aff
= isl_aff_normalize(aff
);
5301 maff
= isl_multi_aff_set_aff(maff
, i
- 1, aff
);
5303 isl_local_space_free(ls
);
5305 dom
= isl_basic_set_simplify(dom
);
5306 dom
= isl_basic_set_finalize(dom
);
5307 pma
= isl_pw_multi_aff_alloc(isl_set_from_basic_set(dom
), maff
);
5308 sol
->pma
= isl_pw_multi_aff_add_disjoint(sol
->pma
, pma
);
5313 static void sol_pma_free_wrap(struct isl_sol
*sol
)
5315 sol_pma_free((struct isl_sol_pma
*)sol
);
5318 static void sol_pma_add_empty_wrap(struct isl_sol
*sol
,
5319 __isl_take isl_basic_set
*bset
)
5321 sol_pma_add_empty((struct isl_sol_pma
*)sol
, bset
);
5324 static void sol_pma_add_wrap(struct isl_sol
*sol
,
5325 __isl_take isl_basic_set
*dom
, __isl_take isl_mat
*M
)
5327 sol_pma_add((struct isl_sol_pma
*)sol
, dom
, M
);
5330 /* Construct an isl_sol_pma structure for accumulating the solution.
5331 * If track_empty is set, then we also keep track of the parts
5332 * of the context where there is no solution.
5333 * If max is set, then we are solving a maximization, rather than
5334 * a minimization problem, which means that the variables in the
5335 * tableau have value "M - x" rather than "M + x".
5337 static struct isl_sol
*sol_pma_init(__isl_keep isl_basic_map
*bmap
,
5338 __isl_take isl_basic_set
*dom
, int track_empty
, int max
)
5340 struct isl_sol_pma
*sol_pma
= NULL
;
5345 sol_pma
= isl_calloc_type(bmap
->ctx
, struct isl_sol_pma
);
5349 sol_pma
->sol
.rational
= ISL_F_ISSET(bmap
, ISL_BASIC_MAP_RATIONAL
);
5350 sol_pma
->sol
.dec_level
.callback
.run
= &sol_dec_level_wrap
;
5351 sol_pma
->sol
.dec_level
.sol
= &sol_pma
->sol
;
5352 sol_pma
->sol
.max
= max
;
5353 sol_pma
->sol
.n_out
= isl_basic_map_dim(bmap
, isl_dim_out
);
5354 sol_pma
->sol
.add
= &sol_pma_add_wrap
;
5355 sol_pma
->sol
.add_empty
= track_empty
? &sol_pma_add_empty_wrap
: NULL
;
5356 sol_pma
->sol
.free
= &sol_pma_free_wrap
;
5357 sol_pma
->pma
= isl_pw_multi_aff_empty(isl_basic_map_get_space(bmap
));
5361 sol_pma
->sol
.context
= isl_context_alloc(dom
);
5362 if (!sol_pma
->sol
.context
)
5366 sol_pma
->empty
= isl_set_alloc_space(isl_basic_set_get_space(dom
),
5367 1, ISL_SET_DISJOINT
);
5368 if (!sol_pma
->empty
)
5372 isl_basic_set_free(dom
);
5373 return &sol_pma
->sol
;
5375 isl_basic_set_free(dom
);
5376 sol_pma_free(sol_pma
);
5380 /* Base case of isl_tab_basic_map_partial_lexopt, after removing
5381 * some obvious symmetries.
5383 * We call basic_map_partial_lexopt_base and extract the results.
5385 static __isl_give isl_pw_multi_aff
*basic_map_partial_lexopt_base_pma(
5386 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5387 __isl_give isl_set
**empty
, int max
)
5389 isl_pw_multi_aff
*result
= NULL
;
5390 struct isl_sol
*sol
;
5391 struct isl_sol_pma
*sol_pma
;
5393 sol
= basic_map_partial_lexopt_base(bmap
, dom
, empty
, max
,
5397 sol_pma
= (struct isl_sol_pma
*) sol
;
5399 result
= isl_pw_multi_aff_copy(sol_pma
->pma
);
5401 *empty
= isl_set_copy(sol_pma
->empty
);
5402 sol_free(&sol_pma
->sol
);
5406 /* Given that the last input variable of "maff" represents the minimum
5407 * of some bounds, check whether we need to plug in the expression
5410 * In particular, check if the last input variable appears in any
5411 * of the expressions in "maff".
5413 static int need_substitution(__isl_keep isl_multi_aff
*maff
)
5418 pos
= isl_multi_aff_dim(maff
, isl_dim_in
) - 1;
5420 for (i
= 0; i
< maff
->n
; ++i
)
5421 if (isl_aff_involves_dims(maff
->p
[i
], isl_dim_in
, pos
, 1))
5427 /* Given a set of upper bounds on the last "input" variable m,
5428 * construct a piecewise affine expression that selects
5429 * the minimal upper bound to m, i.e.,
5430 * divide the space into cells where one
5431 * of the upper bounds is smaller than all the others and select
5432 * this upper bound on that cell.
5434 * In particular, if there are n bounds b_i, then the result
5435 * consists of n cell, each one of the form
5437 * b_i <= b_j for j > i
5438 * b_i < b_j for j < i
5440 * The affine expression on this cell is
5444 static __isl_give isl_pw_aff
*set_minimum_pa(__isl_take isl_space
*space
,
5445 __isl_take isl_mat
*var
)
5448 isl_aff
*aff
= NULL
;
5449 isl_basic_set
*bset
= NULL
;
5451 isl_pw_aff
*paff
= NULL
;
5452 isl_space
*pw_space
;
5453 isl_local_space
*ls
= NULL
;
5458 ctx
= isl_space_get_ctx(space
);
5459 ls
= isl_local_space_from_space(isl_space_copy(space
));
5460 pw_space
= isl_space_copy(space
);
5461 pw_space
= isl_space_from_domain(pw_space
);
5462 pw_space
= isl_space_add_dims(pw_space
, isl_dim_out
, 1);
5463 paff
= isl_pw_aff_alloc_size(pw_space
, var
->n_row
);
5465 for (i
= 0; i
< var
->n_row
; ++i
) {
5468 aff
= isl_aff_alloc(isl_local_space_copy(ls
));
5469 bset
= isl_basic_set_alloc_space(isl_space_copy(space
), 0,
5473 isl_int_set_si(aff
->v
->el
[0], 1);
5474 isl_seq_cpy(aff
->v
->el
+ 1, var
->row
[i
], var
->n_col
);
5475 isl_int_set_si(aff
->v
->el
[1 + var
->n_col
], 0);
5476 bset
= select_minimum(bset
, var
, i
);
5477 paff_i
= isl_pw_aff_alloc(isl_set_from_basic_set(bset
), aff
);
5478 paff
= isl_pw_aff_add_disjoint(paff
, paff_i
);
5481 isl_local_space_free(ls
);
5482 isl_space_free(space
);
5487 isl_basic_set_free(bset
);
5488 isl_pw_aff_free(paff
);
5489 isl_local_space_free(ls
);
5490 isl_space_free(space
);
5495 /* Given a piecewise multi-affine expression of which the last input variable
5496 * is the minimum of the bounds in "cst", plug in the value of the minimum.
5497 * This minimum expression is given in "min_expr_pa".
5498 * The set "min_expr" contains the same information, but in the form of a set.
5499 * The variable is subsequently projected out.
5501 * The implementation is similar to those of "split" and "split_domain".
5502 * If the variable appears in a given expression, then minimum expression
5503 * is plugged in. Otherwise, if the variable appears in the constraints
5504 * and a split is required, then the domain is split. Otherwise, no split
5507 static __isl_give isl_pw_multi_aff
*split_domain_pma(
5508 __isl_take isl_pw_multi_aff
*opt
, __isl_take isl_pw_aff
*min_expr_pa
,
5509 __isl_take isl_set
*min_expr
, __isl_take isl_mat
*cst
)
5514 isl_pw_multi_aff
*res
;
5516 if (!opt
|| !min_expr
|| !cst
)
5519 n_in
= isl_pw_multi_aff_dim(opt
, isl_dim_in
);
5520 space
= isl_pw_multi_aff_get_space(opt
);
5521 space
= isl_space_drop_dims(space
, isl_dim_in
, n_in
- 1, 1);
5522 res
= isl_pw_multi_aff_empty(space
);
5524 for (i
= 0; i
< opt
->n
; ++i
) {
5525 isl_pw_multi_aff
*pma
;
5527 pma
= isl_pw_multi_aff_alloc(isl_set_copy(opt
->p
[i
].set
),
5528 isl_multi_aff_copy(opt
->p
[i
].maff
));
5529 if (need_substitution(opt
->p
[i
].maff
))
5530 pma
= isl_pw_multi_aff_substitute(pma
,
5531 isl_dim_in
, n_in
- 1, min_expr_pa
);
5532 else if (need_split_set(opt
->p
[i
].set
, cst
))
5533 pma
= isl_pw_multi_aff_intersect_domain(pma
,
5534 isl_set_copy(min_expr
));
5535 pma
= isl_pw_multi_aff_project_out(pma
,
5536 isl_dim_in
, n_in
- 1, 1);
5538 res
= isl_pw_multi_aff_add_disjoint(res
, pma
);
5541 isl_pw_multi_aff_free(opt
);
5542 isl_pw_aff_free(min_expr_pa
);
5543 isl_set_free(min_expr
);
5547 isl_pw_multi_aff_free(opt
);
5548 isl_pw_aff_free(min_expr_pa
);
5549 isl_set_free(min_expr
);
5554 static __isl_give isl_pw_multi_aff
*basic_map_partial_lexopt_pma(
5555 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5556 __isl_give isl_set
**empty
, int max
);
5558 /* This function is called from basic_map_partial_lexopt_symm.
5559 * The last variable of "bmap" and "dom" corresponds to the minimum
5560 * of the bounds in "cst". "map_space" is the space of the original
5561 * input relation (of basic_map_partial_lexopt_symm) and "set_space"
5562 * is the space of the original domain.
5564 * We recursively call basic_map_partial_lexopt and then plug in
5565 * the definition of the minimum in the result.
5567 static __isl_give
union isl_lex_res
basic_map_partial_lexopt_symm_pma_core(
5568 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5569 __isl_give isl_set
**empty
, int max
, __isl_take isl_mat
*cst
,
5570 __isl_take isl_space
*map_space
, __isl_take isl_space
*set_space
)
5572 isl_pw_multi_aff
*opt
;
5573 isl_pw_aff
*min_expr_pa
;
5575 union isl_lex_res res
;
5577 min_expr
= set_minimum(isl_basic_set_get_space(dom
), isl_mat_copy(cst
));
5578 min_expr_pa
= set_minimum_pa(isl_basic_set_get_space(dom
),
5581 opt
= basic_map_partial_lexopt_pma(bmap
, dom
, empty
, max
);
5584 *empty
= split(*empty
,
5585 isl_set_copy(min_expr
), isl_mat_copy(cst
));
5586 *empty
= isl_set_reset_space(*empty
, set_space
);
5589 opt
= split_domain_pma(opt
, min_expr_pa
, min_expr
, cst
);
5590 opt
= isl_pw_multi_aff_reset_space(opt
, map_space
);
5596 static __isl_give isl_pw_multi_aff
*basic_map_partial_lexopt_symm_pma(
5597 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5598 __isl_give isl_set
**empty
, int max
, int first
, int second
)
5600 return basic_map_partial_lexopt_symm(bmap
, dom
, empty
, max
,
5601 first
, second
, &basic_map_partial_lexopt_symm_pma_core
).pma
;
5604 /* Recursive part of isl_basic_map_partial_lexopt_pw_multi_aff, after detecting
5605 * equalities and removing redundant constraints.
5607 * We first check if there are any parallel constraints (left).
5608 * If not, we are in the base case.
5609 * If there are parallel constraints, we replace them by a single
5610 * constraint in basic_map_partial_lexopt_symm_pma and then call
5611 * this function recursively to look for more parallel constraints.
5613 static __isl_give isl_pw_multi_aff
*basic_map_partial_lexopt_pma(
5614 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5615 __isl_give isl_set
**empty
, int max
)
5623 if (bmap
->ctx
->opt
->pip_symmetry
)
5624 par
= parallel_constraints(bmap
, &first
, &second
);
5628 return basic_map_partial_lexopt_base_pma(bmap
, dom
, empty
, max
);
5630 return basic_map_partial_lexopt_symm_pma(bmap
, dom
, empty
, max
,
5633 isl_basic_set_free(dom
);
5634 isl_basic_map_free(bmap
);
5638 /* Compute the lexicographic minimum (or maximum if "max" is set)
5639 * of "bmap" over the domain "dom" and return the result as a piecewise
5640 * multi-affine expression.
5641 * If "empty" is not NULL, then *empty is assigned a set that
5642 * contains those parts of the domain where there is no solution.
5643 * If "bmap" is marked as rational (ISL_BASIC_MAP_RATIONAL),
5644 * then we compute the rational optimum. Otherwise, we compute
5645 * the integral optimum.
5647 * We perform some preprocessing. As the PILP solver does not
5648 * handle implicit equalities very well, we first make sure all
5649 * the equalities are explicitly available.
5651 * We also add context constraints to the basic map and remove
5652 * redundant constraints. This is only needed because of the
5653 * way we handle simple symmetries. In particular, we currently look
5654 * for symmetries on the constraints, before we set up the main tableau.
5655 * It is then no good to look for symmetries on possibly redundant constraints.
5657 __isl_give isl_pw_multi_aff
*isl_basic_map_partial_lexopt_pw_multi_aff(
5658 __isl_take isl_basic_map
*bmap
, __isl_take isl_basic_set
*dom
,
5659 __isl_give isl_set
**empty
, int max
)
5666 isl_assert(bmap
->ctx
,
5667 isl_basic_map_compatible_domain(bmap
, dom
), goto error
);
5669 if (isl_basic_set_dim(dom
, isl_dim_all
) == 0)
5670 return basic_map_partial_lexopt_pma(bmap
, dom
, empty
, max
);
5672 bmap
= isl_basic_map_intersect_domain(bmap
, isl_basic_set_copy(dom
));
5673 bmap
= isl_basic_map_detect_equalities(bmap
);
5674 bmap
= isl_basic_map_remove_redundancies(bmap
);
5676 return basic_map_partial_lexopt_pma(bmap
, dom
, empty
, max
);
5678 isl_basic_set_free(dom
);
5679 isl_basic_map_free(bmap
);