HiGHS.jl v0.1.0 released

Dear all,

We are happy to announce the initial v0.1 release of HiGHS.jl, a wrapper for HiGHS.

HiGHS is a new high-performance open-source linear programming solver being developed by Julian Hall and colleagues at the University of Edinburgh, Scotland.

You can try it out as follows (note that it requires Julia 1.3 or later):

import Pkg; Pkg.add("HiGHS")
using JuMP, HiGHS
model = Model(HiGHS.Optimizer)
# set_silent(model)  # Uncomment to turn off printing

While HiGHS is ready to use today, you should be aware that it is still under
active development. That means it might be slow or unstable on some problems.
However, by reporting these problems you can help make HiGHS better!

To report a problem (e.g., incorrect results, or a crash of the solver),
or make a suggestion for how to improve HiGHS, please file a GitHub issue.

20 Likes