/usr/include/openturns/swig/AbdoRackwitz_doc.i is in libopenturns-dev 1.7-3.
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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 | %feature("docstring") OT::AbdoRackwitz
"Abdo-Rackwitz solver.
Available constructors:
AbdoRackwitz(*problem*)
AbdoRackwitz(*problem, tau, omega, smooth*)
Parameters
----------
problem : :class:`~openturns.OptimizationProblem`
Optimization problem to solve.
tau : float
Multiplicative decrease of linear step.
omega : float
Armijo factor.
smooth : float
Growing factor in penalization term.
See also
--------
Cobyla, SQP, TNC
Examples
--------
>>> import openturns as ot
>>> model = ot.NumericalMathFunction(['E', 'F', 'L', 'I'], ['d'], ['-F*L^3/(3*E*I)'])
>>> problem = ot.OptimizationProblem(model, 5.0)
>>> algo = ot.AbdoRackwitz(problem)"
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::getTau
"Accessor to tau parameter.
Returns
-------
tau : float
Multiplicative decrease of linear step."
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::setTau
"Accessor to tau parameter.
Parameters
----------
tau : float
Multiplicative decrease of linear step."
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::getOmega
"Accessor to omega parameter.
Returns
-------
omega : float
Armijo factor."
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::setOmega
"Accessor to omega parameter.
Parameters
----------
omega : float
Armijo factor."
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::getSmooth
"Accessor to smooth parameter.
Returns
-------
smooth : float
Growing factor in penalization term."
// ---------------------------------------------------------------------
%feature("docstring") OT::AbdoRackwitz::setSmooth
"Accessor to smooth parameter.
Parameters
----------
smooth : float
Growing factor in penalization term."
|