change the defaults to more sane values: tol=1e-14, iterations=200000

This commit is contained in:
kalmar 2017-08-08 19:16:45 +02:00
parent e78b8dbefd
commit 67523717b5
1 changed files with 2 additions and 2 deletions

View File

@ -89,11 +89,11 @@ function parse_commandline()
"--tol"
help = "set numerical tolerance for the SDP solver (default: 1e-5)"
arg_type = Float64
default = 1e-5
default = 1e-14
"--iterations"
help = "set maximal number of iterations for the SDP solver (default: 20000)"
arg_type = Int
default = 20000
default = 200000
"--upper-bound"
help = "Set an upper bound for the spectral gap (default: Inf)"
arg_type = Float64