2017-06-22 15:18:26 +02:00
|
|
|
using ArgParse
|
|
|
|
using SCS
|
|
|
|
|
|
|
|
using Nemo
|
|
|
|
using PropertyT
|
|
|
|
|
|
|
|
using Groups
|
2017-06-08 20:09:36 +02:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Action of WreathProductElems on Nemo.MatElem
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2017-06-22 15:18:26 +02:00
|
|
|
function matrix_emb(MM::MatSpace, g::WreathProductElem)
|
2017-06-08 20:09:36 +02:00
|
|
|
parent(g).P.n == MM.cols == MM.rows || throw("No natural embedding of $(parent(g)) in ")
|
|
|
|
powers = [(elt == parent(elt)() ? 0: 1) for elt in g.n.elts]
|
|
|
|
elt = diagm([(-1)^(elt == parent(elt)() ? 0: 1) for elt in g.n.elts])
|
|
|
|
return MM(elt)*MM(Nemo.matrix_repr(g.p)')
|
|
|
|
end
|
|
|
|
|
2017-06-22 15:18:26 +02:00
|
|
|
function (g::WreathProductElem)(A::MatElem)
|
2017-06-08 20:09:36 +02:00
|
|
|
G = matrix_emb(parent(A), g)
|
|
|
|
inv_G = matrix_emb(parent(A), inv(g))
|
|
|
|
return G*A*inv_G
|
|
|
|
end
|
|
|
|
|
2017-06-22 15:18:26 +02:00
|
|
|
function (p::perm)(A::MatElem)
|
2017-06-09 22:03:35 +02:00
|
|
|
length(p.d) == A.r == A.c || throw("Can't act via $p on matrix of size ($(A.r), $(A.c))")
|
|
|
|
R = parent(A)
|
2017-08-07 19:11:57 +02:00
|
|
|
return p*A*inv(p)
|
2017-06-09 22:03:35 +02:00
|
|
|
end
|
|
|
|
|
2017-06-08 20:09:36 +02:00
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Generating set
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
2017-08-01 15:07:05 +02:00
|
|
|
function E(i::Int, j::Int, M::MatSpace, val=one(M.base_ring))
|
2017-06-08 20:09:36 +02:00
|
|
|
@assert i≠j
|
|
|
|
m = one(M)
|
2017-08-01 15:07:05 +02:00
|
|
|
m[i,j] = val
|
2017-06-08 20:09:36 +02:00
|
|
|
return m
|
|
|
|
end
|
|
|
|
|
|
|
|
function SLsize(n,p)
|
|
|
|
result = BigInt(1)
|
|
|
|
for k in 0:n-1
|
|
|
|
result *= p^n - p^k
|
|
|
|
end
|
|
|
|
return div(result, p-1)
|
|
|
|
end
|
|
|
|
|
2017-08-01 15:07:05 +02:00
|
|
|
function SL_generatingset(n::Int, X::Bool=false)
|
|
|
|
indexing = [(i,j) for i in 1:n for j in 1:n if i≠j]
|
|
|
|
G = MatrixSpace(ZZ, n, n)
|
|
|
|
if X
|
|
|
|
S = [E(i,j,G,v) for (i,j) in indexing for v in [1, 100]]
|
|
|
|
else
|
|
|
|
S = [E(i,j,G,v) for (i,j) in indexing for v in [1]]
|
|
|
|
end
|
|
|
|
S = vcat(S, [inv(x) for x in S])
|
|
|
|
return G, unique(S)
|
2017-06-08 20:09:36 +02:00
|
|
|
end
|
|
|
|
|
2017-08-01 15:07:05 +02:00
|
|
|
function SL_generatingset(n::Int, p::Int, X::Bool=false)
|
|
|
|
p == 0 && return SL_generatingset(n, X)
|
2017-06-08 20:09:36 +02:00
|
|
|
(p > 1 && n > 1) || throw("Both n and p should be positive integers!")
|
2017-06-08 21:36:18 +02:00
|
|
|
info("Size(SL($n,$p)) = $(SLsize(n,p))")
|
2017-06-22 15:18:26 +02:00
|
|
|
F = ResidueRing(ZZ, p)
|
|
|
|
G = MatrixSpace(F, n, n)
|
2017-06-08 20:09:36 +02:00
|
|
|
indexing = [(i,j) for i in 1:n for j in 1:n if i≠j]
|
2017-09-10 14:32:44 +02:00
|
|
|
S = [E(i, j, G) for (i,j) in indexing]
|
2017-06-08 21:36:18 +02:00
|
|
|
S = vcat(S, [inv(x) for x in S])
|
2017-06-08 20:09:36 +02:00
|
|
|
return G, unique(S)
|
|
|
|
end
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# Parsing command line
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
function parse_commandline()
|
|
|
|
settings = ArgParseSettings()
|
|
|
|
|
|
|
|
@add_arg_table settings begin
|
|
|
|
"--tol"
|
|
|
|
help = "set numerical tolerance for the SDP solver (default: 1e-5)"
|
|
|
|
arg_type = Float64
|
2017-08-08 19:16:45 +02:00
|
|
|
default = 1e-14
|
2017-06-08 20:09:36 +02:00
|
|
|
"--iterations"
|
|
|
|
help = "set maximal number of iterations for the SDP solver (default: 20000)"
|
|
|
|
arg_type = Int
|
2017-08-08 19:16:45 +02:00
|
|
|
default = 200000
|
2017-06-08 20:09:36 +02:00
|
|
|
"--upper-bound"
|
|
|
|
help = "Set an upper bound for the spectral gap (default: Inf)"
|
|
|
|
arg_type = Float64
|
|
|
|
default = Inf
|
|
|
|
"--cpus"
|
|
|
|
help = "Set number of cpus used by solver (default: auto)"
|
|
|
|
arg_type = Int
|
|
|
|
required = false
|
|
|
|
"-N"
|
|
|
|
help = "Consider automorphisms of free group on N generators (default: N=2)"
|
|
|
|
arg_type = Int
|
|
|
|
default = 2
|
|
|
|
"-p"
|
|
|
|
help = "Matrices over filed of p-elements (default: p=0 => over ZZ)"
|
|
|
|
arg_type = Int
|
|
|
|
default = 0
|
|
|
|
"--radius"
|
|
|
|
help = "Find the decomposition over B_r(e,S)"
|
|
|
|
arg_type = Int
|
|
|
|
default = 2
|
2017-08-01 15:07:05 +02:00
|
|
|
"-X"
|
|
|
|
help = "Matrices are over ZZ⟨X⟩"
|
|
|
|
action = :store_true
|
2017-06-08 20:09:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
return parse_args(settings)
|
|
|
|
end
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
#
|
|
|
|
# main
|
|
|
|
#
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
function main()
|
|
|
|
parsed_args = parse_commandline()
|
|
|
|
|
|
|
|
N = parsed_args["N"]
|
|
|
|
p = parsed_args["p"]
|
|
|
|
|
|
|
|
if p == 0
|
2017-08-01 15:07:05 +02:00
|
|
|
if parsed_args["X"]
|
|
|
|
dirname = "oSL$(N)Z⟨X⟩"
|
|
|
|
else
|
|
|
|
dirname = "oSL$(N)Z"
|
|
|
|
end
|
2017-06-08 20:09:36 +02:00
|
|
|
else
|
2017-06-08 21:35:50 +02:00
|
|
|
dirname = "oSL$(N)_$p"
|
2017-06-08 20:09:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
radius = parsed_args["radius"]
|
2017-06-08 21:44:20 +02:00
|
|
|
tol = parsed_args["tol"]
|
|
|
|
iterations = parsed_args["iterations"]
|
|
|
|
upper_bound = parsed_args["upper-bound"]
|
2017-06-08 20:09:36 +02:00
|
|
|
|
2017-06-09 12:00:41 +02:00
|
|
|
dirname = "$(dirname)_$(upper_bound)_r=$radius"
|
|
|
|
|
2017-06-08 20:09:36 +02:00
|
|
|
isdir(dirname) || mkdir(dirname)
|
|
|
|
logger = PropertyT.setup_logging(dirname)
|
|
|
|
|
2017-06-08 21:44:20 +02:00
|
|
|
info(logger, "Group: $dirname")
|
|
|
|
info(logger, "Iterations: $iterations")
|
|
|
|
info(logger, "Precision: $tol")
|
|
|
|
info(logger, "Upper bound: $upper_bound")
|
|
|
|
|
2017-08-01 15:07:05 +02:00
|
|
|
G, S = SL_generatingset(N, p, parsed_args["X"])
|
2017-06-08 20:09:36 +02:00
|
|
|
info(logger, G)
|
|
|
|
info(logger, "Symmetric generating set of size $(length(S))")
|
|
|
|
info(logger, S)
|
2017-06-22 15:18:26 +02:00
|
|
|
AutS = WreathProduct(FiniteField(2,1, "a")[1], PermutationGroup(N))
|
2017-06-09 22:03:35 +02:00
|
|
|
# AutS = PermutationGroup(N)
|
2017-06-08 20:09:36 +02:00
|
|
|
|
2017-06-09 22:07:00 +02:00
|
|
|
solver = SCS.SCSSolver(eps=tol, max_iters=iterations, verbose=true, linearsolver=SCS.Direct)
|
2017-06-08 20:09:36 +02:00
|
|
|
|
2017-06-08 21:35:27 +02:00
|
|
|
sett = Settings(dirname, N, G, S, AutS, radius, solver, upper_bound, tol)
|
|
|
|
|
2017-06-22 15:18:26 +02:00
|
|
|
PropertyT.check_property_T(sett)
|
2017-06-08 20:09:36 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
main()
|