Xpress.jl icon indicating copy to clipboard operation
Xpress.jl copied to clipboard

A Julia interface to the FICO Xpress Optimization suite

Results 7 Xpress.jl issues
Sort by recently updated
recently updated
newest added

**We encountered a difference between the best found solution in the solver log for Xpress 9.2:** ``` Concurrent statistics: Dual: 116729 simplex iterations, 64.75s Barrier: 500 barrier and 63482 simplex...

I'm open to a discussion on whether this should be v0.16.3 or v0.17.0. The argument for v0.17.0 is that it is a rather large change: https://github.com/jump-dev/Xpress.jl/compare/v0.16.2...master The main breakage risks...

The current implementation calls a different optimization routine depending on internal classification schemes ```julia if model.has_nlp_constraints @checked Lib.XPRSnlpoptimize(model.inner, model.solve_method) elseif is_mip(model) @checked Lib.XPRSmipoptimize(model.inner, model.solve_method) else @checked Lib.XPRSlpoptimize(model.inner, model.solve_method) end ```...

This PR addresses the problems referred to in #274. This will allow more recent versions of Xpress to use correct algorithms based on internal analysis (which is needed e.g. to...

Hitting control + C in during a`MIP` solve in the Julia REPL doesn't seem to terminate the Xpress instance properly. The REPL prompt comes back, but memory use stays high...