extract out pet_to_bool
[pet.git] / aff.h
blobc7f39fbb6ac0ab339f86bcdab35f315a263bdabd
1 #ifndef PET_AFF_H
2 #define PET_AFF_H
4 #include <pet.h>
6 #include <isl/aff.h>
8 #if defined(__cplusplus)
9 extern "C" {
10 #endif
12 __isl_give isl_pw_aff *pet_and(__isl_take isl_pw_aff *lhs,
13 __isl_take isl_pw_aff *rhs);
14 __isl_give isl_pw_aff *pet_not(__isl_take isl_pw_aff *pa);
15 __isl_give isl_pw_aff *pet_to_bool(__isl_take isl_pw_aff *pa);
16 __isl_give isl_pw_aff *pet_comparison(enum pet_op_type type,
17 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2);
19 #if defined(__cplusplus)
21 #endif
23 #endif