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)
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> -> MultivariableFunctionSolverResults
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