InequalityConstraintSettingsInequalitySatisfiedAndWithinTolerance Method |
Calculates if the current constraint value both satisfies the inequality and is within tolerance
of the bound value (on the feasible side of the inequality).
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 InequalitySatisfiedAndWithinTolerance(
double currentInequalityValue
)
Public Function InequalitySatisfiedAndWithinTolerance (
currentInequalityValue As Double
) As Boolean
public:
bool InequalitySatisfiedAndWithinTolerance(
double currentInequalityValue
)
member InequalitySatisfiedAndWithinTolerance :
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
on the feasible side; otherwise
.
See Also