brintos

brintos / llvm-project-archived public Read only

0
0
Text · 991 B · 05c69dd Raw
37 lines · c
1/*2 * Copyright 2008-2009 Katholieke Universiteit Leuven3 *4 * Use of this software is governed by the MIT license5 *6 * Written by Sven Verdoolaege, K.U.Leuven, Departement7 * Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium8 */9 10#ifndef ISL_EQUALITIES_H11#define ISL_EQUALITIES_H12 13#include <isl/set.h>14#include <isl/mat.h>15 16#if defined(__cplusplus)17extern "C" {18#endif19 20__isl_give isl_mat *isl_mat_final_variable_compression(__isl_take isl_mat *B,21	int first, __isl_give isl_mat **T2);22__isl_give isl_mat *isl_mat_variable_compression(__isl_take isl_mat *B,23	__isl_give isl_mat **T2);24__isl_give isl_mat *isl_mat_parameter_compression(__isl_take isl_mat *B,25	__isl_take isl_vec *d);26__isl_give isl_mat *isl_mat_parameter_compression_ext(__isl_take isl_mat *B,27	__isl_take isl_mat *A);28__isl_give isl_basic_set *isl_basic_set_remove_equalities(29	__isl_take isl_basic_set *bset, __isl_give isl_mat **T,30	__isl_give isl_mat **T2);31 32#if defined(__cplusplus)33}34#endif35 36#endif37