/usr/include/openturns/swig/LinearEnumerateFunction.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 LinearEnumerateFunction.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2010-12-16 16:59:25 +0100 (Thu, 16 Dec 2010) $
// Id : $Id: LinearEnumerateFunction.i 1678 2010-12-16 15:59:25Z dutka $
%{
#include "LinearEnumerateFunction.hxx"
%}
%include LinearEnumerateFunction.hxx
namespace OpenTURNS { namespace Uncertainty { namespace Algorithm { %extend LinearEnumerateFunction { LinearEnumerateFunction(const LinearEnumerateFunction & other) { return new OpenTURNS::Uncertainty::Algorithm::LinearEnumerateFunction(other); } } }}}
|