Initializing help system before first use

XSLPremaxim

Purpose
This subroutine is deprecated and will be removed in a future release. Please use XSLPmaxim with the 'c' flag instead.
Continue the maximization of an SLP problem.
Synopsis
int XPRS_CC XSLPremaxim(XSLPprob prob, char *flags);
Arguments
prob 
The current SLP problem.
flags 
These have the same meaning as for XSLPmaxim.
Example
The following example optimizes the SLP problem for up to 10 SLP iterations. If it has not converged, it saves the file and continues for another 10.
int Status;

XSLPsetintcontrol(prob, XSLP_ITERLIMIT, 10);
XSLPmaxim(prob,"");
XSLPgetintattrib(prob, XSLP_STATUS, &Status);
if (Status & XSLP_MAXSLPITERATIONS) {
  XSLPsave(prob);
  XSLPsetintcontrol(prob, XSLP_ITERLIMIT, 20);
  XSLPremaxim(prob,"");
}
Further information
This allows Xpress NonLinear to continue the maximization of a problem after it has been terminated, without re-initializing any of the parameters. In particular, the iteration count will resume at the point where it previously stopped, and not at 1.
Related topics

© 2001-2025 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.