/usr/include/openturns/swig/ExperimentImplementation.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 ExperimentImplementation.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2008-11-17 14:45:06 +0100 (Mon, 17 Nov 2008) $
// Id : $Id: ExperimentImplementation.i 1013 2008-11-17 13:45:06Z dutka $
%{
#include "ExperimentImplementation.hxx"
%}
%include ExperimentImplementation.hxx
namespace OpenTURNS { namespace Uncertainty { namespace Algorithm { %extend ExperimentImplementation { ExperimentImplementation(const ExperimentImplementation & other) { return new OpenTURNS::Uncertainty::Algorithm::ExperimentImplementation(other); } } }}}
|