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) ```