getRange Method
Retrieves the constraint range.
Namespace: BCL
Assembly: xprbdn (in xprbdn.dll) Version: 37.1.1.0

Parameters
- lw
-
Type:
SystemDouble
The out double which will contain the low range value. - up
-
Type:
SystemDouble
The out double which will contain the upper range value.
Return Value
Type: Int320 on success

XPRBprob prob = new XPRBprob("NewProb"); XPRBctr ctr = prob.newCtr("Constraint1"); double loRng, hiRng; ... int returned = ctr.getRange(out loRng, out hiRng);
