SolverVariableSettings Constructor (Double, Double, Double) |
Initializes a new instance with no scaling.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public SolverVariableSettings(
double maximumStep,
double initialValue,
double variableTolerance
)
Public Sub New (
maximumStep As Double,
initialValue As Double,
variableTolerance As Double
)
public:
SolverVariableSettings(
double maximumStep,
double initialValue,
double variableTolerance
)
new :
maximumStep : float *
initialValue : float *
variableTolerance : float -> SolverVariableSettings
Parameters
- maximumStep
- Type: SystemDouble
The maximum step to take when changing the value of this variable. - initialValue
- Type: SystemDouble
The initial value of the variable. - variableTolerance
- Type: SystemDouble
How small of a step the variable can take when being solved numerically.
If all variables in a SolvableMultivariableFunction are asked to step by less than
this value, then the MultivariableFunctionSolver can not converge and will abort.
See Also