mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-13 22:05:27 +01:00
201 lines
5.8 KiB
Julia
201 lines
5.8 KiB
Julia
function test_action(basis, group, act)
|
||
action = SW.action
|
||
return @testset "action definition" begin
|
||
@test all(basis) do b
|
||
e = one(group)
|
||
return action(act, e, b) == b
|
||
end
|
||
|
||
a = let a = rand(basis)
|
||
while isone(a)
|
||
a = rand(basis)
|
||
end
|
||
@assert !isone(a)
|
||
a
|
||
end
|
||
|
||
g, h = let g_h = rand(group, 2)
|
||
while any(isone, g_h)
|
||
g_h = rand(group, 2)
|
||
end
|
||
@assert all(!isone, g_h)
|
||
g_h
|
||
end
|
||
|
||
action = SW.action
|
||
@test action(act, g, a) in basis
|
||
@test action(act, h, a) in basis
|
||
@test action(act, h, action(act, g, a)) == action(act, g * h, a)
|
||
|
||
@test all([(g, h) for g in group for h in group]) do (g, h)
|
||
x = action(act, h, action(act, g, a))
|
||
y = action(act, g * h, a)
|
||
return x == y
|
||
end
|
||
|
||
if act isa SW.ByPermutations
|
||
@test all(basis) do b
|
||
return action(act, g, b) ∈ basis && action(act, h, b) ∈ basis
|
||
end
|
||
end
|
||
end
|
||
end
|
||
|
||
## Testing
|
||
|
||
@testset "Actions on SL(3,ℤ)" begin
|
||
n = 3
|
||
|
||
SL = MatrixGroups.SpecialLinearGroup{n}(Int8)
|
||
RSL, S, sizes = PropertyT.group_algebra(SL; halfradius = 2)
|
||
|
||
@testset "Permutation action" begin
|
||
Γ = PG.PermGroup(PG.perm"(1,2)", PG.Perm(circshift(1:n, -1)))
|
||
ΓpA = PropertyT.action_by_conjugation(SL, Γ)
|
||
|
||
test_action(SA.basis(RSL), Γ, ΓpA)
|
||
|
||
@testset "mps is successful" begin
|
||
charsΓ =
|
||
SW.Character{
|
||
Rational{Int},
|
||
}.(SW.irreducible_characters(Γ))
|
||
|
||
RΓ = SW._group_algebra(Γ)
|
||
|
||
@time mps, ranks =
|
||
SW.minimal_projection_system(charsΓ, RΓ)
|
||
@test all(isone, ranks)
|
||
end
|
||
|
||
@testset "Wedderburn decomposition" begin
|
||
wd = SW.WedderburnDecomposition(
|
||
Rational{Int},
|
||
Γ,
|
||
ΓpA,
|
||
SA.basis(RSL),
|
||
SA.Basis{UInt16}(@view SA.basis(RSL)[1:sizes[2]]),
|
||
)
|
||
|
||
@test length(SW.invariant_vectors(wd)) == 918
|
||
@test size.(SW.direct_summands(wd), 1) == [23, 18, 40]
|
||
@test all(SW.issimple, SW.direct_summands(wd))
|
||
end
|
||
end
|
||
|
||
@testset "Wreath action" begin
|
||
Γ = let P = PG.PermGroup(PG.perm"(1,2)", PG.Perm(circshift(1:n, -1)))
|
||
Groups.Constructions.WreathProduct(PG.PermGroup(PG.perm"(1,2)"), P)
|
||
end
|
||
|
||
ΓpA = PropertyT.action_by_conjugation(SL, Γ)
|
||
|
||
test_action(SA.basis(RSL), Γ, ΓpA)
|
||
|
||
@testset "mps is successful" begin
|
||
charsΓ =
|
||
SW.Character{
|
||
Rational{Int},
|
||
}.(SW.irreducible_characters(Γ))
|
||
|
||
RΓ = SW._group_algebra(Γ)
|
||
|
||
@time mps, ranks =
|
||
SW.minimal_projection_system(charsΓ, RΓ)
|
||
@test all(isone, ranks)
|
||
end
|
||
|
||
@testset "Wedderburn decomposition" begin
|
||
wd = SW.WedderburnDecomposition(
|
||
Rational{Int},
|
||
Γ,
|
||
ΓpA,
|
||
SA.basis(RSL),
|
||
SA.Basis{UInt16}(@view SA.basis(RSL)[1:sizes[2]]),
|
||
)
|
||
|
||
@test length(SW.invariant_vectors(wd)) == 247
|
||
@test size.(SW.direct_summands(wd), 1) == [9, 6, 14, 14, 12]
|
||
@test all(SW.issimple, SW.direct_summands(wd))
|
||
end
|
||
end
|
||
end
|
||
|
||
@testset "Actions on SAut(F4)" begin
|
||
n = 4
|
||
|
||
SAutFn = SpecialAutomorphismGroup(FreeGroup(n))
|
||
RSAutFn, S, sizes = PropertyT.group_algebra(SAutFn; halfradius = 1)
|
||
|
||
@testset "Permutation action" begin
|
||
Γ = PG.PermGroup(PG.perm"(1,2)", PG.Perm(circshift(1:n, -1)))
|
||
ΓpA = PropertyT.action_by_conjugation(SAutFn, Γ)
|
||
|
||
test_action(SA.basis(RSAutFn), Γ, ΓpA)
|
||
|
||
@testset "mps is successful" begin
|
||
charsΓ =
|
||
SW.Character{
|
||
Rational{Int},
|
||
}.(SW.irreducible_characters(Γ))
|
||
|
||
RΓ = SW._group_algebra(Γ)
|
||
|
||
@time mps, ranks =
|
||
SW.minimal_projection_system(charsΓ, RΓ)
|
||
@test all(isone, ranks)
|
||
end
|
||
|
||
@testset "Wedderburn decomposition" begin
|
||
wd = SW.WedderburnDecomposition(
|
||
Rational{Int},
|
||
Γ,
|
||
ΓpA,
|
||
SA.basis(RSAutFn),
|
||
SA.Basis{UInt16}(@view SA.basis(RSAutFn)[1:sizes[1]]),
|
||
)
|
||
|
||
@test length(SW.invariant_vectors(wd)) == 93
|
||
@test size.(SW.direct_summands(wd), 1) == [5, 4, 8, 4]
|
||
@test all(SW.issimple, SW.direct_summands(wd))
|
||
end
|
||
end
|
||
|
||
@testset "Wreath action" begin
|
||
Γ = let P = PG.PermGroup(PG.perm"(1,2)", PG.Perm(circshift(1:n, -1)))
|
||
Groups.Constructions.WreathProduct(PG.PermGroup(PG.perm"(1,2)"), P)
|
||
end
|
||
|
||
ΓpA = PropertyT.action_by_conjugation(SAutFn, Γ)
|
||
|
||
test_action(SA.basis(RSAutFn), Γ, ΓpA)
|
||
|
||
@testset "mps is successful" begin
|
||
charsΓ =
|
||
SW.Character{
|
||
Rational{Int},
|
||
}.(SW.irreducible_characters(Γ))
|
||
|
||
RΓ = SW._group_algebra(Γ)
|
||
|
||
@time mps, ranks =
|
||
SW.minimal_projection_system(charsΓ, RΓ)
|
||
@test all(isone, ranks)
|
||
end
|
||
|
||
@testset "Wedderburn decomposition" begin
|
||
wd = SW.WedderburnDecomposition(
|
||
Rational{Int},
|
||
Γ,
|
||
ΓpA,
|
||
SA.basis(RSAutFn),
|
||
SA.Basis{UInt16}(@view SA.basis(RSAutFn)[1:sizes[1]]),
|
||
)
|
||
|
||
@test length(SW.invariant_vectors(wd)) == 18
|
||
@test size.(SW.direct_summands(wd), 1) == [2, 1, 2, 1, 2, 1, 1, 2]
|
||
@test all(SW.issimple, SW.direct_summands(wd))
|
||
end
|
||
end
|
||
end
|