1 #ifndef CLOOG_MATRIX_CONSTRAINTSET_H 2 #define CLOOG_MATRIX_CONSTRAINTSET_H 3 4 #if defined(__cplusplus) 5 extern "C" 6 { 7 #endif 8 9 struct cloogconstraintset { 10 CloogMatrix M; 11 }; 12 13 struct cloogequalities { 14 CloogConstraintSet *constraints; 15 int *types; 16 }; 17 18 struct cloogconstraint { 19 CloogConstraintSet *set; 20 cloog_int_t **line; 21 }; 22 23 CloogConstraintSet *cloog_constraint_set_from_cloog_matrix(CloogMatrix *M); 24 25 #if defined(__cplusplus) 26 } 27 #endif 28 #endif /* define _H */ 29