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

© 2001-2019 Fair Isaac Corporation. All rights reserved. This documentation is the property of Fair Isaac Corporation (“FICO”). Receipt or possession of this documentation does not convey rights to disclose, reproduce, make derivative works, use, or allow others to use it except solely for internal evaluation purposes to determine whether to purchase a license to the software described in this documentation, or as otherwise set forth in a written software license agreement between you and FICO (or a FICO affiliate). Use of this documentation and the software described in it must conform strictly to the foregoing permitted uses, and no other use is permitted.