mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2024-12-29 11:00:28 +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
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
for j::Int in 1:lY
|
for j in 1:lY
|
||||||
if Y.coeffs[j] != z
|
if Y.coeffs[j] != z
|
||||||
for i::Int in 1:lX
|
for i in 1:lX
|
||||||
if X.coeffs[i] != z
|
if X.coeffs[i] != z
|
||||||
result[RG.basis[i]*RG.basis[j]] += X[i]*Y[j]
|
result[RG.basis[i]*RG.basis[j]] += X[i]*Y[j]
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user