isl_aff_gist: add missing isl_vec_cow
[isl.git] / include / isl / multi.h
blob31b7acaf922dd9643bf131f62a9487d19e5f171e
1 #ifndef ISL_MULTI_H
2 #define ISL_MULTI_H
4 #include <isl/list.h>
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
10 #define ISL_DECLARE_MULTI(BASE) \
11 __isl_give isl_multi_##BASE *isl_multi_##BASE##_from_##BASE##_list( \
12 __isl_take isl_space *space, __isl_take isl_##BASE##_list *list); \
13 const char *isl_multi_##BASE##_get_tuple_name( \
14 __isl_keep isl_multi_##BASE *multi, enum isl_dim_type type); \
15 __isl_give isl_multi_##BASE *isl_multi_##BASE##_set_##BASE( \
16 __isl_take isl_multi_##BASE *multi, int pos, \
17 __isl_take isl_##BASE *el);
19 ISL_DECLARE_MULTI(aff)
20 ISL_DECLARE_MULTI(pw_aff)
22 #if defined(__cplusplus)
24 #endif
26 #endif