mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-11-04 19:00:27 +01:00
90 lines
2.5 KiB
Julia
90 lines
2.5 KiB
Julia
using Groups.MatrixGroups
|
||
|
||
@testset "Matrix Groups" begin
|
||
@testset "SL(n, ℤ)" begin
|
||
SL3Z = SpecialLinearGroup{3}(Int8)
|
||
|
||
S = gens(SL3Z)
|
||
union!(S, inv.(S))
|
||
|
||
_, sizes = Groups.wlmetric_ball(S; radius = 4)
|
||
|
||
@test sizes == [13, 121, 883, 5455]
|
||
|
||
E(i, j) = SL3Z([A[MatrixGroups.ElementaryMatrix{3}(i, j, Int8(1))]])
|
||
|
||
A = alphabet(SL3Z)
|
||
w = E(1, 2)
|
||
r = E(2, 3)^-3
|
||
s = E(1, 3)^2 * E(3, 2)^-1
|
||
|
||
S = [w, r, s]
|
||
S = unique([S; inv.(S)])
|
||
_, sizes = Groups.wlmetric_ball(S; radius = 4)
|
||
@test sizes == [7, 33, 141, 561]
|
||
_, sizes = Groups.wlmetric_ball_serial(S; radius = 4)
|
||
@test sizes == [7, 33, 141, 561]
|
||
|
||
Logging.with_logger(Logging.NullLogger()) do
|
||
@testset "GroupsCore conformance" begin
|
||
test_Group_interface(SL3Z)
|
||
g = SL3Z(rand(1:length(alphabet(SL3Z)), 10))
|
||
h = SL3Z(rand(1:length(alphabet(SL3Z)), 10))
|
||
|
||
test_GroupElement_interface(g, h)
|
||
end
|
||
end
|
||
|
||
x = w * inv(w) * r
|
||
|
||
@test length(word(x)) == 5
|
||
@test size(x) == (3, 3)
|
||
@test eltype(x) == Int8
|
||
|
||
@test contains(sprint(show, SL3Z), "SL{3,Int8}")
|
||
@test contains(
|
||
sprint(show, MIME"text/plain"(), SL3Z),
|
||
"special linear group",
|
||
)
|
||
@test contains(sprint(show, MIME"text/plain"(), x), "∈ SL{3,Int8}")
|
||
@test sprint(print, x) isa String
|
||
|
||
@test length(word(x)) == 3
|
||
end
|
||
|
||
@testset "Sp(6, ℤ)" begin
|
||
Sp6 = MatrixGroups.SymplecticGroup{6}(Int8)
|
||
|
||
Logging.with_logger(Logging.NullLogger()) do
|
||
@testset "GroupsCore conformance" begin
|
||
test_Group_interface(Sp6)
|
||
g = Sp6(rand(1:length(alphabet(Sp6)), 10))
|
||
h = Sp6(rand(1:length(alphabet(Sp6)), 10))
|
||
|
||
test_GroupElement_interface(g, h)
|
||
end
|
||
end
|
||
|
||
x = gens(Sp6, 1)
|
||
x *= inv(x) * gens(Sp6, 2)
|
||
|
||
@test length(word(x)) == 3
|
||
@test size(x) == (6, 6)
|
||
@test eltype(x) == Int8
|
||
|
||
@test contains(sprint(show, Sp6), "Sp{6,Int8}")
|
||
@test contains(
|
||
sprint(show, MIME"text/plain"(), Sp6),
|
||
"group of 6×6 symplectic matrices",
|
||
)
|
||
@test contains(sprint(show, MIME"text/plain"(), x), "∈ Sp{6,Int8}")
|
||
@test sprint(print, x) isa String
|
||
|
||
@test length(word(x)) == 1
|
||
|
||
for g in gens(Sp6)
|
||
@test MatrixGroups.issymplectic(MatrixGroups.matrix(g))
|
||
end
|
||
end
|
||
end
|