XSLPglobal
XSLPglobal |
Purpose
Initiate the Xpress NonLinear mixed integer SLP (MISLP) algorithm
Synopsis
int XPRS_CC XSLPglobal(XSLPprob Prob);
Argument
Prob
|
The current SLP problem.
|
Example
The following example optimizes the problem and then finds the integer solution.
XSLPmaxim(Prob,""); XSLPglobal(Prob);
Further information
The current Xpress NonLinear mixed integer problem will be maximized or minimized using the algorithm defined by the control variable XSLP_MIPALGORITHM.
It is recommended that XSLPminim or XSLPmaxim is used first to obtain a converged solution to the relaxed problem. If this is not done, ensure that XSLP_OBJSENSE is set appropriately.
See the chapter on Mixed Integer Non-Linear Programming for more information about the Xpress NonLinear MISLP algorithms.
Related topics