/usr/include/cloog/isl/constraintset.h is in libcloog-isl-dev 0.18.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 | #ifndef CLOOG_ISL_CONSTRAINTSET_H
#define CLOOG_ISL_CONSTRAINTSET_H
#include <cloog/isl/backend.h>
#if defined(__cplusplus)
extern "C"
{
#endif
struct cloogconstraintset {
int dummy; /* Solaris cc doesn't like zero-sized structs */
};
struct cloogequalities {
int n;
unsigned total_dim;
isl_constraint **constraints;
int *types;
};
struct cloogconstraint {
int dummy; /* Solaris cc doesn't like zero-sized structs */
};
CloogConstraintSet *cloog_constraint_set_from_isl_basic_set(struct isl_basic_set *bset);
CloogConstraint *cloog_constraint_from_isl_constraint(struct isl_constraint *constraint);
isl_constraint *cloog_constraint_to_isl(CloogConstraint *constraint);
__isl_give isl_val *cloog_int_to_isl_val(isl_ctx* ctx, cloog_int_t c);
void isl_val_to_cloog_int(__isl_keep isl_val *val, cloog_int_t *cint);
__isl_give isl_val *cloog_constraint_coefficient_get_val(CloogConstraint *constraint,
int var);
#if defined(__cplusplus)
}
#endif
#endif /* define _H */
|