/usr/include/openturns/swig/OptimalLHSExperiment_doc.i is in libopenturns-dev 1.9-5.
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 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | %define OT_OptimalLHS_doc
"OptimalLHS base class.
Notes
-----
Perform the generation of optimal LHS designs."
%enddef
%feature("docstring") OT::OptimalLHSExperiment
OT_OptimalLHS_doc
// ---------------------------------------------------------------------
%define OT_OptimalLHS_generate_doc
"Generate an optimal design.
Returns
-------
value : :class:`~openturns.Sample`
The optimal design"
%enddef
%feature("docstring") OT::OptimalLHSExperiment::generate
OT_OptimalLHS_generate_doc
// ---------------------------------------------------------------------
%define OT_OptimalLHS_getResult_doc
"Result accessor.
Returns
-------
value : :class:`~ot.LHSResult`
Result of generation that contains the optimal design, some criteria and history"
%enddef
%feature("docstring") OT::OptimalLHSExperiment::getResult
OT_OptimalLHS_getResult_doc
// ---------------------------------------------------------------------
%define OT_OptimalLHS_getlhs_doc
"Return the LHS design.
Returns
-------
value : :class:`~openturns.LHSExperiment`
Result the factory that builds initial design to be optimized"
%enddef
%feature("docstring") OT::OptimalLHSExperiment::getLHS
OT_OptimalLHS_getlhs_doc
// ---------------------------------------------------------------------
%define OT_OptimalLHS_get_space_filling_doc
"Return the space-filling criterion to be optimized.
Returns
-------
value : :class:`~ot.SpaceFilling`
Criterion function to be optimized"
%enddef
%feature("docstring") OT::OptimalLHSExperiment::getSpaceFilling
OT_OptimalLHS_get_space_filling_doc
// ---------------------------------------------------------------------
|