Feeding solver parameters as a dictionary

I’m still using JuMP 0.18, Julia 0.6.3

Update to the latest version, then use

model = Model(Gurobi.Optimizer)
for (key, val) in dict
    set_optimizer_attribute(model, key, val)
end
2 Likes