This file is indexed.

/usr/include/eigen2/Eigen/SVD is in libeigen2-dev 2.0.17-1ubuntu1.

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
#ifndef EIGEN_SVD_MODULE_H
#define EIGEN_SVD_MODULE_H

#include "Core"

#include "src/Core/util/DisableMSVCWarnings.h"

namespace Eigen {

/** \defgroup SVD_Module SVD module
  *
  * \nonstableyet
  *
  * This module provides SVD decomposition for (currently) real matrices.
  * This decomposition is accessible via the following MatrixBase method:
  *  - MatrixBase::svd()
  *
  * \code
  * #include <Eigen/SVD>
  * \endcode
  */

#include "src/SVD/SVD.h"

} // namespace Eigen

#include "src/Core/util/EnableMSVCWarnings.h"

#endif // EIGEN_SVD_MODULE_H