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