/usr/include/openturns/swig/FieldImplementation.i is in libopenturns-dev 1.7-3.
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 | // SWIG file FieldImplementation.i
%{
#include "FieldImplementation.hxx"
%}
%include FieldImplementation_doc.i
#define OT_TYPECHECK_FIELDIMPLEMENTATION 3
%typemap(typecheck,precedence=OT_TYPECHECK_FIELDIMPLEMENTATION) const FieldImplementation & {
$1 = SWIG_IsOK(SWIG_ConvertPtr($input, NULL, $1_descriptor, 0));
// || OT::isAPythonSequenceOf<OT::_PySequence_>( $input );
}
%apply const FieldImplementation & { const OT::FieldImplementation & };
%include FieldImplementation.hxx
namespace OT{
%extend FieldImplementation {
const NumericalPoint __getitem__ (SignedInteger index) const
{
if (index < 0) {
index += self->getSize();
}
return self->at(index);
}
void __setitem__ (SignedInteger index,
const NumericalPoint & val)
{
if (index < 0) {
index += self->getSize();
}
self->at(index) = val;
}
NumericalScalar __getitem__(PyObject * args) const {
OT::UnsignedInteger arg2 ;
OT::UnsignedInteger arg3 ;
unsigned long val2 ;
int ecode2 = 0 ;
unsigned long val3 ;
int ecode3 = 0 ;
PyObject * obj1 = 0 ;
PyObject * obj2 = 0 ;
if (!PyArg_ParseTuple(args,(char *)"OO:FieldImplementation___getitem__",&obj1,&obj2)) SWIG_fail;
ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FieldImplementation___getitem__" "', argument " "2"" of type '" "OT::UnsignedInteger""'");
}
arg2 = static_cast< OT::UnsignedInteger >(val2);
ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3);
if (!SWIG_IsOK(ecode3)) {
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FieldImplementation___getitem__" "', argument " "3"" of type '" "OT::UnsignedInteger""'");
}
arg3 = static_cast< OT::UnsignedInteger >(val3);
return (*self).at(arg2, arg3);
fail:
return 0.;
}
void __setitem__(PyObject * args, NumericalScalar val) {
OT::UnsignedInteger arg2 ;
OT::UnsignedInteger arg3 ;
unsigned long val2 ;
int ecode2 = 0 ;
unsigned long val3 ;
int ecode3 = 0 ;
PyObject * obj1 = 0 ;
PyObject * obj2 = 0 ;
if (!PyArg_ParseTuple(args,(char *)"OO:FieldImplementation___setitem__",&obj1,&obj2)) SWIG_fail;
ecode2 = SWIG_AsVal_unsigned_SS_long(obj1, &val2);
if (!SWIG_IsOK(ecode2)) {
SWIG_exception_fail(SWIG_ArgError(ecode2), "in method '" "FieldImplementation___setitem__" "', argument " "2"" of type '" "OT::UnsignedInteger""'");
}
arg2 = static_cast< OT::UnsignedInteger >(val2);
ecode3 = SWIG_AsVal_unsigned_SS_long(obj2, &val3);
if (!SWIG_IsOK(ecode3)) {
SWIG_exception_fail(SWIG_ArgError(ecode3), "in method '" "FieldImplementation___setitem__" "', argument " "3"" of type '" "OT::UnsignedInteger""'");
}
arg3 = static_cast< OT::UnsignedInteger >(val3);
(*self).at(arg2, arg3) = val;
fail:
return;
}
FieldImplementation(const FieldImplementation & other)
{
return new OT::FieldImplementation(other);
}
} // %extend
}
%include FieldImplementation.hxx
namespace OT { %extend FieldImplementation { FieldImplementation(const FieldImplementation & other) { return new OT::FieldImplementation(other); } } }
|