/usr/include/cloog/ppl/domain.h is in libcloog-ppl-dev 0.16.1-7.
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 | #ifndef CLOOG_PPL_DOMAIN_H
#define CLOOG_PPL_DOMAIN_H
#include <ppl_c.h>
#if defined(__cplusplus)
extern "C"
{
#endif
struct cloogdomain {
CloogState *state;
ppl_Pointset_Powerset_C_Polyhedron_t ps;
int nb_par;
int refs;
};
struct cloogscattering {
struct cloogdomain dom;
};
#if defined(__cplusplus)
}
#endif
#endif /* define _H */
|