mirror of
https://github.com/kalmarek/Groups.jl.git
synced 2024-11-19 06:30:29 +01:00
fix coercion to FPGroup
This commit is contained in:
parent
7d95338e33
commit
622f5bc6b3
@ -57,20 +57,15 @@ function (G::FPGroup)(w::GWord)
|
|||||||
return one(G)
|
return one(G)
|
||||||
end
|
end
|
||||||
|
|
||||||
if eltype(w.symbols) == FreeSymbol
|
@boundscheck for s in syllables(w)
|
||||||
w = FPGroupElem(FPSymbol.(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
|
||||||
|
|
||||||
if eltype(w.symbols) == FPSymbol
|
w = FPGroupElem(FPSymbol.(syllables(w)))
|
||||||
for s in w.symbols
|
setparent!(w, G)
|
||||||
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
|
|
||||||
return reduce!(w)
|
return reduce!(w)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user