brintos

brintos / llvm-project-archived public Read only

0
0
Text · 540 B · 2517c2f Raw
28 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_BASIS_REDUCTION_H11#define ISL_BASIS_REDUCTION_H12 13#include <isl/set.h>14#include <isl_mat_private.h>15#include "isl_tab.h"16 17#if defined(__cplusplus)18extern "C" {19#endif20 21struct isl_tab *isl_tab_compute_reduced_basis(struct isl_tab *tab);22 23#if defined(__cplusplus)24}25#endif26 27#endif28