2021-05-26 12:08:31 +02:00
|
|
|
|
@testset "Automorphisms" begin
|
|
|
|
|
|
|
|
|
|
@testset "Transvections" begin
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test Groups.Transvection(:ϱ, 1, 2) isa Groups.GSymbol
|
|
|
|
|
@test Groups.Transvection(:ϱ, 1, 2) isa Groups.Transvection
|
|
|
|
|
@test Groups.Transvection(:λ, 1, 2) isa Groups.GSymbol
|
|
|
|
|
@test Groups.Transvection(:λ, 1, 2) isa Groups.Transvection
|
|
|
|
|
t = Groups.Transvection(:ϱ, 1, 2)
|
|
|
|
|
@test inv(t) isa Groups.GSymbol
|
|
|
|
|
@test inv(t) isa Groups.Transvection
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
@test t != inv(t)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
s = Groups.Transvection(:ϱ, 1, 2)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test t == s
|
|
|
|
|
@test hash(t) == hash(s)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
s_ = Groups.Transvection(:ϱ, 1, 3)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test s_ != s
|
|
|
|
|
@test hash(s_) != hash(s)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test Groups.gersten_alphabet(3) isa Alphabet
|
|
|
|
|
A = Groups.gersten_alphabet(3)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test length(A) == 12
|
2021-06-21 17:53:29 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test sprint(show, Groups.ϱ(1, 2)) == "ϱ₁.₂"
|
|
|
|
|
@test sprint(show, Groups.λ(3, 2)) == "λ₃.₂"
|
2021-05-26 12:08:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
A4 = Alphabet(
|
|
|
|
|
[:a,:A,:b,:B,:c,:C,:d,:D],
|
|
|
|
|
[ 2, 1, 4, 3, 6, 5, 8, 7]
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
A5 = Alphabet(
|
|
|
|
|
[:a,:A,:b,:B,:c,:C,:d,:D,:e,:E],
|
|
|
|
|
[ 2, 1, 4, 3, 6, 5, 8, 7,10, 9]
|
|
|
|
|
)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
F4 = FreeGroup([:a, :b, :c, :d], A4)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
a,b,c,d = gens(F4)
|
|
|
|
|
D = ntuple(i->gens(F4, i), 4)
|
|
|
|
|
|
|
|
|
|
@testset "Transvection action correctness" begin
|
|
|
|
|
i,j = 1,2
|
2021-06-21 18:45:10 +02:00
|
|
|
|
r = Groups.Transvection(:ϱ,i,j)
|
|
|
|
|
l = Groups.Transvection(:λ,i,j)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
(t::Groups.Transvection)(v::Tuple) = Groups.evaluate!(v, t, A4)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
@test r(deepcopy(D)) == (a*b, b, c, d)
|
|
|
|
|
@test inv(r)(deepcopy(D)) == (a*b^-1,b, c, d)
|
|
|
|
|
@test l(deepcopy(D)) == (b*a, b, c, d)
|
|
|
|
|
@test inv(l)(deepcopy(D)) == (b^-1*a,b, c, d)
|
|
|
|
|
|
|
|
|
|
i,j = 3,1
|
2021-06-21 18:45:10 +02:00
|
|
|
|
r = Groups.Transvection(:ϱ,i,j)
|
|
|
|
|
l = Groups.Transvection(:λ,i,j)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test r(deepcopy(D)) == (a, b, c*a, d)
|
|
|
|
|
@test inv(r)(deepcopy(D)) == (a, b, c*a^-1,d)
|
|
|
|
|
@test l(deepcopy(D)) == (a, b, a*c, d)
|
|
|
|
|
@test inv(l)(deepcopy(D)) == (a, b, a^-1*c,d)
|
|
|
|
|
|
|
|
|
|
i,j = 4,3
|
2021-06-21 18:45:10 +02:00
|
|
|
|
r = Groups.Transvection(:ϱ,i,j)
|
|
|
|
|
l = Groups.Transvection(:λ,i,j)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test r(deepcopy(D)) == (a, b, c, d*c)
|
|
|
|
|
@test inv(r)(deepcopy(D)) == (a, b, c, d*c^-1)
|
|
|
|
|
@test l(deepcopy(D)) == (a, b, c, c*d)
|
|
|
|
|
@test inv(l)(deepcopy(D)) == (a, b, c, c^-1*d)
|
|
|
|
|
|
|
|
|
|
i,j = 2,4
|
2021-06-21 18:45:10 +02:00
|
|
|
|
r = Groups.Transvection(:ϱ,i,j)
|
|
|
|
|
l = Groups.Transvection(:λ,i,j)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test r(deepcopy(D)) == (a, b*d, c, d)
|
|
|
|
|
@test inv(r)(deepcopy(D)) == (a, b*d^-1,c, d)
|
|
|
|
|
@test l(deepcopy(D)) == (a, d*b, c, d)
|
|
|
|
|
@test inv(l)(deepcopy(D)) == (a, d^-1*b,c, d)
|
|
|
|
|
end
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
A = SpecialAutomorphismGroup(F4, maxrules=1000)
|
2021-06-21 17:53:29 +02:00
|
|
|
|
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@testset "AutomorphismGroup constructors" begin
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test A isa Groups.AbstractFPGroup
|
|
|
|
|
@test A isa AutomorphismGroup
|
|
|
|
|
@test alphabet(A) isa Alphabet
|
|
|
|
|
@test Groups.relations(A) isa Vector{<:Pair}
|
2021-06-21 17:53:29 +02:00
|
|
|
|
@test sprint(show, A) == "automorphism group of free group on 4 generators"
|
2021-05-26 12:08:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@testset "Automorphisms: hash and evaluate" begin
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test Groups.domain(gens(A, 1)) == D
|
2021-05-26 12:08:31 +02:00
|
|
|
|
g, h = gens(A, 1), gens(A, 8)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test evaluate(g*h) == evaluate(h*g)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@test (g*h).savedhash == zero(UInt)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test sprint(show, typeof(g)) == "Automorphism{FreeGroup{Symbol},…}"
|
2021-06-21 17:53:29 +02:00
|
|
|
|
|
2021-05-26 12:08:31 +02:00
|
|
|
|
a = g*h
|
|
|
|
|
b = h*g
|
|
|
|
|
@test hash(a) != zero(UInt)
|
|
|
|
|
@test hash(a) == hash(b)
|
|
|
|
|
@test a.savedhash == b.savedhash
|
|
|
|
|
|
|
|
|
|
@test length(unique([a,b])) == 1
|
|
|
|
|
@test length(unique([g*h, h*g])) == 1
|
|
|
|
|
|
|
|
|
|
# Not so simple arithmetic: applying starting on the left:
|
|
|
|
|
# ϱ₁₂*ϱ₂₁⁻¹*λ₁₂*ε₂ == σ₂₁₃₄
|
|
|
|
|
|
|
|
|
|
g = gens(A, 1)
|
2021-06-21 18:45:10 +02:00
|
|
|
|
x1, x2, x3, x4 = Groups.domain(g)
|
|
|
|
|
@test evaluate(g) == (x1*x2, x2, x3, x4)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
g = g*inv(gens(A, 4)) # ϱ₂₁
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test evaluate(g) == (x1*x2, x1^-1, x3, x4)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
g = g*gens(A, 13)
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test evaluate(g) == (x2, x1^-1, x3, x4)
|
2021-05-26 12:08:31 +02:00
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@testset "Automorphisms: SAut(F₄)" begin
|
|
|
|
|
N = 4
|
2021-06-21 18:45:10 +02:00
|
|
|
|
G = SpecialAutomorphismGroup(FreeGroup(N))
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
S = gens(G)
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test S isa Vector{<:FPGroupElement{<:AutomorphismGroup{<:FreeGroup}}}
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
@test length(S) == 2*N*(N-1)
|
|
|
|
|
@test length(unique(S)) == length(S)
|
|
|
|
|
|
|
|
|
|
S_sym = [S; inv.(S)]
|
|
|
|
|
@test length(S_sym) == length(unique(S_sym))
|
|
|
|
|
|
|
|
|
|
pushfirst!(S_sym, one(G))
|
|
|
|
|
|
|
|
|
|
B_2 = [i*j for (i,j) in Base.product(S_sym, S_sym)]
|
|
|
|
|
@test length(B_2) == 2401
|
|
|
|
|
@test length(unique(B_2)) == 1777
|
|
|
|
|
|
|
|
|
|
@test all(g->isone(inv(g)*g), B_2)
|
|
|
|
|
@test all(g->isone(g*inv(g)), B_2)
|
|
|
|
|
end
|
|
|
|
|
|
2021-07-09 16:46:15 +02:00
|
|
|
|
@testset "Forward evaluate" begin
|
|
|
|
|
N = 3
|
|
|
|
|
F = FreeGroup(N)
|
|
|
|
|
G = SpecialAutomorphismGroup(F)
|
|
|
|
|
|
|
|
|
|
a = gens(G, 1) # ϱ₁₂
|
|
|
|
|
|
|
|
|
|
f = gens(F)
|
|
|
|
|
|
|
|
|
|
@test a(f[1]) == f[1]*f[2]
|
|
|
|
|
@test all(a(f[i]) == f[i] for i in 2:length(f))
|
|
|
|
|
|
|
|
|
|
S = let s = gens(G)
|
|
|
|
|
[s; inv.(s)]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
@test all(
|
|
|
|
|
map(first(Groups.wlmetric_ball(S, radius=2))) do g
|
|
|
|
|
lm = Groups.LettersMap(g)
|
|
|
|
|
img = evaluate(g)
|
|
|
|
|
|
|
|
|
|
fimg = [F(lm[first(word(s))]) for s in gens(F)]
|
|
|
|
|
|
|
|
|
|
succeeded = all(img .== fimg)
|
|
|
|
|
@assert succeeded "forward evaluation of $(word(g)) failed: \n img=$img\n fimg=$(tuple(fimg...))"
|
|
|
|
|
succeeded
|
|
|
|
|
end
|
|
|
|
|
)
|
|
|
|
|
end
|
|
|
|
|
|
2021-05-26 12:08:31 +02:00
|
|
|
|
@testset "GroupsCore conformance" begin
|
|
|
|
|
test_Group_interface(A)
|
2021-06-21 19:14:42 +02:00
|
|
|
|
g = A(rand(1:length(alphabet(A)), 10))
|
|
|
|
|
h = A(rand(1:length(alphabet(A)), 10))
|
2021-05-26 12:08:31 +02:00
|
|
|
|
|
|
|
|
|
test_GroupElement_interface(g, h)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|