/usr/include/openturns/swig/Mixture.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 Mixture.i
// Author : $LastChangedBy: schueller $
// Date : $LastChangedDate: 2011-05-23 18:19:06 +0200 (Mon, 23 May 2011) $
// Id : $Id: Mixture.i 1903 2011-05-23 16:19:06Z schueller $
%{
#include "Mixture.hxx"
%}
%include Mixture.hxx
namespace OpenTURNS { namespace Uncertainty { namespace Distribution { %extend Mixture { Mixture(const Mixture & other) { return new OpenTURNS::Uncertainty::Distribution::Mixture(other); } } }}}
|