XSLPchguserfuncaddress
XSLPchguserfuncaddress |
int XPRS_CC XSLPchguserfuncaddress(XSLPprob Prob, int nSLPUF, void **Address);
Prob
|
The current SLP problem.
|
nSLPUF
|
The index of the user function.
|
Address
|
Pointer holding the address of the user function.
|
double InternalFunc(double *, int *); int nUF; XSLPchguserfunc(Prob, 0, NULL, 023, 1, NULL, NULL, NULL); XSLPgetintattrib(Prob,XSLP_UFS,&nUF); XSLPaddnames(Prob,XSLP_USERFUNCNAMES,"Func1", nUF,nUF); XSLPchguserfuncaddress(Prob, nUF, &InternalFunc);
nSLPUF is an Xpress NonLinear index and always counts from 1.
If Address is NULL, then the corresponding information will be left unaltered.
The address of the function is changed to the one provided. XSLPchguserfuncaddress should only be used for functions declared as of type DLL. Its main use is where a user function is actually internal to the system rather than being provided in an external library. In such a case, the function is initially defined as an external function using XSLPloaduserfuncs, XSLPadduserfuncs or XSLPchguserfunc and the address of the function is then provided using XSLPchguserfuncaddress.
© 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.