mirror of
https://github.com/kalmarek/GroupRings.jl.git
synced 2025-01-01 03:40:29 +01:00
replace eachindex() by 1:length() for now
This commit is contained in:
parent
66711a3181
commit
9919652590
@ -330,7 +330,7 @@ function mul!{T}(result::AbstractVector{T},
|
|||||||
pm::Array{Int,2})
|
pm::Array{Int,2})
|
||||||
z = zero(T)
|
z = zero(T)
|
||||||
result .= z
|
result .= z
|
||||||
for j in eachindex(Y)
|
for j in 1:length(Y)
|
||||||
if Y[j] != z
|
if Y[j] != z
|
||||||
for i in 1:size(pm,1)
|
for i in 1:size(pm,1)
|
||||||
if X[i] != z
|
if X[i] != z
|
||||||
|
Loading…
Reference in New Issue
Block a user