From 8bc8eca5cde32452a965acd87203a0909a8b1a3d Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sun, 9 Feb 2014 10:18:49 +0100 Subject: [PATCH] doc: reorder preimage functions Signed-off-by: Sven Verdoolaege --- doc/user.pod | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/doc/user.pod b/doc/user.pod index 45f187d1..479d6ff7 100644 --- a/doc/user.pod +++ b/doc/user.pod @@ -3061,6 +3061,7 @@ a parametric set as well. =item * Preimage + #include __isl_give isl_basic_set * isl_basic_set_preimage_multi_aff( __isl_take isl_basic_set *bset, @@ -3074,6 +3075,8 @@ a parametric set as well. __isl_give isl_set *isl_set_preimage_multi_pw_aff( __isl_take isl_set *set, __isl_take isl_multi_pw_aff *mpa); + + #include __isl_give isl_basic_map * isl_basic_map_preimage_domain_multi_aff( __isl_take isl_basic_map *bmap, @@ -3089,15 +3092,17 @@ a parametric set as well. isl_map_preimage_domain_multi_pw_aff( __isl_take isl_map *map, __isl_take isl_multi_pw_aff *mpa); - __isl_give isl_union_map * - isl_union_map_preimage_domain_multi_aff( - __isl_take isl_union_map *umap, - __isl_take isl_multi_aff *ma); __isl_give isl_basic_map * isl_basic_map_preimage_range_multi_aff( __isl_take isl_basic_map *bmap, __isl_take isl_multi_aff *ma); + #include + __isl_give isl_union_map * + isl_union_map_preimage_domain_multi_aff( + __isl_take isl_union_map *umap, + __isl_take isl_multi_aff *ma); + These functions compute the preimage of the given set or map domain/range under the given function. In other words, the expression is plugged into the set description or into the domain/range of the map. -- 2.11.4.GIT