Change SCS solver options

Hi,
I am new to Julia, while I am trying to use SCS.Optimizer to get the solution of projection problem, I see SCS has default eps = 1e-4, what if I want to be more accurate, like 1e-6, how could I change it?

I found someone uses SCS.Optimizer(eps=1e-6), but it doesn’t work.

Use set_optimizer_attribute Models · JuMP

That works! Thank you so much!

1 Like