Click or drag to resize

SolvableMultivariableFunction.Evaluate Method (Double[], ITrackCalculationProgress)

Evaluates the function. The SolvableMultivariableFunctionResults returned must include the computed constraints in the order that they are in the Constraints. If your function computes more than just constraint values you should extend SolvableMultivariableFunctionResults to contain those additional results.

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

Parameters

variables
Type:System.Double[]
The value of the variables to evaluate at.
progressTracker
Type: AGI.Foundation.ITrackCalculationProgress
An optional progress tracker.

Return Value

Type: SolvableMultivariableFunctionResults
The constraint values and any other results.
See Also