We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Is it possible to have SCIP.jl write the solution to a .SOL file by setting an optimizer attribute?
m = JuMP.Model() [...] JuMP.set_optimizer(m, SCIP.Optimizer) JuMP.set_optimizer_attribute(m, "SolutionFile", "result.sol") JuMP.optimize!(m)