extract out pet_not
[pet.git] / aff.h
blob8589b689ffeaa59fe4aede928fca9aa7085ff337
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_comparison(enum pet_op_type type,
16 __isl_take isl_pw_aff *pa1, __isl_take isl_pw_aff *pa2);
18 #if defined(__cplusplus)
20 #endif
22 #endif