/usr/include/openturns/swig/LinearModel.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 | // SWIG file LinearModel.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2009-09-30 16:47:45 +0200 (Wed, 30 Sep 2009) $
// Id : $Id: LinearModel.i 1354 2009-09-30 14:47:45Z dutka $
%{
#include "LinearModel.hxx"
%}
%rename(LinearModel_operator___eq__) OpenTURNS::Base::Stat::operator ==(const LinearModel & lhs, const LinearModel & rhs);
%template(ConfidenceIntervalCollection) OpenTURNS::Base::Type::Collection<OpenTURNS::Base::Stat::ConfidenceInterval>;
%include LinearModel.hxx
namespace OpenTURNS{ namespace Base { namespace Stat { %extend LinearModel { LinearModel(const LinearModel & other) { return new OpenTURNS::Base::Stat::LinearModel(other); } } }}}
|