From f54384e54a77d146f5dd4ad93309eb8e8e05fe88 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Fri, 20 Feb 2015 11:09:27 +0100 Subject: [PATCH] deprecate isl_basic_set_drop_constraint This function is too closely tied to the internal representation. We will want to remove it at some point, We certainly do not want any new users for this function. Signed-off-by: Sven Verdoolaege --- doc/user.pod | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/user.pod b/doc/user.pod index 0148037f..e4287bab 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -233,6 +233,9 @@ C. Similarly for the no source relations. The function C is still available for backward compatibility, but it will be removed in the future. +=item * The function C has been +deprecated. + =back =head1 License @@ -1884,9 +1887,6 @@ using the following functions. __isl_give isl_set *isl_set_add_constraint( __isl_take isl_set *set, __isl_take isl_constraint *constraint); - __isl_give isl_basic_set *isl_basic_set_drop_constraint( - __isl_take isl_basic_set *bset, - __isl_take isl_constraint *constraint); For example, to create a set containing the even integers between 10 and 42, you would use the following code. -- 2.11.4.GIT