summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2012-08-26 15:53:42 +0200
committerSven Verdoolaege <skimo@kotnet.org>2012-09-18 15:08:21 +0200
commit434a5f8ee9341eec9d88fa9032e7fe7753494c93 (patch)
tree44577c0e2295269f935038d215f7cfb83c1be5ae /doc
parent225c7e232df74cf93c7b0c1f945bbdf7581cc455 (diff)
downloadisl-434a5f8ee9341eec9d88fa9032e7fe7753494c93.tar.gz
isl-434a5f8ee9341eec9d88fa9032e7fe7753494c93.tar.bz2
isl-434a5f8ee9341eec9d88fa9032e7fe7753494c93.zip
add isl_set_dim_has_{lower,upper}_bound
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/user.pod12
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/user.pod b/doc/user.pod
index e13d4893..9192efa1 100644
--- a/doc/user.pod
+++ b/doc/user.pod
@@ -176,6 +176,8 @@ A call C<isl_pw_aff_cond(a, b, c)> can be replaced by
C<isl_set_dim_has_upper_bound> have been renamed to
C<isl_set_dim_has_any_lower_bound> and
C<isl_set_dim_has_any_upper_bound>.
+The new C<isl_set_dim_has_lower_bound> and
+C<isl_set_dim_has_upper_bound> have slightly different meanings.
=back
@@ -1675,6 +1677,16 @@ a given dimension is involved in any lower or upper bound.
int isl_set_dim_has_any_upper_bound(__isl_keep isl_set *set,
enum isl_dim_type type, unsigned pos);
+Note that these functions return true even if there is a bound on
+the dimension on only some of the basic sets of C<set>.
+To check if they have a bound for all of the basic sets in C<set>,
+use the following functions instead.
+
+ int isl_set_dim_has_lower_bound(__isl_keep isl_set *set,
+ enum isl_dim_type type, unsigned pos);
+ int isl_set_dim_has_upper_bound(__isl_keep isl_set *set,
+ enum isl_dim_type type, unsigned pos);
+
The identifiers or names of the domain and range spaces of a set
or relation can be read off or set using the following functions.