From 2c62636c7802871e0c809488b9be62ab47d08d44 Mon Sep 17 00:00:00 2001 From: Cedric Bastoul Date: Fri, 5 Dec 2014 15:08:13 +0100 Subject: [PATCH] Update deprecated calls to isl --- source/isl/domain.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/isl/domain.c b/source/isl/domain.c index 1625c16..97cfe48 100644 --- a/source/isl/domain.c +++ b/source/isl/domain.c @@ -1089,7 +1089,7 @@ int cloog_domain_lazy_equal(CloogDomain *d1, CloogDomain *d2) { isl_set *set1 = isl_set_from_cloog_domain(d1); isl_set *set2 = isl_set_from_cloog_domain(d2); - return isl_set_fast_is_equal(set1, set2); + return isl_set_plain_is_equal(set1, set2); } struct cloog_bound_split { @@ -1280,7 +1280,7 @@ int cloog_domain_lazy_disjoint(CloogDomain *d1, CloogDomain *d2) { isl_set *set1 = isl_set_from_cloog_domain(d1); isl_set *set2 = isl_set_from_cloog_domain(d2); - return isl_set_fast_is_disjoint(set1, set2); + return isl_set_plain_is_disjoint(set1, set2); } @@ -1298,7 +1298,7 @@ int cloog_scattering_list_lazy_same(CloogScatteringList *list) one_map = isl_map_from_cloog_scattering(one->scatt); for (other = one->next; other; other = other->next) { other_map = isl_map_from_cloog_scattering(other->scatt); - if (isl_map_fast_is_equal(one_map, other_map)) + if (isl_map_plain_is_equal(one_map, other_map)) return 1; } } -- 2.11.4.GIT