Initializing help system before first use

getLim Method (Double)

Retrieve the variable's integer limit for a partial integer or semi-continuous variable.

Namespace:   BCL
Assembly:  xprbdn (in xprbdn.dll) Version: 4.8.14.0
Syntax
C#
VB
public int getLim(
	out double val
)

Parameters

val
Type:  SystemDouble

Return Value

Type:  Int32
0 on success, 1 otherwise.
Examples
XPRBprob prob = new XPRBprob("NewProb"); XPRBvar var = new XPRBvar("Variable"); double vLim; ... int returned = var.getLim(out vLim);
See Also