summaryrefslogtreecommitdiff
path: root/isl_sample_piplib.h
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2008-08-10 12:19:33 +0200
committerSven Verdoolaege <skimo@kotnet.org>2008-08-25 09:24:18 +0200
commit6dce9ad199bb99682d17f9fbdd987e81c3d96b75 (patch)
tree9c7dfcdb35445a1699cf05f4e82d83ff7218bfea /isl_sample_piplib.h
parent2baa5ca8e16271215a7f68ca5f75d34c68f1cd5f (diff)
downloadisl-6dce9ad199bb99682d17f9fbdd987e81c3d96b75.tar.gz
isl-6dce9ad199bb99682d17f9fbdd987e81c3d96b75.tar.bz2
isl-6dce9ad199bb99682d17f9fbdd987e81c3d96b75.zip
reimplement isl_basic_map_is_empty in terms of isl_basic_set_sample
Diffstat (limited to 'isl_sample_piplib.h')
-rw-r--r--isl_sample_piplib.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/isl_sample_piplib.h b/isl_sample_piplib.h
new file mode 100644
index 00000000..8f686202
--- /dev/null
+++ b/isl_sample_piplib.h
@@ -0,0 +1,17 @@
+#ifndef ISL_SAMPLE_PIP_H
+#define ISL_SAMPLE_PIP
+
+#include <isl_set.h>
+
+#if defined(__cplusplus)
+extern "C" {
+#endif
+
+struct isl_vec *isl_pip_basic_set_sample(struct isl_ctx *ctx,
+ struct isl_basic_set *bset);
+
+#if defined(__cplusplus)
+}
+#endif
+
+#endif