1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-10-15 07:20:35 +02:00

fix coercion to FPGroup

This commit is contained in:
kalmarek 2020-03-25 13:46:32 +01:00
parent 7d95338e33
commit 622f5bc6b3
No known key found for this signature in database
GPG Key ID: 8BF1A3855328FC15

View File

@ -57,20 +57,15 @@ function (G::FPGroup)(w::GWord)
return one(G)
end
if eltype(w.symbols) == FreeSymbol
w = FPGroupElem(FPSymbol.(w.symbols))
@boundscheck for s in syllables(w)
i = findfirst(g -> g.id == s.id, G.gens)
i == 0 && throw(DomainError("Symbol $s does not belong to $G."))
s.pow % G.gens[i].pow != 0 && throw(
DomainError("Symbol $s doesn't belong to $G."))
end
if eltype(w.symbols) == FPSymbol
for s in w.symbols
i = findfirst(g -> g.id == s.id, G.gens)
i == 0 && throw(DomainError(
"Symbol $s does not belong to $G."))
s.pow % G.gens[i].pow == 0 || throw(DomainError(
"Symbol $s doesn't belong to $G."))
end
end
w.parent = G
w = FPGroupElem(FPSymbol.(syllables(w)))
setparent!(w, G)
return reduce!(w)
end