NonlinearConstraint.ConstraintFunction Property

Gets or sets the constraint function.

Definition

Namespace: Extreme.Mathematics.Optimization
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
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