Closed 4er4er4er closed 1 year ago
According to XPRESS documentation, DEFAULTALG should imply the choice of LP algorithms for all nodes of a MIP tree. Obviously, it does not.
To circumvent the issue, added options barrier/primal/dual/network, analog to xpressasl, see yesterday's release.
A user reported the following difficulty:
For both xpress and xpressasl, it appears that the option
defaultalg
(and its MP equivalents) invokes the concurrent optimizer regardless of its setting. Here's an example with defaultalg=4, which should select the barrier method:The user wants to choose barrier-only, not concurrent. With the ASL interface, this could be done by specifying the option
barrier
(with no value), so the problem showed up when the user switched to MP, which does not seem to have an equivalent to thebarrier
option.