2021-05-24 14:46:54 +02:00
|
|
|
|
@testset "FPGroups" begin
|
|
|
|
|
A = Alphabet([:a, :A, :b, :B, :c, :C], [2,1,4,3,6,5])
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test FreeGroup(A) isa FreeGroup
|
|
|
|
|
@test sprint(show, FreeGroup(A)) == "free group on 3 generators"
|
2021-06-21 17:52:51 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
F = FreeGroup([:a, :b, :c], A)
|
2021-06-21 17:52:51 +02:00
|
|
|
|
@test sprint(show, F) == "free group on 3 generators"
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
|
|
|
|
a,b,c = gens(F)
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test c*b*a isa FPGroupElement
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
|
|
|
|
# quotient of F:
|
2021-06-21 18:45:10 +02:00
|
|
|
|
G = FPGroup(F, [a*b=>b*a, a*c=>c*a, b*c=>c*b])
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test G isa FPGroup
|
2021-12-18 19:34:04 +01:00
|
|
|
|
@test sprint(show, G) == "⟨ a b c | \n\t a*b => b*a a*c => c*a b*c => c*b ⟩"
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test rand(G) isa FPGroupElement
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
|
|
|
|
f = a*c*b
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test word(f) isa Word{UInt8}
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
|
|
|
|
aG,bG,cG = gens(G)
|
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test aG isa FPGroupElement
|
2021-05-24 14:46:54 +02:00
|
|
|
|
@test_throws AssertionError aG == a
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test word(aG) == word(a)
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
|
|
|
|
g = aG*cG*bG
|
|
|
|
|
|
|
|
|
|
@test_throws AssertionError f == g
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test word(f) == word(g)
|
|
|
|
|
@test word(g) == [1, 5, 3]
|
|
|
|
|
Groups.normalform!(g)
|
|
|
|
|
@test word(g) == [1, 3, 5]
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
2021-06-21 17:53:29 +02:00
|
|
|
|
let g = aG*cG*bG
|
|
|
|
|
# test that we normalize g before printing
|
|
|
|
|
@test sprint(show, g) == "a*b*c"
|
|
|
|
|
end
|
|
|
|
|
|
2021-05-24 14:46:54 +02:00
|
|
|
|
# quotient of G
|
2021-06-21 18:45:10 +02:00
|
|
|
|
H = FPGroup(G, [aG^2=>cG, bG*cG=>aG], maxrules=200)
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
h = H(word(g))
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
@test h isa FPGroupElement
|
2021-05-24 14:46:54 +02:00
|
|
|
|
@test_throws AssertionError h == g
|
2021-07-07 12:11:45 +02:00
|
|
|
|
@test_throws MethodError h*g
|
|
|
|
|
|
|
|
|
|
H′ = FPGroup(G, [aG^2=>cG, bG*cG=>aG], maxrules=200)
|
|
|
|
|
@test_throws AssertionError one(H) == one(H′)
|
2021-05-24 14:46:54 +02:00
|
|
|
|
|
2021-06-21 18:45:10 +02:00
|
|
|
|
Groups.normalform!(h)
|
2021-05-24 14:46:54 +02:00
|
|
|
|
@test h == H([5])
|
|
|
|
|
|
2022-04-02 15:51:29 +02:00
|
|
|
|
@test_logs (:warn, "using generic isfiniteorder(::AbstractFPGroupElement): the returned `false` might be wrong") isfiniteorder(h)
|
|
|
|
|
|
|
|
|
|
@test_logs (:warn, "using generic isfinite(::AbstractFPGroup): the returned `false` might be wrong") isfinite(H)
|
2021-05-24 15:35:28 +02:00
|
|
|
|
|
2022-04-02 15:51:29 +02:00
|
|
|
|
Logging.with_logger(Logging.NullLogger()) do
|
|
|
|
|
@testset "GroupsCore conformance: H" begin
|
|
|
|
|
test_Group_interface(H)
|
|
|
|
|
test_GroupElement_interface(rand(H, 2)...)
|
|
|
|
|
end
|
|
|
|
|
end
|
2021-05-24 14:46:54 +02:00
|
|
|
|
end
|