Click or drag to resize

NonlinearProgrammingProblemAddLinearLowerBoundConstraint Method

Adds a linear inequality constraint of the form coefficients'x >= lowerBound

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void AddLinearLowerBoundConstraint(
	DoubleVector coefficients,
	double lowerBound
)

Parameters

coefficients  DoubleVector
Constraint coefficients.
lowerBound  Double
The lower bound.
Exceptions
ExceptionCondition
InvalidArgumentExceptionThrown if lowerBound is not real - i.e. NaN of Infinity.
See Also