Initializing help system before first use

XPRBgetlim

XPRBgetlim


Purpose
Get the integer limit for a partial integer or the semi-continuous limit for a semi-continuous or semi-continuous integer variable.
Synopsis
int XPRBgetlim(XPRBvar var, double *lim);
Arguments
var 
BCL reference to a variable.
lim 
Limit value.
Return value
0 if function executed successfully, 1 otherwise.
Example
XPRBprob prob;
XPRBvar x3;
double vlim;
   ...
x3 = XPRBnewvar(prob, XPRB_SC, "abc4", 0, 50);
XPRBgetlim(x3, &vlim);
This obtains the lower bound of the continuous part of the variable x3.
Further information
This function returns the currently defined integer limit for a partial integer variable or the lower semi-continuous limit for a semi-continuous or semi-continuous integer variable.
Related topics