next updates to README

This commit is contained in:
kalmarek 2017-09-10 17:35:12 +02:00
parent 62aab2d4b8
commit 39d7baf1cb
1 changed files with 12 additions and 13 deletions

View File

@ -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
```