Ah yes, array related type checks is a major issue. See 
https://github.com/tonyhffong/Lint.jl/issues/27

Post your issues there and we should be able to knock them off. It's not 
difficult, just need to know where the priorities are.

Tony

On Wednesday, November 26, 2014 11:49:58 PM UTC+7, Nils Gudat wrote:
>
> Another thing: Consider the following example
>
> X1 = zeros(100, 100)
> X2 = Array(Float64, (100, 100))
> X1[1, 1]
> X2[1, 1]
>
> In this piece of code, I will get an error saying "X2[1, 1] has more 
> indices than dimensions", even though it hasn't. In light of the recent 
> discussion on this list about the speed advantages of initializing unfilled 
> Arrays I recently changed all my code from zeros to Arrays, so I'm getting 
> this a lot...
>

Reply via email to