/usr/include/openturns/swig/ConfidenceInterval.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 | // SWIG file ConfidenceInterval.i
// Author : $LastChangedBy: souchaud $
// Date : $LastChangedDate: 2011-04-05 17:50:07 +0200 (Tue, 05 Apr 2011) $
// Id : $Id: ConfidenceInterval.i 1855 2011-04-05 15:50:07Z souchaud $
%{
#include "ConfidenceInterval.hxx"
namespace OpenTURNS {
template <>
struct traitsPythonType<OpenTURNS::Base::Stat::ConfidenceInterval>
{
typedef _PySequence_ Type;
};
template <>
inline
OpenTURNS::Base::Stat::ConfidenceInterval
convert<_PySequence_,OpenTURNS::Base::Stat::ConfidenceInterval>(PyObject * pyObj)
{
check<_PySequence_>( pyObj );
PyObject * newPyObj = PySequence_Fast( pyObj, "" );
if (PySequence_Fast_GET_SIZE( newPyObj ) != 2)
throw Base::Common::InvalidArgumentException(HERE) << "Sequence passed as argument is not a pair (NumericalScalar, NumericalScalar)";
PyObject * item_0 = PySequence_Fast_GET_ITEM( newPyObj, 0 );
check<_PyFloat_>( item_0 );
PyObject * item_1 = PySequence_Fast_GET_ITEM( newPyObj, 1 );
check<_PyFloat_>( item_1 );
Py_XDECREF( newPyObj );
return Base::Stat::ConfidenceInterval( convert<_PyFloat_,NumericalScalar>( item_0 ),
convert<_PyFloat_,NumericalScalar>( item_1 ) );
}
} /* namespace OpenTURNS */
%}
%include ConfidenceInterval.hxx
namespace OpenTURNS{ namespace Base { namespace Stat {
%extend ConfidenceInterval {
ConfidenceInterval(const ConfidenceInterval & other) { return new OpenTURNS::Base::Stat::ConfidenceInterval(other); }
ConfidenceInterval(PyObject * pyObj)
{
return new OpenTURNS::Base::Stat::ConfidenceInterval( OpenTURNS::convert<OpenTURNS::_PySequence_,OpenTURNS::Base::Stat::ConfidenceInterval>(pyObj) );
}
}
}}}
|