mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +01:00
allow for pm to be slowly filled when computing products
This commit is contained in:
parent
acb05e7a85
commit
9d5790d6d3
@ -351,6 +351,10 @@ function mul!{T}(result::GroupRingElem{T}, X::GroupRingElem, Y::GroupRingElem)
|
||||
if Y.coeffs[j] != z
|
||||
for i in eachindex(X.coeffs)
|
||||
if X.coeffs[i] != z
|
||||
if parent(X).pm[i,j] == 0
|
||||
g = parent(X).basis[i]*parent(Y).basis[j]
|
||||
parent(X).pm[i,j] = parent(X).basis_dict[g]
|
||||
end
|
||||
result.coeffs[parent(X).pm[i,j]] += X[i]*Y[j]
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user