MeasureEvaluation¶
- class otrobopt.MeasureEvaluation(*args)¶
Measure evaluation base class.
Base class for measure function evaluations, allows to define robust counterparts of parametric objective or constraint functions.
See also
Methods
Accessor to the object's name.
Distribution accessor.
Function accessor.
getId
()Accessor to the object's id.
Accessor to the underlying implementation.
getName
()Accessor to the object's name.
setDistribution
(distribution)Distribution accessor.
setFunction
(function)Function accessor.
setName
(name)Accessor to the object's name.
GetClassName
- __init__(*args)¶
- getClassName()¶
Accessor to the object’s name.
- Returns:
- class_namestr
The object class name (object.__class__.__name__).
- getDistribution()¶
Distribution accessor.
- Returns:
- distribution
openturns.Distribution
Parameters distribution.
- distribution
- getFunction()¶
Function accessor.
- Returns:
- function
openturns.Function
Parametric function.
- function
- getId()¶
Accessor to the object’s id.
- Returns:
- idint
Internal unique identifier.
- getImplementation()¶
Accessor to the underlying implementation.
- Returns:
- implImplementation
A copy of the underlying implementation object.
- getName()¶
Accessor to the object’s name.
- Returns:
- namestr
The name of the object.
- setDistribution(distribution)¶
Distribution accessor.
- Parameters:
- distribution
openturns.Distribution
Parameters distribution.
- distribution
- setFunction(function)¶
Function accessor.
- Parameters:
- function
openturns.Function
Parametric function.
- function
- setName(name)¶
Accessor to the object’s name.
- Parameters:
- namestr
The name of the object.