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;
93 unsigned need_undo : 1;
94 unsigned rational : 1;
99 struct isl_tab *isl_tab_alloc(struct isl_ctx *ctx,
100 unsigned n_row, unsigned n_var);
101 void isl_tab_free(struct isl_ctx *ctx, struct isl_tab *tab);
103 struct isl_tab *isl_tab_from_basic_map(struct isl_basic_map *bmap);
104 struct isl_tab *isl_tab_from_basic_set(struct isl_basic_set *bset);
105 struct isl_tab *isl_tab_from_recession_cone(struct isl_basic_map *bmap);
106 int isl_tab_cone_is_bounded(struct isl_ctx *ctx, struct isl_tab *tab);
107 struct isl_basic_map *isl_basic_map_update_from_tab(struct isl_basic_map *bmap,
108 struct isl_tab *tab);
109 struct isl_basic_set *isl_basic_set_update_from_tab(struct isl_basic_set *bset,
110 struct isl_tab *tab);
111 struct isl_tab *isl_tab_detect_equalities(struct isl_ctx *ctx,
112 struct isl_tab *tab);
113 struct isl_tab *isl_tab_detect_redundant(struct isl_ctx *ctx,
114 struct isl_tab *tab);
115 #define ISL_TAB_SAVE_DUAL (1 << 0)
116 enum isl_lp_result isl_tab_min(struct isl_ctx *ctx, struct isl_tab *tab,
117 isl_int *f, isl_int denom, isl_int *opt, isl_int *opt_denom,
120 struct isl_tab *isl_tab_extend(struct isl_ctx *ctx, struct isl_tab *tab,
122 struct isl_tab *isl_tab_add_ineq(struct isl_ctx *ctx,
123 struct isl_tab *tab, isl_int *ineq);
124 struct isl_tab *isl_tab_add_valid_eq(struct isl_ctx *ctx,
125 struct isl_tab *tab, isl_int *eq);
127 int isl_tab_is_equality(struct isl_ctx *ctx, struct isl_tab *tab, int con);
128 int isl_tab_is_redundant(struct isl_ctx *ctx, struct isl_tab *tab, int con);
130 struct isl_vec *isl_tab_get_sample_value(struct isl_ctx *ctx,
131 struct isl_tab *tab);
142 enum isl_ineq_type isl_tab_ineq_type(struct isl_ctx *ctx, struct isl_tab *tab,
145 struct isl_tab_undo *isl_tab_snap(struct isl_ctx *ctx, struct isl_tab *tab);
146 int isl_tab_rollback(struct isl_ctx *ctx, struct isl_tab *tab,
147 struct isl_tab_undo *snap);
149 struct isl_tab *isl_tab_relax(struct isl_ctx *ctx,
150 struct isl_tab *tab, int con);
151 struct isl_tab *isl_tab_select_facet(struct isl_ctx *ctx,
152 struct isl_tab *tab, int con);
154 void isl_tab_dump(struct isl_ctx *ctx, struct isl_tab *tab,
155 FILE *out, int indent);