Encapsulates configurations such as optimization algorithm choice, and evaluation settings for parameter identification.
Active bindings
printEvaluationFeedback
Boolean. If
TRUE
, prints objective function value after each evaluation. Default isFALSE
.simulationRunOptions
Object of
SimulationRunOptions
for simulation runs. IfNULL
, default options are used.objectiveFunctionOptions
Settings for model fit evaluation, affecting error metrics and cost calculation. See
ObjectiveFunctionSpecs
andcalculateCostMetrics
for details. Defaults inObjectiveFunctionOptions
.algorithm
Optimization algorithm name. See
Algorithms
for a list of supported algorithms. Defaults toBOBYQA
.ciMethod
Confidence interval estimation method. See
CIMethods
for available options. Defaults tohessian
.algorithmOptions
Named list of settings specific to the selected algorithm.. Refer to
AlgorithmOptions
for default settings per algorithm (e.g.,AlgorithmOptions_XYZ
whereXYZ
denotes the algorithm name). IfNULL
, algorithm's default settings are applied.ciOptions
Named list of settings for the selected CI method. Refer to
CIOptions
for default settings per method (e.g.,CIOptions_XYZ
whereXYZ
corresponds to the method name). IfNULL
, CI method's default settings are applied.autoEstimateCI
Logical. If
TRUE
, confidence intervals are automatically estimated after optimization. IfFALSE
, the step is skipped and can be triggered manually by calling theestimateCI()
method on theParameterIdentification
object.modelCostField
Read-only field name in the cost object used as the optimization target. Currently, only
modelCost
is supported.