|
ConstraintExtensionsIsViolated Method
|
Gets whether this constraint is being violated
(within the current tolerance threshold).
Namespace:
Accord.Math.Optimization
Assembly:
Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax public static bool IsViolated(
this IConstraint constraint,
double[] input
)
<ExtensionAttribute>
Public Shared Function IsViolated (
constraint As IConstraint,
input As Double()
) As Boolean
Request Example
View SourceParameters
- constraint
- Type: Accord.Math.OptimizationIConstraint
The constraint. - input
- Type: SystemDouble
The function point.
Return Value
Type:
Boolean
True if the constraint is being violated, false otherwise.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type
IConstraint. When you use instance method syntax to call this method, omit the first parameter. For more information, see
Extension Methods (Visual Basic) or
Extension Methods (C# Programming Guide).
See Also