11 unsigned is_nonneg
: 1;
13 unsigned is_redundant
: 1;
18 enum isl_tab_undo_type
{
22 isl_tab_undo_redundant
,
24 isl_tab_undo_allocate
,
29 enum isl_tab_undo_type type
;
30 struct isl_tab_var
*var
;
31 struct isl_tab_undo
*next
;
34 /* The tableau maintains equality relations.
35 * Each column and each row is associated to a variable or a constraint.
36 * The "value" of an inequality constraint is the value of the corresponding
38 * The "row_var" and "col_var" arrays map column and row indices
39 * to indices in the "var" and "con" arrays. The elements of these
40 * arrays maintain extra information about the variables and the constraints.
41 * Each row expresses the corresponding row variable as an affine expression
42 * of the column variables.
43 * The first two columns in the matrix contain the common denominator of
44 * the row and the numerator of the constant term. The third column
45 * in the matrix is called column 0 with respect to the col_var array.
46 * The sample value of the tableau is the value that assigns zero
47 * to all the column variables and the constant term of each affine
48 * expression to the corresponding row variable.
49 * The operations on the tableau maintain the property that the sample
50 * value satisfies the non-negativity constraints (usually on the slack
53 * The first n_dead column variables have their values fixed to zero.
54 * The corresponding tab_vars are flagged "is_zero".
55 * Some of the rows that have have zero coefficients in all but
56 * the dead columns are also flagged "is_zero".
58 * The first n_redundant rows correspond to inequality constraints
59 * that are always satisfied for any value satisfying the non-redundant
60 * rows. The corresponding tab_vars are flagged "is_redundant".
61 * A row variable that is flagged "is_zero" is also flagged "is_redundant"
62 * since the constraint has been reduced to 0 = 0 and is therefore always
65 * Dead columns and redundant rows are detected on the fly.
66 * However, the basic operations do not ensure that all dead columns
67 * or all redundant rows are detected.
68 * isl_tab_detect_equalities and isl_tab_detect_redundant can be used
69 * to peform and exhaustive search for dead columns and redundant rows.
83 struct isl_tab_var
*var
;
84 struct isl_tab_var
*con
;
85 int *row_var
; /* v >= 0 -> var v; v < 0 -> con ~v */
86 int *col_var
; /* v >= 0 -> var v; v < 0 -> con ~v */
88 struct isl_tab_undo bottom
;
89 struct isl_tab_undo
*top
;
91 unsigned need_undo
: 1;
92 unsigned rational
: 1;
96 void isl_tab_free(struct isl_ctx
*ctx
, struct isl_tab
*tab
);
98 struct isl_tab
*isl_tab_from_basic_map(struct isl_basic_map
*bmap
);
99 struct isl_tab
*isl_tab_from_basic_set(struct isl_basic_set
*bset
);
100 struct isl_tab
*isl_tab_from_recession_cone(struct isl_basic_map
*bmap
);
101 int isl_tab_cone_is_bounded(struct isl_ctx
*ctx
, struct isl_tab
*tab
);
102 struct isl_basic_map
*isl_basic_map_update_from_tab(struct isl_basic_map
*bmap
,
103 struct isl_tab
*tab
);
104 struct isl_basic_set
*isl_basic_set_update_from_tab(struct isl_basic_set
*bset
,
105 struct isl_tab
*tab
);
106 struct isl_tab
*isl_tab_detect_equalities(struct isl_ctx
*ctx
,
107 struct isl_tab
*tab
);
108 struct isl_tab
*isl_tab_detect_redundant(struct isl_ctx
*ctx
,
109 struct isl_tab
*tab
);
110 enum isl_lp_result
isl_tab_min(struct isl_ctx
*ctx
, struct isl_tab
*tab
,
111 isl_int
*f
, isl_int denom
, isl_int
*opt
, isl_int
*opt_denom
);
113 struct isl_tab
*isl_tab_extend(struct isl_ctx
*ctx
, struct isl_tab
*tab
,
115 struct isl_tab
*isl_tab_add_ineq(struct isl_ctx
*ctx
,
116 struct isl_tab
*tab
, isl_int
*ineq
);
118 int isl_tab_is_equality(struct isl_ctx
*ctx
, struct isl_tab
*tab
, int con
);
119 int isl_tab_is_redundant(struct isl_ctx
*ctx
, struct isl_tab
*tab
, int con
);
121 struct isl_vec
*isl_tab_get_sample_value(struct isl_ctx
*ctx
,
122 struct isl_tab
*tab
);
133 enum isl_ineq_type
isl_tab_ineq_type(struct isl_ctx
*ctx
, struct isl_tab
*tab
,
136 struct isl_tab_undo
*isl_tab_snap(struct isl_ctx
*ctx
, struct isl_tab
*tab
);
137 int isl_tab_rollback(struct isl_ctx
*ctx
, struct isl_tab
*tab
,
138 struct isl_tab_undo
*snap
);
140 struct isl_tab
*isl_tab_relax(struct isl_ctx
*ctx
,
141 struct isl_tab
*tab
, int con
);
142 struct isl_tab
*isl_tab_select_facet(struct isl_ctx
*ctx
,
143 struct isl_tab
*tab
, int con
);
145 void isl_tab_dump(struct isl_ctx
*ctx
, struct isl_tab
*tab
,
146 FILE *out
, int indent
);