Click or drag to resize

OptimizerMultivariableFunctionEvaluate Method (Double, ITrackCalculationProgress)

Evaluates the function. The OptimizerMultivariableFunctionResults returned must include the computed equality constraints in the order that they are in the Equalities and the computed inequality constraints in the order that they are in the Inequalities. If there are no equality constraints, the function should return a zero-length array of doubles for the equality constraint values. The same should be done for the inequality constraint values if there are no inequality constraint.

If the CostFunction is , the results should include a null cost function value. Otherwise, the results should return a Double as the cost function value.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.1.418.0 (24.1.418.0)
Syntax
public abstract OptimizerMultivariableFunctionResults Evaluate(
	double[] variables,
	ITrackCalculationProgress progressTracker
)

Parameters

variables
Type: SystemDouble
The value of the variables that are used to evaluate the function.
progressTracker
Type: AGI.FoundationITrackCalculationProgress
An optional progress tracker.

Return Value

Type: OptimizerMultivariableFunctionResults
The cost function, equality constraint values, and the inequality constraint values.
See Also