When I run a version of the code below, I receive the following error:
Warning: MathOptInterface.VariablePrimalStart() is not supported by MathOptInterface.Bridges.LazyBridgeOptimizer{GLPK.Optimizer}. This information will be discarded.
ā @ MathOptInterface.Utilities ~/.julia/packages/MathOptInterface/XiH8D/src/Utilities/copy.jl:140
using JuMP
using GLPK
prev_u = .15
model = Model(with_optimizer_attributes(GLPK.Optimizer))
@variable(model, u >= 0.1, start = prev_u)
optimize!(model)
What am I doing incorrectly?