SolverVariableSettingsVariableChangeWithinTolerance Method  | 
 
            Calculates if the absolute value of change in the variable between iterations is smaller
            than or equal to the 
VariableTolerance.
            
 
    Namespace: 
   AGI.Foundation.NumericalMethods
    Assembly:
   AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic bool VariableChangeWithinTolerance(
	double currentVariableValue,
	double previousVariableValue
)
Public Function VariableChangeWithinTolerance ( 
	currentVariableValue As Double,
	previousVariableValue As Double
) As Boolean
public:
bool VariableChangeWithinTolerance(
	double currentVariableValue, 
	double previousVariableValue
)
member VariableChangeWithinTolerance : 
        currentVariableValue : float * 
        previousVariableValue : float -> bool 
Parameters
- currentVariableValue
 - Type: SystemDouble
The variable value at the current iteration. - previousVariableValue
 - Type: SystemDouble
The variable value at the previous iteration. 
Return Value
Type: 
Boolean if the variable change is within the tolerance and
            
 if the variable change is outside the tolerance.
See Also