fix SCSSolver params to the most stable ones

This commit is contained in:
kalmarek 2018-08-18 23:25:47 +02:00
parent ab49755863
commit 000069961b
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ function params(Gr::PropertyTGroup)
return radius, tol, iterations, upper_bound, warm
end
scs_solver(tol, iterations) = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct, alpha=1.5, acceleration_lookback=10)
scs_solver(tol, iterations) = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct, alpha=1.95, acceleration_lookback=1)
main(G::SymmetrizedGroup) = main(Symmetrize, G)