mirror of
https://github.com/kalmarek/PropertyT.jl.git
synced 2024-11-22 16:05:27 +01:00
simplify WreathProductElem action on Automorphisms
This commit is contained in:
parent
55b7ed09bc
commit
7e854f902a
@ -289,11 +289,10 @@ end
|
|||||||
|
|
||||||
function (g::WreathProductElem)(a::Groups.Automorphism)
|
function (g::WreathProductElem)(a::Groups.Automorphism)
|
||||||
A = parent(a)
|
A = parent(a)
|
||||||
g = AutFG_emb(A,g)
|
g_emb = AutFG_emb(A,g)
|
||||||
res = A()
|
res = deepcopy(g_emb)
|
||||||
Groups.r_multiply!(res, g.symbols, reduced=false)
|
res = Groups.r_multiply!(res, a.symbols, reduced=false)
|
||||||
Groups.r_multiply!(res, a.symbols, reduced=false)
|
res = Groups.r_multiply!(res, [inv(s) for s in reverse!(g_emb.symbols)])
|
||||||
Groups.r_multiply!(res, [inv(s) for s in reverse!(g.symbols)])
|
|
||||||
return res
|
return res
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user