/usr/include/openturns/swig/LinearLeastSquares.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 | // SWIG file LinearLeastSquares.i
// Author : $LastChangedBy: souchaud $
// Date : $LastChangedDate: 2011-04-07 11:46:08 +0200 (Thu, 07 Apr 2011) $
// Id : $Id: LinearLeastSquares.i 1860 2011-04-07 09:46:08Z souchaud $
%{
#include "LinearLeastSquares.hxx"
%}
%include LinearLeastSquares.hxx
namespace OpenTURNS { namespace Base { namespace MetaModel { %extend LinearLeastSquares { LinearLeastSquares(const LinearLeastSquares & other) { return new OpenTURNS::Base::MetaModel::LinearLeastSquares(other); } } }}}
|