You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the README file it it is stated: To use Xpress with JuMP, use:
using JuMP, Xpress
model = Model(Xpress.Optimizer)
set_optimizer(model, "PRESOLVE", 0)
I guess, it should be set_attribute(model, "PRESOLVE", 0), but the question is: Is it recommended to turn off presolve as a default for Xpress? What features of JuMP will require this (if any)?
The text was updated successfully, but these errors were encountered:
In the README file it it is stated: To use Xpress with JuMP, use:
I guess, it should be
set_attribute(model, "PRESOLVE", 0)
, but the question is: Is it recommended to turn off presolve as a default for Xpress? What features of JuMP will require this (if any)?The text was updated successfully, but these errors were encountered: