With this patch Polly is always GPL-free (no dependency on GMP any more). As a result, building and distributing Polly will be easier. Furthermore, there is no need to tightly coordinate isl and Polly releases anymore. We import isl b3e0fa7a05d as well as imath 4d707e5ef2. These are the git versions Polly currently was tested with when using utils/checkout_isl.sh. The imported libraries are both MIT-style licensed. We build isl and imath with -fvisibility=hidden to avoid clashes in case other projects (such as gcc) use conflicting versions of isl. The use of imath can temporarily reduce compile-time performance of Polly. We will work on performance tuning in tree. Patches to isl should be contributed first to the main isl repository and can then later be reimported to Polly. This patch is also a prerequisite for the upcoming isl C++ interface. llvm-svn: 228193
36 lines
914 B
C
36 lines
914 B
C
/*
|
|
* Copyright 2008-2009 Katholieke Universiteit Leuven
|
|
*
|
|
* Use of this software is governed by the MIT license
|
|
*
|
|
* Written by Sven Verdoolaege, K.U.Leuven, Departement
|
|
* Computerwetenschappen, Celestijnenlaan 200A, B-3001 Leuven, Belgium
|
|
*/
|
|
|
|
#ifndef ISL_SAMPLE_H
|
|
#define ISL_SAMPLE_H
|
|
|
|
#include <isl/set.h>
|
|
#include <isl_tab.h>
|
|
|
|
#if defined(__cplusplus)
|
|
extern "C" {
|
|
#endif
|
|
|
|
__isl_give isl_vec *isl_basic_set_sample_vec(__isl_take isl_basic_set *bset);
|
|
struct isl_vec *isl_basic_set_sample_bounded(struct isl_basic_set *bset);
|
|
__isl_give isl_vec *isl_basic_set_sample_with_cone(
|
|
__isl_take isl_basic_set *bset, __isl_take isl_basic_set *cone);
|
|
|
|
__isl_give isl_basic_set *isl_basic_set_from_vec(__isl_take isl_vec *vec);
|
|
|
|
int isl_tab_set_initial_basis_with_cone(struct isl_tab *tab,
|
|
struct isl_tab *tab_cone);
|
|
struct isl_vec *isl_tab_sample(struct isl_tab *tab);
|
|
|
|
#if defined(__cplusplus)
|
|
}
|
|
#endif
|
|
|
|
#endif
|