DifferentialCorrectorStepResult Constructor |
Initializes a new instance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 22.2.414.0 (22.2.414.0)
Syntaxpublic DifferentialCorrectorStepResult(
double[] variableDelta,
SolvableMultivariableFunctionResults functionResults,
SolvableMultivariableFunctionDerivativeResults derivativeResults,
bool converged,
bool aborted
)
Public Sub New (
variableDelta As Double(),
functionResults As SolvableMultivariableFunctionResults,
derivativeResults As SolvableMultivariableFunctionDerivativeResults,
converged As Boolean,
aborted As Boolean
)
public:
DifferentialCorrectorStepResult(
array<double>^ variableDelta,
SolvableMultivariableFunctionResults^ functionResults,
SolvableMultivariableFunctionDerivativeResults^ derivativeResults,
bool converged,
bool aborted
)
new :
variableDelta : float[] *
functionResults : SolvableMultivariableFunctionResults *
derivativeResults : SolvableMultivariableFunctionDerivativeResults *
converged : bool *
aborted : bool -> DifferentialCorrectorStepResult
Parameters
- variableDelta
- Type: SystemDouble
The change that should be applied to the state variables in the next iteration. - functionResults
- Type: AGI.Foundation.NumericalMethodsSolvableMultivariableFunctionResults
The function evaluation results. - derivativeResults
- Type: AGI.Foundation.NumericalMethodsSolvableMultivariableFunctionDerivativeResults
The results of this iteration of the evaluation of the Jacobian of the
SolvableMultivariableFunction being solved for. - converged
- Type: SystemBoolean
If the function solver converged on this iteration. - aborted
- Type: SystemBoolean
If the function solver was aborted during this iteration.
See Also