SolverVariableSettings Constructor (Double, Double, Double, SolverVariableScaling) | 
 
            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 SolverVariableSettings(
	double maximumStep,
	double initialValue,
	double variableTolerance,
	SolverVariableScaling scaling
)
Public Sub New ( 
	maximumStep As Double,
	initialValue As Double,
	variableTolerance As Double,
	scaling As SolverVariableScaling
)
public:
SolverVariableSettings(
	double maximumStep, 
	double initialValue, 
	double variableTolerance, 
	SolverVariableScaling^ scaling
)
new : 
        maximumStep : float * 
        initialValue : float * 
        variableTolerance : float * 
        scaling : SolverVariableScaling -> SolverVariableSettingsParameters
- 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. - scaling
 - Type: AGI.Foundation.NumericalMethodsSolverVariableScaling
The type of scaling to be used on this variable. 
See Also