Click or drag to resize

MultivariableFunctionSolverResults<TIterationResults> Constructor (IEnumerable<TIterationResults>, Boolean, Boolean, IEnumerable<MultivariableFunctionSolverWarning>)

Initializes a new instance.

Namespace:  AGI.Foundation.NumericalMethods
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntax
public MultivariableFunctionSolverResults(
	IEnumerable<TIterationResults> iterationResults,
	bool aborted,
	bool converged,
	IEnumerable<MultivariableFunctionSolverWarning> warnings
)

Parameters

iterationResults
Type: System.Collections.Generic.IEnumerable<TIterationResults>
The results of each iteration. This should contain at least one TIterationResults.
aborted
Type: System.Boolean
Indicated if the run of the MultivariableFunctionSolver was aborted or not.
converged
Type: System.Boolean
Indicated if the run of the MultivariableFunctionSolver converged or not.
warnings
Type: System.Collections.Generic.IEnumerable<MultivariableFunctionSolverWarning>
Any warnings that the MultivariableFunctionSolver produced.
See Also