Initializing help system before first use

XSLPgetintattrib

XSLPgetintattrib


Purpose
Retrieve the value of an integer problem attribute
Synopsis
int XPRS_CC XSLPgetintattrib(XSLPprob Prob, int Param, int *iValue);
Arguments
Prob 
The current SLP problem.
Param 
attribute (SLP or optimizer) whose value is to be returned.
iValue 
Address of an integer variable to receive the value.
Example
The following example retrieves the value of the Xpress NonLinear attribute XSLP_CVS and of the optimizer attribute XPRS_COLS:
int nCV, nCol;
XSLPgetintattrib(Prob, XSLP_CVS, &nCV);
XSLPgetintattrib(Prob, XPRS_COLS, &nCol);
Further information
Both SLP and optimizer attributes can be retrieved using this function. If an optimizer attribute is requested, the return value will be the same as that from XPRSgetintattrib.
Related topics