export isl_space_is_domain
authorSven Verdoolaege <skimo@kotnet.org>
Tue, 7 Aug 2012 14:46:55 +0000 (16:46 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Tue, 7 Aug 2012 14:53:39 +0000 (16:53 +0200)
We cannot simply export the private isl_space_is_domain however, since
that one is also used in cases where the first argument is a parameter
space and the second argument is a set space.

Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
doc/user.pod
include/isl/space.h
isl_pw_templ.c
isl_space.c
isl_space_private.h

index af31a03..159dba3 100644 (file)
@@ -616,11 +616,18 @@ or whether it is a parameter space, use these functions:
        int isl_space_is_set(__isl_keep isl_space *space);
        int isl_space_is_map(__isl_keep isl_space *space);
 
-Spaces can be compared using the following function:
+Spaces can be compared using the following functions:
 
        #include <isl/space.h>
        int isl_space_is_equal(__isl_keep isl_space *space1,
                __isl_keep isl_space *space2);
+       int isl_space_is_domain(__isl_keep isl_space *space1,
+               __isl_keep isl_space *space2);
+
+C<isl_space_is_domain> checks whether the first argument is equal
+to the domain of the second argument.  This requires in particular that
+the first argument is a set space and that the second argument
+is a map space.
 
 It is often useful to create objects that live in the
 same space as some other object.  This can be accomplished
index e3d7e04..ec552c4 100644 (file)
@@ -125,6 +125,8 @@ __isl_give isl_space *isl_space_zip(__isl_take isl_space *dim);
 int isl_space_can_curry(__isl_keep isl_space *space);
 __isl_give isl_space *isl_space_curry(__isl_take isl_space *space);
 
+int isl_space_is_domain(__isl_keep isl_space *space1,
+       __isl_keep isl_space *space2);
 int isl_space_is_equal(__isl_keep isl_space *space1,
        __isl_keep isl_space *space2);
 int isl_space_match(__isl_keep isl_space *dim1, enum isl_dim_type dim1_type,
index ec8f12e..b80e084 100644 (file)
@@ -648,7 +648,8 @@ __isl_give isl_qpolynomial *FN(PW,eval)(__isl_take PW *pw,
                goto error;
        ctx = isl_point_get_ctx(pnt);
        pnt_dim = isl_point_get_space(pnt);
-       isl_assert(ctx, isl_space_is_domain(pnt_dim, pw->dim), goto error);
+       isl_assert(ctx, isl_space_is_domain_internal(pnt_dim, pw->dim),
+                   goto error);
 
        for (i = 0; i < pw->n; ++i) {
                found = isl_set_contains_point(pw->p[i].set, pnt);
@@ -1307,7 +1308,7 @@ __isl_give PW *FN(PW,morph_domain)(__isl_take PW *pw,
                goto error;
 
        ctx = isl_space_get_ctx(pw->dim);
-       isl_assert(ctx, isl_space_is_domain(morph->dom->dim, pw->dim),
+       isl_assert(ctx, isl_space_is_domain_internal(morph->dom->dim, pw->dim),
                goto error);
 
        pw = FN(PW,cow)(pw);
index 3ec09d2..e54fbde 100644 (file)
@@ -1473,8 +1473,11 @@ int isl_space_is_equal(__isl_keep isl_space *dim1, __isl_keep isl_space *dim2)
 }
 
 /* Is space1 equal to the domain of space2?
+ *
+ * In the internal version we also allow space2 to be the space of a set,
+ * provided space1 is a parameter space.
  */
-int isl_space_is_domain(__isl_keep isl_space *space1,
+int isl_space_is_domain_internal(__isl_keep isl_space *space1,
        __isl_keep isl_space *space2)
 {
        if (!space1 || !space2)
@@ -1485,6 +1488,18 @@ int isl_space_is_domain(__isl_keep isl_space *space1,
               isl_space_tuple_match(space1, isl_dim_set, space2, isl_dim_in);
 }
 
+/* Is space1 equal to the domain of space2?
+ */
+int isl_space_is_domain(__isl_keep isl_space *space1,
+       __isl_keep isl_space *space2)
+{
+       if (!space2)
+               return -1;
+       if (!isl_space_is_map(space2))
+               return 0;
+       return isl_space_is_domain_internal(space1, space2);
+}
+
 int isl_space_compatible(__isl_keep isl_space *dim1,
        __isl_keep isl_space *dim2)
 {
index 73762de..031a332 100644 (file)
@@ -26,7 +26,7 @@ __isl_give isl_space *isl_space_underlying(__isl_take isl_space *dim,
 
 uint32_t isl_space_get_hash(__isl_keep isl_space *dim);
 
-int isl_space_is_domain(__isl_keep isl_space *space1,
+int isl_space_is_domain_internal(__isl_keep isl_space *space1,
        __isl_keep isl_space *space2);
 
 __isl_give isl_space *isl_space_as_set_space(__isl_take isl_space *dim);