export isl_pw_qpolynomial_fold_add
[isl.git] / isl_mat_private.h
blobef7474e04c4b5a4ce48c8fde7b87b1e8e35f6fee
1 #include <isl_mat.h>
3 struct isl_mat {
4 int ref;
6 struct isl_ctx *ctx;
8 #define ISL_MAT_BORROWED (1 << 0)
9 unsigned flags;
11 unsigned n_row;
12 unsigned n_col;
14 isl_int **row;
16 /* actual size of the rows in memory; n_col <= max_col */
17 unsigned max_col;
19 struct isl_blk block;