GroupsWithPropertyT/SL_orbit.jl

62 lines
1.7 KiB
Julia
Raw Normal View History

2017-06-22 15:18:26 +02:00
using ArgParse
2017-06-08 20:09:36 +02:00
###############################################################################
#
# Parsing command line
#
###############################################################################
function parse_commandline()
settings = ArgParseSettings()
@add_arg_table settings begin
"--tol"
2017-09-10 15:41:49 +02:00
help = "set numerical tolerance for the SDP solver"
2017-06-08 20:09:36 +02:00
arg_type = Float64
default = 1e-14
2017-06-08 20:09:36 +02:00
"--iterations"
2018-03-22 11:03:11 +01:00
help = "set maximal number of iterations for the SDP solver"
2017-06-08 20:09:36 +02:00
arg_type = Int
2017-11-05 20:43:35 +01:00
default = 60000
2017-06-08 20:09:36 +02:00
"--upper-bound"
2017-09-10 15:41:49 +02:00
help = "Set an upper bound for the spectral gap"
2017-06-08 20:09:36 +02:00
arg_type = Float64
default = Inf
"--cpus"
2017-09-10 15:41:49 +02:00
help = "Set number of cpus used by solver"
2017-06-08 20:09:36 +02:00
arg_type = Int
required = false
"-N"
2017-09-10 15:41:49 +02:00
help = "Consider elementary matrices EL(N)"
2017-06-08 20:09:36 +02:00
arg_type = Int
default = 2
"-p"
2017-09-10 15:41:49 +02:00
help = "Matrices over field of p-elements (p=0 => over ZZ)"
2017-06-08 20:09:36 +02:00
arg_type = Int
default = 0
"--radius"
2017-09-10 15:41:49 +02:00
help = "Radius of ball B_r(e,S) to find solution over"
2017-06-08 20:09:36 +02:00
arg_type = Int
default = 2
"-X"
2017-09-10 15:41:49 +02:00
help = "Consider EL(N, ZZ⟨X⟩)"
action = :store_true
2017-12-21 13:10:24 +01:00
"--warmstart"
2018-03-22 11:03:11 +01:00
help = "Use warmstart.jld as the initial guess for SCS"
2017-12-28 19:01:48 +01:00
action = :store_true
2017-06-08 20:09:36 +02:00
end
return parse_args(settings)
end
2018-01-04 10:50:26 +01:00
const PARSEDARGS = parse_commandline()
2017-06-08 20:09:36 +02:00
include("CPUselect.jl")
2017-06-08 20:09:36 +02:00
2018-01-04 10:50:26 +01:00
set_parallel_mthread(PARSEDARGS, workers=true)
2017-06-08 21:35:27 +02:00
2018-03-22 11:07:52 +01:00
include("groups/speciallinear.jl")
2017-11-06 01:58:50 +01:00
include("Orbit.jl")
2018-03-22 11:07:52 +01:00
main(SpecialLinear, PARSEDARGS)