remove type annotation

This commit is contained in:
kalmarek 2017-11-03 16:39:18 +01:00
parent 8661781c92
commit 2c45b70eac
1 changed files with 2 additions and 2 deletions

View File

@ -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