mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-28 18:50:29 +01:00
remove type annotation
This commit is contained in:
parent
8661781c92
commit
2c45b70eac
@ -412,9 +412,9 @@ function mul!{T}(result::GroupRingElem{T}, X::GroupRingElem, Y::GroupRingElem)
|
||||
end
|
||||
end
|
||||
else
|
||||
for j::Int in 1:lY
|
||||
for j in 1:lY
|
||||
if Y.coeffs[j] != z
|
||||
for i::Int in 1:lX
|
||||
for i in 1:lX
|
||||
if X.coeffs[i] != z
|
||||
result[RG.basis[i]*RG.basis[j]] += X[i]*Y[j]
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user