| LinearConstrainedProblemAddUpperBoundConstraint(DoubleVector, 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(
DoubleVector coefficients,
double upperBound
)
Public Sub AddUpperBoundConstraint (
coefficients As DoubleVector,
upperBound As Double
)
public:
void AddUpperBoundConstraint(
DoubleVector^ coefficients,
double upperBound
)
member AddUpperBoundConstraint :
coefficients : DoubleVector *
upperBound : float -> unit
Parameters
- coefficients DoubleVector
- Constraint coefficients.
- upperBound Double
- The upper bound.
See Also