Click or drag to resize
Accord.NET (logo)

ConstraintExtensionsGetViolation Method

Gets how much the constraint is being violated.

Namespace:  Accord.Math.Optimization
Assembly:  Accord.Math (in Accord.Math.dll) Version: 3.8.0
Syntax
public static double GetViolation(
	this IConstraint constraint,
	double[] input
)
Request Example View Source

Parameters

constraint
Type: Accord.Math.OptimizationIConstraint
The constraint.
input
Type: SystemDouble
The function point.

Return Value

Type: Double
How much the constraint is being violated at the given point. Positive value means the constraint is not being violated with the returned slack, while a negative value means the constraint is being violated by the returned amount.

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