From 86cadd044061cf280917c8e0e635be3661d27044 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Sat, 30 Dec 2017 00:26:36 +0100 Subject: [PATCH] set alpha=1.95, acceleration_lookback=1 for numerical stability --- MCG.jl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/MCG.jl b/MCG.jl index c15300e..befeea8 100644 --- a/MCG.jl +++ b/MCG.jl @@ -72,8 +72,6 @@ function main() radius = parsed_args["radius"] N = parsed_args["N"] - solver = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct) - prefix = "MCG($N)" name = "$(prefix)" @@ -101,12 +99,13 @@ function main() ]; relations = [relations; [inv(rel) for rel in relations]] - Groups.add_rels!(MCGroup, Dict(rel => MCGroup() for rel in relations)) S = gens(MCGroup) S = unique([S; [inv(s) for s in S]]) Id = MCGroup() + + solver = SCSSolver(eps=tol, max_iters=iterations, linearsolver=SCS.Direct, alpha=1.9, acceleration_lookback=1) @time PropertyT.check_property_T(name, S, Id, solver, upper_bound, tol, radius) return 0