summaryrefslogtreecommitdiff
path: root/isl_morph.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_morph.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_morph.c')
-rw-r--r--isl_morph.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/isl_morph.c b/isl_morph.c
index 8bc4db82..ca404cdb 100644
--- a/isl_morph.c
+++ b/isl_morph.c
@@ -126,7 +126,7 @@ __isl_give isl_morph *isl_morph_remove_dom_dims(__isl_take isl_morph *morph,
dom_offset = 1 + isl_dim_offset(morph->dom->dim, type);
- morph->dom = isl_basic_set_remove(morph->dom, type, first, n);
+ morph->dom = isl_basic_set_remove_dims(morph->dom, type, first, n);
morph->map = isl_mat_drop_cols(morph->map, dom_offset + first, n);
@@ -153,7 +153,7 @@ __isl_give isl_morph *isl_morph_remove_ran_dims(__isl_take isl_morph *morph,
ran_offset = 1 + isl_dim_offset(morph->ran->dim, type);
- morph->ran = isl_basic_set_remove(morph->ran, type, first, n);
+ morph->ran = isl_basic_set_remove_dims(morph->ran, type, first, n);
morph->map = isl_mat_drop_rows(morph->map, ran_offset + first, n);