InequalityConstraintSettingsInequalityWithinTolerance Method |
Calculates if the absolute value of the current constraint value minus the
BoundValue
is smaller than the
Tolerance.
Namespace:
AGI.Foundation.NumericalMethods
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public bool InequalityWithinTolerance(
double currentInequalityValue
)
Public Function InequalityWithinTolerance (
currentInequalityValue As Double
) As Boolean
public:
bool InequalityWithinTolerance(
double currentInequalityValue
)
member InequalityWithinTolerance :
currentInequalityValue : float -> bool
Parameters
- currentInequalityValue
- Type: SystemDouble
The current value of the inequality constraint function.
Return Value
Type:
Boolean if the current constraint value is within tolerance of the bound value;
otherwise
.
See Also