| LinearConstrainedProblemAddLowerBoundConstraint(ILinearConstraintCoefficients, Double) Method |
Adds a linear inequality constraint of the form
coefficients'x >= lowerBound
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntax public void AddLowerBoundConstraint(
ILinearConstraintCoefficients coefficients,
double lowerBound
)
Public Sub AddLowerBoundConstraint (
coefficients As ILinearConstraintCoefficients,
lowerBound As Double
)
public:
void AddLowerBoundConstraint(
ILinearConstraintCoefficients^ coefficients,
double lowerBound
)
member AddLowerBoundConstraint :
coefficients : ILinearConstraintCoefficients *
lowerBound : float -> unit
Parameters
- coefficients ILinearConstraintCoefficients
- Constraint coefficients.
- lowerBound Double
- The lower bound.
See Also