isl_poly_is_nan: use isl_bool_ok
[isl.git] / include / isl / fixed_box.h
blob5a40a6f0ac70c175fc8231101a5c813c1c53c302
1 /*
2 * Use of this software is governed by the MIT license
3 */
5 #ifndef ISL_FIXED_BOX_H
6 #define ISL_FIXED_BOX_H
8 #include <isl/ctx.h>
9 #include <isl/val_type.h>
10 #include <isl/space_type.h>
11 #include <isl/aff_type.h>
13 #if defined(__cplusplus)
14 extern "C" {
15 #endif
17 struct isl_fixed_box;
18 typedef struct isl_fixed_box isl_fixed_box;
20 isl_ctx *isl_fixed_box_get_ctx(__isl_keep isl_fixed_box *box);
21 __isl_give isl_space *isl_fixed_box_get_space(__isl_keep isl_fixed_box *box);
22 isl_bool isl_fixed_box_is_valid(__isl_keep isl_fixed_box *box);
23 __isl_give isl_multi_aff *isl_fixed_box_get_offset(
24 __isl_keep isl_fixed_box *box);
25 __isl_give isl_multi_val *isl_fixed_box_get_size(__isl_keep isl_fixed_box *box);
27 __isl_give isl_fixed_box *isl_fixed_box_copy(__isl_keep isl_fixed_box *box);
28 __isl_null isl_fixed_box *isl_fixed_box_free(__isl_take isl_fixed_box *box);
30 #if defined(__cplusplus)
32 #endif
34 #endif