How to use interior point algorithm in GLPK

Hi!

[EDIT: I spoke too fast]

By the looks of it, looks like the simplex/interior-point method must be chosen when instantiating the GLPK.Optimizer object.

Thus, you should create the model as

using JuMP
using GLPK

model = Model(() -> GLPK.Optimizer(method=GLPK.INTERIOR))
4 Likes