Polly 19.0.0git
isl_tab.h
Go to the documentation of this file.
1/*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
3 *
4 * Use of this software is governed by the MIT license
5 *
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
9
10#ifndef ISL_TAB_H
11#define ISL_TAB_H
12
13#include "isl_int.h"
14#include <isl/lp.h>
15#include <isl/map.h>
16#include <isl/mat.h>
17#include <isl/set.h>
18#include <isl_config.h>
19
21 int index;
22 unsigned is_row : 1;
23 unsigned is_nonneg : 1;
24 unsigned is_zero : 1;
25 unsigned is_redundant : 1;
26 unsigned marked : 1;
27 unsigned frozen : 1;
28 unsigned negated : 1;
29};
30
49};
50
53};
54
57 int *col_var;
58 int n;
60};
61
66};
67
68/* The tableau maintains equality relations.
69 * Each column and each row is associated to a variable or a constraint.
70 * The "value" of an inequality constraint is the value of the corresponding
71 * slack variable.
72 * The "row_var" and "col_var" arrays map column and row indices
73 * to indices in the "var" and "con" arrays. The elements of these
74 * arrays maintain extra information about the variables and the constraints.
75 * Each row expresses the corresponding row variable as an affine expression
76 * of the column variables.
77 * The first two columns in the matrix contain the common denominator of
78 * the row and the numerator of the constant term.
79 * If "M" is set, then the third column represents the "big parameter".
80 * The third (M = 0) or fourth (M = 1) column
81 * in the matrix is called column 0 with respect to the col_var array.
82 * The sample value of the tableau is the value that assigns zero
83 * to all the column variables and the constant term of each affine
84 * expression to the corresponding row variable.
85 * The operations on the tableau maintain the property that the sample
86 * value satisfies the non-negativity constraints (usually on the slack
87 * variables).
88 *
89 * The big parameter represents an arbitrarily big (and divisible)
90 * positive number. If present, then the sign of a row is determined
91 * lexicographically, with the sign of the big parameter coefficient
92 * considered first. The big parameter is only used while
93 * solving PILP problems.
94 *
95 * The first n_dead column variables have their values fixed to zero.
96 * The corresponding tab_vars are flagged "is_zero".
97 * Some of the rows that have have zero coefficients in all but
98 * the dead columns are also flagged "is_zero".
99 *
100 * The first n_redundant rows correspond to inequality constraints
101 * that are always satisfied for any value satisfying the non-redundant
102 * rows. The corresponding tab_vars are flagged "is_redundant".
103 * A row variable that is flagged "is_zero" is also flagged "is_redundant"
104 * since the constraint has been reduced to 0 = 0 and is therefore always
105 * satisfied.
106 *
107 * There are "n_var" variables in total. The first "n_param" of these
108 * are called parameters and the last "n_div" of these are called divs.
109 * The basic tableau operations makes no distinction between different
110 * kinds of variables. These special variables are only used while
111 * solving PILP problems.
112 *
113 * Dead columns and redundant rows are detected on the fly.
114 * However, the basic operations do not ensure that all dead columns
115 * or all redundant rows are detected.
116 * isl_tab_detect_implicit_equalities and isl_tab_detect_redundant can be used
117 * to perform an exhaustive search for dead columns and redundant rows.
118 *
119 * The samples matrix contains "n_sample" integer points that have at some
120 * point been elements satisfying the tableau. The first "n_outside"
121 * of them no longer satisfy the tableau. They are kept because they
122 * can be reinstated during rollback when the constraint that cut them
123 * out is removed. These samples are only maintained for the context
124 * tableau while solving PILP problems.
125 *
126 * If "preserve" is set, then we want to keep all constraints in the
127 * tableau, even if they turn out to be redundant.
128 */
134};
135struct isl_tab {
136 struct isl_mat *mat;
137
138 unsigned n_row;
139 unsigned n_col;
140 unsigned n_dead;
141 unsigned n_redundant;
142
143 unsigned n_var;
144 unsigned n_param;
145 unsigned n_div;
146 unsigned max_var;
147 unsigned n_con;
148 unsigned n_eq;
149 unsigned max_con;
152 int *row_var; /* v >= 0 -> var v; v < 0 -> con ~v */
153 int *col_var; /* v >= 0 -> var v; v < 0 -> con ~v */
155
158
159 struct isl_vec *dual;
161
162 unsigned n_sample;
163 unsigned n_outside;
166
169 struct isl_mat *basis;
170
171 int (*conflict)(int con, void *user);
173
174 unsigned strict_redundant : 1;
175 unsigned need_undo : 1;
176 unsigned preserve : 1;
177 unsigned rational : 1;
178 unsigned empty : 1;
179 unsigned in_undo : 1;
180 unsigned M : 1;
181 unsigned cone : 1;
182};
183
184struct isl_tab *isl_tab_alloc(struct isl_ctx *ctx,
185 unsigned n_row, unsigned n_var, unsigned M);
186void isl_tab_free(struct isl_tab *tab);
187
188isl_ctx *isl_tab_get_ctx(struct isl_tab *tab);
189
191 __isl_keep isl_basic_map *bmap, int track);
193 __isl_keep isl_basic_set *bset, int track);
195 int parametric);
198 __isl_take isl_basic_map *bmap, struct isl_tab *tab);
200 __isl_take isl_basic_set *bset, struct isl_tab *tab);
206#define ISL_TAB_SAVE_DUAL (1 << 0)
207enum isl_lp_result isl_tab_min(struct isl_tab *tab,
208 isl_int *f, isl_int denom, isl_int *opt, isl_int *opt_denom,
209 unsigned flags) WARN_UNUSED;
210
213int isl_tab_add_valid_eq(struct isl_tab *tab, isl_int *eq) WARN_UNUSED;
214
216
222
223int isl_tab_is_equality(struct isl_tab *tab, int con);
224int isl_tab_is_redundant(struct isl_tab *tab, int con);
225
226int isl_tab_sample_is_integer(struct isl_tab *tab);
228
236};
237
238enum isl_ineq_type isl_tab_ineq_type(struct isl_tab *tab, isl_int *ineq);
239
240struct isl_tab_undo *isl_tab_snap(struct isl_tab *tab);
241isl_stat isl_tab_rollback(struct isl_tab *tab, struct isl_tab_undo *snap) WARN_UNUSED;
243void isl_tab_clear_undo(struct isl_tab *tab);
244
245int isl_tab_relax(struct isl_tab *tab, int con) WARN_UNUSED;
246int isl_tab_select_facet(struct isl_tab *tab, int con) WARN_UNUSED;
247int isl_tab_unrestrict(struct isl_tab *tab, int con) WARN_UNUSED;
248
249void isl_tab_dump(__isl_keep struct isl_tab *tab);
250
251/* Compute maximum instead of minimum. */
252#define ISL_OPT_MAX (1 << 0)
253/* Compute full instead of partial optimum; also, domain argument is NULL. */
254#define ISL_OPT_FULL (1 << 1)
255/* Result should be free of (unknown) quantified variables. */
256#define ISL_OPT_QE (1 << 2)
259 __isl_give isl_set **empty, unsigned flags);
262 __isl_give isl_set **empty, unsigned flags);
263
264/* An isl_trivial_region represents a non-triviality region.
265 * The region is trivial if applying "trivial" to a given sequence
266 * of variables results in a zero vector.
267 * pos is the location (starting at 0) of the first variable in the sequence.
268 */
270 int pos;
272};
273
275 __isl_take isl_basic_set *bset, int n_op, int n_region,
276 struct isl_trivial_region *region,
277 int (*conflict)(int con, void *user), void *user);
278
279struct isl_tab_lexmin;
281
286 isl_int *eq);
291
292/* private */
293
294struct isl_tab_var *isl_tab_var_from_row(struct isl_tab *tab, int i);
295int isl_tab_mark_redundant(struct isl_tab *tab, int row) WARN_UNUSED;
298struct isl_tab *isl_tab_dup(struct isl_tab *tab);
299struct isl_tab *isl_tab_product(struct isl_tab *tab1, struct isl_tab *tab2);
300int isl_tab_extend_cons(struct isl_tab *tab, unsigned n_new) WARN_UNUSED;
302int isl_tab_extend_vars(struct isl_tab *tab, unsigned n_new) WARN_UNUSED;
303int isl_tab_insert_var(struct isl_tab *tab, int pos) WARN_UNUSED;
304int isl_tab_pivot(struct isl_tab *tab, int row, int col) WARN_UNUSED;
305int isl_tab_add_row(struct isl_tab *tab, isl_int *line) WARN_UNUSED;
306int isl_tab_row_is_redundant(struct isl_tab *tab, int row);
307int isl_tab_min_at_most_neg_one(struct isl_tab *tab, struct isl_tab_var *var);
308int isl_tab_sign_of_max(struct isl_tab *tab, int con);
309int isl_tab_kill_col(struct isl_tab *tab, int col) WARN_UNUSED;
310
316
318int isl_tab_add_sample(struct isl_tab *tab,
320struct isl_tab *isl_tab_drop_sample(struct isl_tab *tab, int s);
322
323struct isl_tab *isl_tab_detect_equalities(struct isl_tab *tab,
324 struct isl_tab *tab_cone) WARN_UNUSED;
325isl_bool isl_tab_is_constant(struct isl_tab *tab, int var, isl_int *value);
327
329 struct isl_tab_callback *callback) WARN_UNUSED;
330
331int isl_tab_insert_div(struct isl_tab *tab, int pos, __isl_keep isl_vec *div,
332 isl_stat (*add_ineq)(void *user, isl_int *), void *user);
333int isl_tab_add_div(struct isl_tab *tab, __isl_keep isl_vec *div);
334
335int isl_tab_shift_var(struct isl_tab *tab, int pos, isl_int shift) WARN_UNUSED;
336
337isl_stat isl_tab_swap_constraints(struct isl_tab *tab, int con1, int con2);
338
339#endif
static RegisterPass< ScopPrinterWrapperPass > M("dot-scops", "Polly - Print Scops of function")
#define __isl_take
Definition: ctx.h:22
isl_stat
Definition: ctx.h:84
#define __isl_give
Definition: ctx.h:19
#define __isl_null
Definition: ctx.h:28
#define __isl_keep
Definition: ctx.h:25
isl_bool
Definition: ctx.h:89
isl_stat isl_stat(*) void user)
Definition: hmap.h:39
static __isl_give isl_ast_expr * var(struct isl_ast_add_term_data *data, enum isl_dim_type type, int pos)
#define WARN_UNUSED
static unsigned pos(__isl_keep isl_space *space, enum isl_dim_type type)
Definition: isl_map.c:70
int isl_tab_insert_var(struct isl_tab *tab, int pos) WARN_UNUSED
Definition: isl_tab.c:1761
isl_stat isl_tab_track_bset(struct isl_tab *tab, __isl_take isl_basic_set *bset) WARN_UNUSED
Definition: isl_tab.c:4166
int isl_tab_pivot(struct isl_tab *tab, int row, int col) WARN_UNUSED
Definition: isl_tab.c:1125
struct isl_tab * isl_tab_drop_sample(struct isl_tab *tab, int s)
Definition: isl_tab.c:913
int isl_tab_min_at_most_neg_one(struct isl_tab *tab, struct isl_tab_var *var)
Definition: isl_tab.c:1454
void isl_tab_free(struct isl_tab *tab)
Definition: isl_tab.c:204
isl_stat isl_tab_push(struct isl_tab *tab, enum isl_tab_undo_type type) WARN_UNUSED
Definition: isl_tab.c:835
isl_stat isl_tab_push_var(struct isl_tab *tab, enum isl_tab_undo_type type, struct isl_tab_var *var) WARN_UNUSED
Definition: isl_tab.c:824
enum isl_lp_result isl_tab_min(struct isl_tab *tab, isl_int *f, isl_int denom, isl_int *opt, isl_int *opt_denom, unsigned flags) WARN_UNUSED
Definition: isl_tab.c:3348
int isl_tab_freeze_constraint(struct isl_tab *tab, int con) WARN_UNUSED
Definition: isl_tab.c:1007
void isl_tab_clear_undo(struct isl_tab *tab)
Definition: isl_tab.c:3698
struct isl_tab * isl_tab_detect_equalities(struct isl_tab *tab, struct isl_tab *tab_cone) WARN_UNUSED
struct isl_tab * isl_tab_product(struct isl_tab *tab1, struct isl_tab *tab2)
Definition: isl_tab.c:434
int isl_tab_is_redundant(struct isl_tab *tab, int con)
Definition: isl_tab.c:3425
struct isl_tab_var * isl_tab_var_from_row(struct isl_tab *tab, int i)
Definition: isl_tab.c:571
__isl_give isl_vec * isl_tab_basic_set_non_trivial_lexmin(__isl_take isl_basic_set *bset, int n_op, int n_region, struct isl_trivial_region *region, int(*conflict)(int con, void *user), void *user)
Definition: isl_tab_pip.c:5494
__isl_null isl_tab_lexmin * isl_tab_lexmin_free(__isl_take isl_tab_lexmin *tl)
Definition: isl_tab_pip.c:5561
int isl_tab_unrestrict(struct isl_tab *tab, int con) WARN_UNUSED
Definition: isl_tab.c:2888
isl_stat isl_tab_push_callback(struct isl_tab *tab, struct isl_tab_callback *callback) WARN_UNUSED
Definition: isl_tab.c:857
int isl_tab_lexmin_dim(__isl_keep isl_tab_lexmin *tl)
Definition: isl_tab_pip.c:5604
isl_ineq_type
Definition: isl_tab.h:229
@ isl_ineq_cut
Definition: isl_tab.h:233
@ isl_ineq_adj_eq
Definition: isl_tab.h:234
@ isl_ineq_adj_ineq
Definition: isl_tab.h:235
@ isl_ineq_redundant
Definition: isl_tab.h:231
@ isl_ineq_error
Definition: isl_tab.h:230
@ isl_ineq_separate
Definition: isl_tab.h:232
isl_stat isl_tab_swap_constraints(struct isl_tab *tab, int con1, int con2)
Definition: isl_tab.c:3053
__isl_keep isl_basic_set * isl_tab_peek_bset(struct isl_tab *tab)
Definition: isl_tab.c:4171
int isl_tab_select_facet(struct isl_tab *tab, int con) WARN_UNUSED
Definition: isl_tab.c:2906
__isl_give isl_pw_multi_aff * isl_tab_basic_map_partial_lexopt_pw_multi_aff(__isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom, __isl_give isl_set **empty, unsigned flags)
int isl_tab_mark_redundant(struct isl_tab *tab, int row) WARN_UNUSED
Definition: isl_tab.c:956
int isl_tab_shift_var(struct isl_tab *tab, int pos, isl_int shift) WARN_UNUSED
Definition: isl_tab.c:2842
__isl_give isl_map * isl_tab_basic_map_partial_lexopt(__isl_take isl_basic_map *bmap, __isl_take isl_basic_set *dom, __isl_give isl_set **empty, unsigned flags)
struct isl_tab_undo * isl_tab_snap(struct isl_tab *tab)
Definition: isl_tab.c:3674
isl_stat isl_tab_restore_redundant(struct isl_tab *tab)
Definition: isl_tab.c:3841
int isl_tab_sign_of_max(struct isl_tab *tab, int con)
Definition: isl_tab.c:1284
int isl_tab_add_valid_eq(struct isl_tab *tab, isl_int *eq) WARN_UNUSED
Definition: isl_tab.c:2044
int isl_tab_is_equality(struct isl_tab *tab, int con)
Definition: isl_tab.c:3315
int isl_tab_extend_vars(struct isl_tab *tab, unsigned n_new) WARN_UNUSED
Definition: isl_tab.c:151
isl_stat isl_tab_add_ineq(struct isl_tab *tab, isl_int *ineq) WARN_UNUSED
Definition: isl_tab.c:1896
__isl_give isl_basic_set * isl_basic_set_update_from_tab(__isl_take isl_basic_set *bset, struct isl_tab *tab)
Definition: isl_tab.c:2653
struct isl_tab * isl_tab_from_recession_cone(__isl_keep isl_basic_set *bset, int parametric)
Definition: isl_tab.c:2432
int isl_tab_relax(struct isl_tab *tab, int con) WARN_UNUSED
Definition: isl_tab.c:2778
int isl_tab_add_sample(struct isl_tab *tab, __isl_take isl_vec *sample) WARN_UNUSED
Definition: isl_tab.c:884
int isl_tab_extend_cons(struct isl_tab *tab, unsigned n_new) WARN_UNUSED
Definition: isl_tab.c:105
void isl_tab_dump(__isl_keep struct isl_tab *tab)
Definition: isl_tab.c:4256
isl_stat isl_tab_push_basis(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:844
__isl_give isl_vec * isl_tab_get_sample_value(struct isl_tab *tab)
Definition: isl_tab.c:2565
isl_ctx * isl_tab_get_ctx(struct isl_tab *tab)
Definition: isl_tab.c:100
isl_stat isl_tab_save_samples(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:933
int isl_tab_add_div(struct isl_tab *tab, __isl_keep isl_vec *div)
Definition: isl_tab.c:2372
isl_stat isl_tab_detect_constants(struct isl_tab *tab)
Definition: isl_tab.c:3654
int isl_tab_sample_is_integer(struct isl_tab *tab)
Definition: isl_tab.c:2523
isl_bool isl_tab_cone_is_bounded(struct isl_tab *tab)
Definition: isl_tab.c:2489
int isl_tab_detect_implicit_equalities(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:2969
__isl_give isl_basic_map * isl_tab_make_equalities_explicit(struct isl_tab *tab, __isl_take isl_basic_map *bmap)
Definition: isl_tab.c:3201
isl_bool isl_tab_is_constant(struct isl_tab *tab, int var, isl_int *value)
Definition: isl_tab.c:3635
isl_bool isl_tab_need_undo(struct isl_tab *tab)
Definition: isl_tab.c:3685
struct isl_tab * isl_tab_dup(struct isl_tab *tab)
Definition: isl_tab.c:223
struct isl_tab * isl_tab_alloc(struct isl_ctx *ctx, unsigned n_row, unsigned n_var, unsigned M)
Definition: isl_tab.c:33
enum isl_ineq_type isl_tab_ineq_type(struct isl_tab *tab, isl_int *ineq)
Definition: isl_tab.c:4090
int isl_tab_mark_rational(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:985
int isl_tab_kill_col(struct isl_tab *tab, int col) WARN_UNUSED
Definition: isl_tab.c:1559
isl_tab_row_sign
Definition: isl_tab.h:129
@ isl_tab_row_unknown
Definition: isl_tab.h:130
@ isl_tab_row_pos
Definition: isl_tab.h:131
@ isl_tab_row_any
Definition: isl_tab.h:133
@ isl_tab_row_neg
Definition: isl_tab.h:132
int isl_tab_row_is_redundant(struct isl_tab *tab, int row)
Definition: isl_tab.c:742
__isl_give isl_tab_lexmin * isl_tab_lexmin_cut_to_integer(__isl_take isl_tab_lexmin *tl)
Definition: isl_tab_pip.c:5638
isl_tab_undo_type
Definition: isl_tab.h:31
@ isl_tab_undo_bmap_ineq
Definition: isl_tab.h:42
@ isl_tab_undo_bottom
Definition: isl_tab.h:32
@ isl_tab_undo_bmap_eq
Definition: isl_tab.h:43
@ isl_tab_undo_callback
Definition: isl_tab.h:48
@ isl_tab_undo_redundant
Definition: isl_tab.h:36
@ isl_tab_undo_saved_samples
Definition: isl_tab.h:47
@ isl_tab_undo_drop_sample
Definition: isl_tab.h:46
@ isl_tab_undo_relax
Definition: isl_tab.h:40
@ isl_tab_undo_rational
Definition: isl_tab.h:33
@ isl_tab_undo_allocate
Definition: isl_tab.h:39
@ isl_tab_undo_freeze
Definition: isl_tab.h:37
@ isl_tab_undo_nonneg
Definition: isl_tab.h:35
@ isl_tab_undo_saved_basis
Definition: isl_tab.h:45
@ isl_tab_undo_unrestrict
Definition: isl_tab.h:41
@ isl_tab_undo_zero
Definition: isl_tab.h:38
@ isl_tab_undo_bmap_div
Definition: isl_tab.h:44
@ isl_tab_undo_empty
Definition: isl_tab.h:34
int isl_tab_insert_div(struct isl_tab *tab, int pos, __isl_keep isl_vec *div, isl_stat(*add_ineq)(void *user, isl_int *), void *user)
Definition: isl_tab.c:2321
isl_stat isl_tab_track_bmap(struct isl_tab *tab, __isl_take isl_basic_map *bmap) WARN_UNUSED
Definition: isl_tab.c:4140
int isl_tab_add_row(struct isl_tab *tab, isl_int *line) WARN_UNUSED
Definition: isl_tab.c:1812
__isl_give struct isl_tab * isl_tab_from_basic_map(__isl_keep isl_basic_map *bmap, int track)
Definition: isl_tab.c:2384
isl_stat isl_tab_mark_empty(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:996
__isl_give struct isl_tab * isl_tab_from_basic_set(__isl_keep isl_basic_set *bset, int track)
Definition: isl_tab.c:2424
isl_stat isl_tab_rollback(struct isl_tab *tab, struct isl_tab_undo *snap) WARN_UNUSED
Definition: isl_tab.c:4014
__isl_give isl_vec * isl_tab_lexmin_get_solution(__isl_keep isl_tab_lexmin *tl)
Definition: isl_tab_pip.c:5653
struct isl_tab * isl_tab_init_samples(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:865
int isl_tab_allocate_con(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:1677
__isl_give isl_tab_lexmin * isl_tab_lexmin_add_eq(__isl_take isl_tab_lexmin *tl, isl_int *eq)
Definition: isl_tab_pip.c:5613
__isl_give isl_basic_map * isl_basic_map_update_from_tab(__isl_take isl_basic_map *bmap, struct isl_tab *tab)
Definition: isl_tab.c:2624
__isl_give isl_tab_lexmin * isl_tab_lexmin_from_basic_set(__isl_take isl_basic_set *bset)
Definition: isl_tab_pip.c:5576
int isl_tab_detect_redundant(struct isl_tab *tab) WARN_UNUSED
Definition: isl_tab.c:3261
isl_stat isl_tab_add_eq(struct isl_tab *tab, isl_int *eq) WARN_UNUSED
Definition: isl_tab.c:2108
enum isl_fold type
Definition: isl_test.c:4017
const char * f
Definition: isl_test.c:8642
isl_lp_result
Definition: lp.h:17
struct isl_set isl_set
Definition: map_type.h:26
struct isl_basic_set isl_basic_set
Definition: map_type.h:20
isl_stat(* run)(struct isl_tab_callback *cb)
Definition: isl_tab.h:52
enum isl_tab_undo_type type
Definition: isl_tab.h:63
struct isl_tab_undo * next
Definition: isl_tab.h:65
union isl_tab_undo_val u
Definition: isl_tab.h:64
unsigned negated
Definition: isl_tab.h:28
int index
Definition: isl_tab.h:21
unsigned frozen
Definition: isl_tab.h:27
unsigned marked
Definition: isl_tab.h:26
unsigned is_nonneg
Definition: isl_tab.h:23
unsigned is_zero
Definition: isl_tab.h:24
unsigned is_redundant
Definition: isl_tab.h:25
unsigned is_row
Definition: isl_tab.h:22
struct isl_mat * mat
Definition: isl_tab.h:136
unsigned n_con
Definition: isl_tab.h:147
unsigned n_col
Definition: isl_tab.h:139
struct isl_tab_undo bottom
Definition: isl_tab.h:156
void * conflict_user
Definition: isl_tab.h:172
unsigned rational
Definition: isl_tab.h:177
unsigned need_undo
Definition: isl_tab.h:175
unsigned in_undo
Definition: isl_tab.h:179
unsigned n_sample
Definition: isl_tab.h:162
unsigned n_var
Definition: isl_tab.h:143
int n_unbounded
Definition: isl_tab.h:168
unsigned cone
Definition: isl_tab.h:181
int * col_var
Definition: isl_tab.h:153
unsigned empty
Definition: isl_tab.h:178
unsigned n_eq
Definition: isl_tab.h:148
struct isl_vec * dual
Definition: isl_tab.h:159
struct isl_tab_var * con
Definition: isl_tab.h:151
unsigned max_con
Definition: isl_tab.h:149
unsigned n_dead
Definition: isl_tab.h:140
struct isl_basic_map * bmap
Definition: isl_tab.h:160
struct isl_mat * samples
Definition: isl_tab.h:165
struct isl_tab_undo * top
Definition: isl_tab.h:157
int * sample_index
Definition: isl_tab.h:164
unsigned strict_redundant
Definition: isl_tab.h:174
unsigned M
Definition: isl_tab.h:180
enum isl_tab_row_sign * row_sign
Definition: isl_tab.h:154
int * row_var
Definition: isl_tab.h:152
unsigned n_param
Definition: isl_tab.h:144
unsigned n_redundant
Definition: isl_tab.h:141
struct isl_mat * basis
Definition: isl_tab.h:169
unsigned n_outside
Definition: isl_tab.h:163
unsigned n_row
Definition: isl_tab.h:138
unsigned n_div
Definition: isl_tab.h:145
int n_zero
Definition: isl_tab.h:167
struct isl_tab_var * var
Definition: isl_tab.h:150
unsigned max_var
Definition: isl_tab.h:146
int(* conflict)(int con, void *user)
Definition: isl_tab.h:171
unsigned preserve
Definition: isl_tab.h:176
isl_mat * trivial
Definition: isl_tab.h:271
struct isl_tab_callback * callback
Definition: isl_tab.h:59
int * col_var
Definition: isl_tab.h:57