IRowVariableModel.SetBounds Method
[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]
Sets the bounds for a variable.
Namespace: Microsoft.SolverFoundation.Services
Assembly: Microsoft.Solver.Foundation (in Microsoft.Solver.Foundation.dll)
Syntax
'Declaration
Sub SetBounds ( _
vid As Integer, _
lower As Rational, _
upper As Rational _
)
void SetBounds(
int vid,
Rational lower,
Rational upper
)
void SetBounds(
int vid,
Rational lower,
Rational upper
)
abstract SetBounds :
vid:int *
lower:Rational *
upper:Rational -> unit
function SetBounds(
vid : int,
lower : Rational,
upper : Rational
)
Parameters
- vid
Type: System.Int32
The variable index.
- lower
Type: Microsoft.SolverFoundation.Common.Rational
The lower bound of the row.
- upper
Type: Microsoft.SolverFoundation.Common.Rational
The upper bound of the row.
Exceptions
Exception | Condition |
---|---|
ArgumentException | The variable index has a lower bound that is greater than its upper bound. |
Remarks
A row index can have an upper bound of infinity and/or a lower bound of negative infinity. You should avoid specifying any other non-finite value for bounds.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.