summaryrefslogtreecommitdiff
path: root/isl_sample.c
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2010-10-23 13:42:21 +0200
committerSven Verdoolaege <skimo@kotnet.org>2010-10-26 16:38:43 +0200
commit27b6c995aaab20bf3b51b4adbba4a465a48c231c (patch)
treec9af0d4632d04f484c6ca72a7da575ab7db828f3 /isl_sample.c
parenta7925d1b317c04bbe41c0b59d70dd12f2f1a8174 (diff)
downloadisl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.tar.gz
isl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.tar.bz2
isl-27b6c995aaab20bf3b51b4adbba4a465a48c231c.zip
rename isl_map_remove to isl_map_remove_dims
The new name is more consistent with other functions and avoids confusion as to what is being added. Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Diffstat (limited to 'isl_sample.c')
-rw-r--r--isl_sample.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/isl_sample.c b/isl_sample.c
index 8413a2fd..2bd7c6b2 100644
--- a/isl_sample.c
+++ b/isl_sample.c
@@ -782,7 +782,8 @@ static struct isl_vec *round_up_in_cone(struct isl_vec *vec,
total = isl_basic_set_total_dim(cone);
cone = isl_basic_set_preimage(cone, U);
- cone = isl_basic_set_remove_dims(cone, 0, total - (vec->size - 1));
+ cone = isl_basic_set_remove_dims(cone, isl_dim_set,
+ 0, total - (vec->size - 1));
cone = shift_cone(cone, vec);