This file is indexed.

/usr/include/Cauchy/Eigen3/Matrix.h is in cauchy-dev 0.9.0-0ubuntu1.

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
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/*
 *  Copyright (c) 2010 Cyrille Berger <cberger@cberger.net>
 *
 * This library 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 2, or (at your option) any later version of the License.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this library; see the file COPYING.RUNTIME.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 *
 * The file COPYING.RUNTIME.EXCEPTION contains an exception that allow
 * to use this file with other open source license
 */

#include <cmath>
#include <cstdlib>

#ifndef _CAUCHY_EIGEN3_MATRIX_H_
#define _CAUCHY_EIGEN3_MATRIX_H_

namespace Cauchy {
  inline double pow(double a, double b)
  {
    return std::pow(a, b);
  }
  inline double pow(int a, double b)
  {
    return std::pow(a, b);
  }
  inline double pow(double a, int b)
  {
    return std::pow(a, b);
  }
  inline double pow(int a, int b)
  {
    return std::pow(a, b);
  }
  template<typename _T_>
  inline Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> pow(Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> a, int b)
  {
    Eigen::MatrixXd r = a;
    for(int i = 0; i < b; ++i)
    {
      r *= a;
    }
    return r;
  }
  template<typename _T_>
  inline Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> pow(Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> /*a*/, double /*b*/)
  {
    abort();
  }
  template<typename _T_>
  inline Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> pow(double /*a*/, Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> /*b*/)
  {
    abort();
    // 2 ^ M == V* (D^2) * V with [V, D] = eigs(M)
  }
  template<typename _T_>
  inline Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> pow(int a, Eigen::Matrix<_T_, Eigen::Dynamic, Eigen::Dynamic> b)
  {
    return pow((double)a, b);
  }
  inline Eigen::MatrixXd pow_ew(Eigen::MatrixXd a, double b)
  {
    return a.array().pow(b);
  }
  inline Eigen::MatrixXd pow_ew(double a, Eigen::MatrixXd b)
  {
    Eigen::MatrixXd r(b.cols(), b.rows());
    for(int i = 0; i < b.cols(); ++i)
    {
      for(int j = 0; j < b.rows(); ++j)
      {
        r(i, j) = std::pow(a, b(i,j));
      }
    }
    return r;
  }
  inline Eigen::MatrixXd eye(double a)
  {
    return Eigen::MatrixXd::Identity(a, a);
  }
  inline Eigen::MatrixXd eye(double a, double b)
  {
    return Eigen::MatrixXd::Identity(a, b);
  }
  template<typename _T_>
  inline _T_ diag(const _T_& v)
  {
    if(v.rows() == 1)
    {
      _T_ r = _T_::Zero(v.cols(), v.cols());
      for(int i = 0; i < v.cols(); ++i)
      {
        r(i, i) = v(0,i);
      }
      return r;
    } else if(v.cols() == 1)
    {
      _T_ r = _T_::Zero(v.rows(), v.rows());
      for(int i = 0; i < v.rows(); ++i)
      {
        r(i, i) = v(i,0);
      }
      return r;
    } else {
      std::abort();
      return _T_(); // stupid compilers
    }
  }
  inline double rand()
  {
    return ::rand() / double(RAND_MAX);
  }
  inline Eigen::MatrixXd rand(int a, int b)
  {
    Eigen::MatrixXd m(a, b);
    for(int i = 0; i < a; ++i)
    {
      for(int j = 0; j < b; ++j)
      {
        m(i,j) = rand();
      }
    }
    return m;
  }
  inline Eigen::MatrixXd rand(int a)
  {
    return rand(a,a);
  }
  inline Eigen::MatrixXd linspace(double a, double b, int step = 100)
  {
    double inc = (b - a) / (step - 1);
    Eigen::MatrixXd m(step, 1);
    for(int i = 0; i < step; ++i)
    {
      m(i,1) = a;
      a += inc;
    }
    return m;
  }
  template<typename Derived>
  inline int size(const Eigen::MatrixBase<Derived>& m, int c)
  {
    switch(c)
    {
      case 1:
        return m.rows();
      case 2:
        return m.cols();
      default:
        return 1;
    }
  }
  template<typename Derived>
  inline Eigen::MatrixXd size(const Eigen::MatrixBase<Derived>& m)
  {
    Eigen::Vector2d v;
    v << m.rows(), m.cols();
    return v.transpose();
  }
}

#endif