This file is indexed.

/usr/include/openturns/swig/Tensor.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
 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
// SWIG file Tensor.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2007-05-10 16:43:31 +0200 (Thu, 10 May 2007) $
// Id : $Id: Tensor.i 434 2007-05-10 14:43:31Z dutka $

%{
#include "Tensor.hxx"
%}

%template(TensorImplementationTypedInterfaceObject) OpenTURNS::Base::Common::TypedInterfaceObject<OpenTURNS::Base::Type::TensorImplementation>;
%include Tensor.hxx

namespace OpenTURNS { namespace Base { namespace Type {

%extend Tensor {
	NumericalScalar __getitem__(PyObject * args) const {

          OpenTURNS::UnsignedLong arg2 ;
          OpenTURNS::UnsignedLong arg3 ;
          OpenTURNS::UnsignedLong arg4 ;
          unsigned long val2 ;
          int ecode2 = 0 ;
          unsigned long val3 ;
          int ecode3 = 0 ;
          unsigned long val4 ;
          int ecode4 = 0 ;
          PyObject * obj1 = 0 ;
          PyObject * obj2 = 0 ;
          PyObject * obj3 = 0 ;

          if (!PyArg_ParseTuple(args,(char *)"OOO:Tensor___getitem__",&obj1,&obj2,&obj3)) SWIG_fail;

          ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2);
          if (!SWIG_IsOK(ecode2)) {
            SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Tensor___getitem__" "', argument " "2"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg2 = static_cast< OpenTURNS::UnsignedLong >(val2);


          ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3);
          if (!SWIG_IsOK(ecode3)) {
            SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Tensor___getitem__" "', argument " "3"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg3 = static_cast< OpenTURNS::UnsignedLong >(val3);


          ecode4 = SWIG_AsVal_unsigned_SS_long(obj3, &val4);
          if (!SWIG_IsOK(ecode4)) {
            SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Tensor___getitem__" "', argument " "4"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg4 = static_cast< OpenTURNS::UnsignedLong >(val4);

          return (*self)(arg2,arg3,arg4);
fail:
          return 0.;
	}



	void __setitem__(PyObject * args, NumericalScalar val) {

          OpenTURNS::UnsignedLong arg2 ;
          OpenTURNS::UnsignedLong arg3 ;
          OpenTURNS::UnsignedLong arg4 ;
          unsigned long val2 ;
          int ecode2 = 0 ;
          unsigned long val3 ;
          int ecode3 = 0 ;
          unsigned long val4 ;
          int ecode4 = 0 ;
          PyObject * obj1 = 0 ;
          PyObject * obj2 = 0 ;
          PyObject * obj3 = 0 ;

          if (!PyArg_ParseTuple(args,(char *)"OOO:Tensor___setitem__",&obj1,&obj2,&obj3)) SWIG_fail;

          ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2);
          if (!SWIG_IsOK(ecode2)) {
            SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "Tensor___setitem__" "', argument " "2"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg2 = static_cast< OpenTURNS::UnsignedLong >(val2);


          ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3);
          if (!SWIG_IsOK(ecode3)) {
            SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "Tensor___setitem__" "', argument " "3"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg3 = static_cast< OpenTURNS::UnsignedLong >(val3);


          ecode4 = SWIG_AsVal_unsigned_SS_long(obj3, &val4);
          if (!SWIG_IsOK(ecode4)) {
            SWIG_exception_fail(SWIG_ArgError(ecode4), "in method '" "Tensor___setitem__" "', argument " "4"" of type '" "OpenTURNS::UnsignedLong""'");
          }
          arg4 = static_cast< OpenTURNS::UnsignedLong >(val4);

          (*self)(arg2,arg3,arg4) = val;
fail:
	  return;
	}
};

}}}
namespace OpenTURNS{ namespace Base { namespace Type { %extend Tensor { Tensor(const Tensor & other) { return new OpenTURNS::Base::Type::Tensor(other); } } }}}