1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-10-15 07:20:35 +02:00
This commit is contained in:
kalmar 2017-07-16 21:43:43 +02:00
parent d2cb646119
commit a78e4ccea2

View File

@ -175,7 +175,7 @@ function wreath_multiplication(g::WreathProductElem, h::WreathProductElem)
parent(g) == parent(h) || throw("Can not multiply elements from different
groups!")
G = parent(g)
w=G.N((h.n).elts[inv(g.p).d])
w = G.N((h.n).elts[inv(g.p).d])
return G(g.n*w, g.p*h.p)
end