From 000069961b35bf2bddce37b3b73500059e4cb139 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Sat, 18 Aug 2018 23:25:47 +0200 Subject: [PATCH] fix SCSSolver params to the most stable ones --- main.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.jl b/main.jl index 9afa685..40784f7 100644 --- a/main.jl +++ b/main.jl @@ -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)