Click or drag to resize

OptimizerMultivariableFunctionResults Constructor (Double, NullableDouble, Double, Double)

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public OptimizerMultivariableFunctionResults(
	double[] variableUsed,
	double? costFunctionResults,
	double[] equalityResults,
	double[] inequalityResults
)

Parameters

variableUsed
Type: SystemDouble
The values of the variables that were used to compute the function. This should just be the variables passed into the Evaluate method.
costFunctionResults
Type: SystemNullableDouble
The value of the cost function computed by an OptimizerMultivariableFunction.
equalityResults
Type: SystemDouble
The value of the equality constraints as computed by an OptimizerMultivariableFunction.
inequalityResults
Type: SystemDouble
The value of the inequality constraints as computed by an OptimizerMultivariableFunction.
See Also