From eed84c87a94647f81aa340c5d1ef9b4c270d7467 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Tue, 26 Aug 2008 10:09:56 +0200 Subject: [PATCH] add isl_set_compute_divs --- isl_map.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/isl_map.c b/isl_map.c index 97e9939..e8aefcf 100644 --- a/isl_map.c +++ b/isl_map.c @@ -2517,6 +2517,13 @@ struct isl_set *isl_basic_set_compute_divs(struct isl_ctx *ctx, (struct isl_basic_map *)bset); } +struct isl_set *isl_set_compute_divs(struct isl_ctx *ctx, + struct isl_set *set) +{ + return (struct isl_set *) + isl_map_compute_divs(ctx, (struct isl_map *)set); +} + struct isl_set *isl_map_domain(struct isl_ctx *ctx, struct isl_map *map) { int i; -- 2.7.4