isl_basic_map_gist: unique lower or upper bounds are never redundant
[isl.git] / isl_vec.h
blob67336163e55f516edd13d5463c511fe605eb5d72
1 #ifndef ISL_VEC_H
2 #define ISL_VEC_H
4 #include <stdio.h>
6 #include <isl_int.h>
7 #include <isl_ctx.h>
8 #include <isl_blk.h>
10 #if defined(__cplusplus)
11 extern "C" {
12 #endif
14 struct isl_vec {
15 int ref;
17 unsigned size;
19 struct isl_blk block;
22 struct isl_vec *isl_vec_alloc(struct isl_ctx *ctx, unsigned size);
23 struct isl_vec *isl_vec_copy(struct isl_ctx *ctx, struct isl_vec *vec);
24 void isl_vec_free(struct isl_ctx *ctx, struct isl_vec *vec);
26 void isl_vec_dump(struct isl_ctx *ctx, struct isl_vec *vec,
27 FILE *out, int indent);
29 #if defined(__cplusplus)
31 #endif
33 #endif