This file is indexed.

/usr/include/isl/aff_type.h is in libisl-dev 0.19-1.

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
40
41
42
43
44
45
46
47
48
49
50
#ifndef ISL_AFF_TYPE_H
#define ISL_AFF_TYPE_H

#include <isl/list.h>

#if defined(__cplusplus)
extern "C" {
#endif

struct __isl_subclass(isl_multi_aff) __isl_subclass(isl_pw_aff) isl_aff;
typedef struct isl_aff isl_aff;

ISL_DECLARE_LIST(aff)

struct __isl_subclass(isl_multi_pw_aff) __isl_subclass(isl_pw_multi_aff)
	__isl_subclass(isl_union_pw_aff) isl_pw_aff;
typedef struct isl_pw_aff isl_pw_aff;

ISL_DECLARE_LIST(pw_aff)

struct __isl_subclass(isl_multi_union_pw_aff)
	__isl_subclass(isl_union_pw_multi_aff) isl_union_pw_aff;
typedef struct isl_union_pw_aff isl_union_pw_aff;

ISL_DECLARE_LIST_TYPE(union_pw_aff)

struct __isl_subclass(isl_multi_pw_aff) __isl_subclass(isl_pw_multi_aff)
	isl_multi_aff;
typedef struct isl_multi_aff isl_multi_aff;

struct __isl_subclass(isl_multi_pw_aff) __isl_subclass(isl_union_pw_multi_aff)
	isl_pw_multi_aff;
typedef struct isl_pw_multi_aff isl_pw_multi_aff;

struct __isl_export isl_union_pw_multi_aff;
typedef struct isl_union_pw_multi_aff isl_union_pw_multi_aff;

ISL_DECLARE_LIST_TYPE(union_pw_multi_aff)

struct __isl_subclass(isl_multi_union_pw_aff) isl_multi_pw_aff;
typedef struct isl_multi_pw_aff isl_multi_pw_aff;

struct __isl_export isl_multi_union_pw_aff;
typedef struct isl_multi_union_pw_aff isl_multi_union_pw_aff;

#if defined(__cplusplus)
}
#endif

#endif