isl_ast_build_ast_from_schedule: improve handling of unroll options
[isl.git] / isl_equalities.h
blob0206cd1c22221314dcc5d82609a260089b31f973
1 /*
2 * Copyright 2008-2009 Katholieke Universiteit Leuven
4 * Use of this software is governed by the MIT license
6 * Written by Sven Verdoolaege, K.U.Leuven, Departement
7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
8 */
10 #ifndef ISL_EQUALITIES_H
11 #define ISL_EQUALITIES_H
13 #include <isl/set.h>
14 #include <isl/mat.h>
16 #if defined(__cplusplus)
17 extern "C" {
18 #endif
20 __isl_give isl_mat *isl_mat_variable_compression(__isl_take isl_mat *B,
21 __isl_give isl_mat **T2);
22 struct isl_mat *isl_mat_parameter_compression(
23 struct isl_mat *B, struct isl_vec *d);
24 __isl_give isl_mat *isl_mat_parameter_compression_ext(__isl_take isl_mat *B,
25 __isl_take isl_mat *A);
26 struct isl_basic_set *isl_basic_set_remove_equalities(
27 struct isl_basic_set *bset, struct isl_mat **T, struct isl_mat **T2);
29 #if defined(__cplusplus)
31 #endif
33 #endif