1
0
mirror of https://github.com/kalmarek/Groups.jl.git synced 2024-11-19 06:30:29 +01: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 parent(g) == parent(h) || throw("Can not multiply elements from different
groups!") groups!")
G = parent(g) 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) return G(g.n*w, g.p*h.p)
end end