MultivariableFunctionSolverResultsTIterationResults Constructor (IEnumerableTIterationResults, Boolean, Boolean, IEnumerableMultivariableFunctionSolverWarning) |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public 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.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