/usr/include/openturns/swig/Simulation.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 | // SWIG file Simulation.i
// Author : $LastChangedBy: dutka $
// Date : $LastChangedDate: 2009-01-13 16:48:20 +0100 (Tue, 13 Jan 2009) $
// Id : $Id: Simulation.i 1065 2009-01-13 15:48:20Z dutka $
%{
#include "Simulation.hxx"
%}
%include Simulation.hxx
namespace OpenTURNS{ namespace Uncertainty { namespace Algorithm { %extend Simulation { Simulation(const Simulation & other) { return new OpenTURNS::Uncertainty::Algorithm::Simulation(other); } } }}}
|