Adds an inequality constraint of the form constraintFunction(x) >= lowerBound

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public void AddLowerBoundConstraint(
	DoubleFunctional constraintFunction,
	double lowerBound
)
Visual Basic (Declaration)
Public Sub AddLowerBoundConstraint ( _
	constraintFunction As DoubleFunctional, _
	lowerBound As Double _
)
Visual C++
public:
void AddLowerBoundConstraint(
	DoubleFunctional^ constraintFunction, 
	double lowerBound
)

Parameters

constraintFunction
Type: CenterSpace.NMath.Core..::.DoubleFunctional
Constraint function.
lowerBound
Type: System..::.Double
The lower bound.

See Also