From 39d7baf1cbafc3d6862306fbef9be0aa3da48a14 Mon Sep 17 00:00:00 2001 From: kalmarek Date: Sun, 10 Sep 2017 17:35:12 +0200 Subject: [PATCH] next updates to README --- README.md | 25 ++++++++++++------------- 1 file changed, 12 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index a5460d0..906401f 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ julia SL.jl -N 2 -p 7 --radius 2 --iterations 100000 ``` (~30 seconds, depending on hardware). The monotonous decreasing $\lambda$ during the optimisation is in column `pri obj` (or `dua obj`) of `solver.log`. -Compare this to +Compare this to ```shell julia SL.jl -N 2 -p 7 --radius 3 --iterations 100000 ``` @@ -51,23 +51,22 @@ usage: SL.jl [--tol TOL] [--iterations ITERATIONS] optional arguments: --tol TOL set numerical tolerance for the SDP solver - (default: 1e-5) (type: Float64, default: - 1.0e-5) + (type: Float64, default: 1.0e-6) --iterations ITERATIONS set maximal number of iterations for the SDP solver (default: 20000) (type: Int64, default: - 20000) + 50000) --upper-bound UPPER-BOUND - Set an upper bound for the spectral gap - (default: Inf) (type: Float64, default: Inf) - --cpus CPUS Set number of cpus used by solver (default: - auto) (type: Int64) - -N N Consider matrices of size N (default: N=3) - (type: Int64, default: 3) - -p P Matrices over filed of p-elements (default: - p=0 => over ZZ) (type: Int64, default: 0) - --radius RADIUS Find the decomposition over B_r(e,S) (type: + Set an upper bound for the spectral gap (type: + Float64, default: Inf) + --cpus CPUS Set number of cpus used by solver (type: + Int64) + -N N Consider elementary matrices EL(N) (type: Int64, default: 2) + -p P Matrices over field of p-elements (p=0 => over + ZZ) (type: Int64, default: 0) + --radius RADIUS Radius of ball B_r(e,S) to find solution over + (type: Int64, default: 2) -h, --help show this help message and exit ```