This file is indexed.

/usr/include/openturns/swig/MatrixImplementation.i is in libopenturns-dev 0.15-2.

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
// SWIG file MatrixImplementation.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2009-02-10 15:42:19 +0100 (Tue, 10 Feb 2009) $
// Id : $Id: MatrixImplementation.i 1124 2009-02-10 14:42:19Z dutka $

%{
#include "MatrixImplementation.hxx"
%}

%rename(MatrixImplementation_operator___eq__) OpenTURNS::Base::Type::operator ==(const MatrixImplementation & lhs, const MatrixImplementation & rhs);

%template(NumericalComplexCollection)                  OpenTURNS::Base::Type::Collection<OpenTURNS::NumericalComplex>;

%include MatrixImplementation.hxx
namespace OpenTURNS{ namespace Base { namespace Type { %extend MatrixImplementation { MatrixImplementation(const MatrixImplementation & other) { return new OpenTURNS::Base::Type::MatrixImplementation(other); } } }}}