This file is indexed.

/usr/lib/slepcdir/3.1/include/slepcversion.h is in libslepc3.1-dev 3.1-p6.dfsg-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
#if !defined(__SLEPCVERSION_H)
#define __SLEPCVERSION_H

#define SLEPC_VERSION_RELEASE    1
#define SLEPC_VERSION_MAJOR      3
#define SLEPC_VERSION_MINOR      1
#define SLEPC_VERSION_SUBMINOR   0
#define SLEPC_VERSION_PATCH      6
#define SLEPC_VERSION_DATE       "August 4, 2010"
#define SLEPC_VERSION_PATCH_DATE "February 21, 2011"
#define SLEPC_AUTHOR_INFO        "        The SLEPc Team\n\
   slepc-maint@grycap.upv.es\n\
 http://www.grycap.upv.es/slepc\n"

#define SLEPC_VERSION_(MAJOR,MINOR,SUBMINOR) \
 ((SLEPC_VERSION_MAJOR == (MAJOR)) &&       \
  (SLEPC_VERSION_MINOR == (MINOR)) &&       \
  (SLEPC_VERSION_SUBMINOR == (SUBMINOR)) && \
  (SLEPC_VERSION_RELEASE  == 1))

#endif