summaryrefslogtreecommitdiff
path: root/isl_map_piplib.c
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2008-08-09 15:49:49 +0200
committerSven Verdoolaege <skimo@kotnet.org>2008-08-25 09:24:18 +0200
commit60a47c13e01346f5c63aa46c80bd8e1f73910f48 (patch)
treeba722d9739105e7ee6b9b0ebc552d93861f1361a /isl_map_piplib.c
parent92be44b2a7d8c292c746fb9a06da79c71c85b4c4 (diff)
downloadisl-60a47c13e01346f5c63aa46c80bd8e1f73910f48.tar.gz
isl-60a47c13e01346f5c63aa46c80bd8e1f73910f48.tar.bz2
isl-60a47c13e01346f5c63aa46c80bd8e1f73910f48.zip
avoid preprocessor conditionals
Diffstat (limited to 'isl_map_piplib.c')
-rw-r--r--isl_map_piplib.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/isl_map_piplib.c b/isl_map_piplib.c
index 8dad2651..f5741c0f 100644
--- a/isl_map_piplib.c
+++ b/isl_map_piplib.c
@@ -1,7 +1,7 @@
-#include <piplib/piplibMP.h>
#include "isl_set.h"
#include "isl_map.h"
-#include "isl_map_private.h"
+#include "isl_piplib.h"
+#include "isl_map_piplib.h"
static void copy_values_from(isl_int *dst, Entier *src, unsigned n)
{
@@ -204,7 +204,7 @@ error:
* Returns a map with "context" as domain and as range the first
* "keep" variables in the quast lists.
*/
-struct isl_map *isl_map_from_quast(struct isl_ctx *ctx, PipQuast *q,
+static struct isl_map *isl_map_from_quast(struct isl_ctx *ctx, PipQuast *q,
unsigned keep,
struct isl_basic_set *context,
struct isl_set **rest)
@@ -421,21 +421,21 @@ error:
return NULL;
}
-struct isl_map *pip_isl_basic_map_lexmax(struct isl_ctx *ctx,
+struct isl_map *isl_pip_basic_map_lexmax(struct isl_ctx *ctx,
struct isl_basic_map *bmap, struct isl_basic_set *dom,
struct isl_set **empty)
{
return extremum_on(ctx, bmap, dom, empty, 1);
}
-struct isl_map *pip_isl_basic_map_lexmin(struct isl_ctx *ctx,
+struct isl_map *isl_pip_basic_map_lexmin(struct isl_ctx *ctx,
struct isl_basic_map *bmap, struct isl_basic_set *dom,
struct isl_set **empty)
{
return extremum_on(ctx, bmap, dom, empty, 0);
}
-struct isl_map *pip_isl_basic_map_compute_divs(struct isl_ctx *ctx,
+struct isl_map *isl_pip_basic_map_compute_divs(struct isl_ctx *ctx,
struct isl_basic_map *bmap)
{
PipMatrix *domain = NULL, *context = NULL;