MultivariableFunctionSolverResultsTIterationResults Constructor (IEnumerableTIterationResults, Boolean, Boolean, IEnumerableMultivariableFunctionSolverWarning) | 
 
            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)
Syntaxpublic MultivariableFunctionSolverResults(
	IEnumerable<TIterationResults> iterationResults,
	bool aborted,
	bool converged,
	IEnumerable<MultivariableFunctionSolverWarning> warnings
)
Public Sub New ( 
	iterationResults As IEnumerable(Of TIterationResults),
	aborted As Boolean,
	converged As Boolean,
	warnings As IEnumerable(Of MultivariableFunctionSolverWarning)
)
public:
MultivariableFunctionSolverResults(
	IEnumerable<TIterationResults>^ iterationResults, 
	bool aborted, 
	bool converged, 
	IEnumerable<MultivariableFunctionSolverWarning^>^ warnings
)
new : 
        iterationResults : IEnumerable<'TIterationResults> * 
        aborted : bool * 
        converged : bool * 
        warnings : IEnumerable<MultivariableFunctionSolverWarning> -> MultivariableFunctionSolverResultsParameters
- iterationResults
 - Type: System.Collections.GenericIEnumerableTIterationResults
The results of each iteration. This should contain at least one
            TIterationResults. - aborted
 - Type: SystemBoolean
Indicated if the run of the MultivariableFunctionSolver was aborted
            or not. - converged
 - Type: SystemBoolean
Indicated if the run of the MultivariableFunctionSolver converged
            or not. - warnings
 - Type: System.Collections.GenericIEnumerableMultivariableFunctionSolverWarning
Any warnings that the MultivariableFunctionSolver produced. 
See Also