NonlinearConstraint.ConstraintFunction Property

Gets or sets the constraint function.

Definition

Namespace: Numerics.NET.Optimization
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.0
C#
public Func<Vector<double>, double> ConstraintFunction { get; set; }

Property Value

Func<Vector<Double>, Double>

Remarks

A nonlinear constraint is satisfied at a point if the constraint function evaluated at that point lies between LowerBound and UpperBound.

See Also