2023-03-20 01:40:59 +01:00
|
|
|
using LinearAlgebra
|
2024-02-19 18:47:29 +01:00
|
|
|
BLAS.set_num_threads(4)
|
2023-03-20 02:29:19 +01:00
|
|
|
ENV["OMP_NUM_THREADS"] = 4
|
2024-02-19 18:47:29 +01:00
|
|
|
include(joinpath(@__DIR__, "../test/optimizers.jl"))
|
|
|
|
using SCS_MKL_jll
|
2023-03-20 01:40:59 +01:00
|
|
|
|
|
|
|
using Groups
|
|
|
|
import Groups.MatrixGroups
|
2023-03-20 02:29:19 +01:00
|
|
|
|
2023-03-20 01:40:59 +01:00
|
|
|
using PropertyT
|
|
|
|
|
2024-02-19 18:47:29 +01:00
|
|
|
import PropertyT.SW as SW
|
|
|
|
using PropertyT.PG
|
|
|
|
using PropertyT.SA
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
include(joinpath(@__DIR__, "argparse.jl"))
|
|
|
|
include(joinpath(@__DIR__, "utils.jl"))
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
# const N = parsed_args["N"]
|
|
|
|
const HALFRADIUS = parsed_args["halfradius"]
|
|
|
|
const UPPER_BOUND = parsed_args["upper_bound"]
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
include(joinpath(@__DIR__, "./G₂_gens.jl"))
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
G, roots, Weyl = G₂_roots_weyl()
|
|
|
|
@info "Running Adj² - λ·Δ sum of squares decomposition for G₂"
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
@info "computing group algebra structure"
|
|
|
|
RG, S, sizes = @time PropertyT.group_algebra(G, halfradius = HALFRADIUS)
|
2023-03-20 01:40:59 +01:00
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
@info "computing WedderburnDecomposition"
|
2023-03-20 01:40:59 +01:00
|
|
|
wd = let Σ = Weyl, RG = RG
|
|
|
|
act = PropertyT.AlphabetPermutation{eltype(Σ),Int64}(
|
2024-02-19 18:47:29 +01:00
|
|
|
Dict(g => PermutationGroups.AP.perm(g) for g in Σ),
|
2023-03-20 01:40:59 +01:00
|
|
|
)
|
|
|
|
|
2024-02-19 18:47:29 +01:00
|
|
|
@time SW.WedderburnDecomposition(
|
2023-03-20 01:40:59 +01:00
|
|
|
Float64,
|
|
|
|
Σ,
|
|
|
|
act,
|
|
|
|
basis(RG),
|
|
|
|
StarAlgebras.Basis{UInt16}(@view basis(RG)[1:sizes[HALFRADIUS]]),
|
|
|
|
semisimple = false,
|
|
|
|
)
|
|
|
|
end
|
2023-03-20 02:29:19 +01:00
|
|
|
@info wd
|
2023-03-20 01:40:59 +01:00
|
|
|
|
|
|
|
function desubscriptify(symbol::Symbol)
|
|
|
|
digits = [
|
|
|
|
Int(l) - 0x2080 for
|
|
|
|
l in reverse(string(symbol)) if 0 ≤ Int(l) - 0x2080 ≤ 9
|
|
|
|
]
|
|
|
|
res = 0
|
|
|
|
for (i, d) in enumerate(digits)
|
|
|
|
res += 10^(i - 1) * d
|
|
|
|
end
|
|
|
|
return res
|
|
|
|
end
|
|
|
|
|
|
|
|
function PropertyT.grading(g::MatrixGroups.MatrixElt, roots = roots)
|
|
|
|
id = desubscriptify(g.id)
|
|
|
|
return roots[id]
|
|
|
|
end
|
|
|
|
|
2023-03-20 02:29:19 +01:00
|
|
|
Δ = RG(length(S)) - sum(RG(s) for s in S)
|
2023-03-20 01:40:59 +01:00
|
|
|
Δs = PropertyT.laplacians(
|
|
|
|
RG,
|
|
|
|
S,
|
|
|
|
x -> (gx = PropertyT.grading(x); Set([gx, -gx])),
|
|
|
|
)
|
|
|
|
|
|
|
|
elt = PropertyT.Adj(Δs)
|
2023-03-20 02:29:19 +01:00
|
|
|
@assert elt == Δ^2 - PropertyT.Sq(Δs)
|
2023-03-20 01:40:59 +01:00
|
|
|
unit = Δ
|
|
|
|
|
|
|
|
@time model, varP = PropertyT.sos_problem_primal(
|
|
|
|
elt,
|
|
|
|
unit,
|
|
|
|
wd;
|
|
|
|
upper_bound = UPPER_BOUND,
|
|
|
|
augmented = true,
|
2023-03-20 02:29:19 +01:00
|
|
|
show_progress = true,
|
2023-03-20 01:40:59 +01:00
|
|
|
)
|
|
|
|
|
2023-04-11 10:31:54 +02:00
|
|
|
solve_in_loop(
|
|
|
|
model,
|
|
|
|
wd,
|
|
|
|
varP;
|
|
|
|
logdir = "./log/G2/r=$HALFRADIUS/Adj-$(UPPER_BOUND)Δ",
|
|
|
|
optimizer = scs_optimizer(;
|
|
|
|
linear_solver = SCS.MKLDirectSolver,
|
|
|
|
eps = 1e-9,
|
|
|
|
max_iters = 100_000,
|
|
|
|
accel = 50,
|
|
|
|
alpha = 1.95,
|
|
|
|
),
|
|
|
|
data = (elt = elt, unit = unit, halfradius = HALFRADIUS),
|
|
|
|
)
|