2015-02-17 03:33:40 +08:00
|
|
|
#define isl_union_set_list isl_union_map_list
|
2015-02-05 04:55:43 +08:00
|
|
|
#define isl_union_set isl_union_map
|
|
|
|
#include <isl/union_map.h>
|
|
|
|
#include <isl/union_set.h>
|
|
|
|
|
|
|
|
struct isl_union_map {
|
|
|
|
int ref;
|
|
|
|
isl_space *dim;
|
|
|
|
|
|
|
|
struct isl_hash_table table;
|
|
|
|
};
|
2015-02-17 03:33:40 +08:00
|
|
|
|
2017-03-10 17:17:55 +08:00
|
|
|
isl_bool isl_union_map_space_has_equal_params(__isl_keep isl_union_map *umap,
|
|
|
|
__isl_keep isl_space *space);
|
2018-02-20 15:26:42 +08:00
|
|
|
isl_bool isl_union_set_space_has_equal_params(__isl_keep isl_union_set *uset,
|
|
|
|
__isl_keep isl_space *space);
|
2015-02-17 03:33:40 +08:00
|
|
|
__isl_give isl_union_map *isl_union_map_reset_range_space(
|
|
|
|
__isl_take isl_union_map *umap, __isl_take isl_space *space);
|