This file is indexed.

/usr/include/TiledArray/config.h is in libtiledarray-dev 0.4.4-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
51
52
/*
 *  This file is a part of TiledArray.
 *  Copyright (C) 2013  Virginia Tech
 *
 *  This program is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 */

#ifndef TILEDARRAY_CONFIG_H__INCLUDED
#define TILEDARRAY_CONFIG_H__INCLUDED

#include <madness/madness_config.h>

/* Defines a string with the Git SHA1 revision hash tag of TiledArray */
#define TILEDARRAY_REVISION "0.4.4-alpha"

/* Defines the default error checking behavior. none = 0, throw = 1, assert = 2 */
#define TA_DEFAULT_ERROR 1

/* define if compiler supports long double, the value is sizeof(long double) */
#define TILEDARRAY_HAS_LONG_DOUBLE 1

/* define if compiler supports long long, the value is sizeof(long long) */
#define TILEDARRAY_HAS_LONG_LONG 1

/* define if compiler supports static_assert. */
/* #undef TILEDARRAY_HAVE_STATIC_ASSERT */

/* define if compiler supports variadic templates. */
/* #undef TILEDARRAY_HAVE_VARIADIC_TEMPLATES */

/* Define the default alignment for arrays required by vector operations. */
#define TILEDARRAY_ALIGNMENT 

/* Define the size of the CPU L1 cache lines. */
#define TILEDARRAY_CACHELINE_SIZE 64

/* Define if MADNESS configured with Elemental support */
/* #undef TILEDARRAY_HAS_ELEMENTAL */

#endif // TILEDARRAY_CONFIG_H__INCLUDED