Re: [julia-users] `OverflowError` when defining a large-ish matrix

2015-09-15 Thread Tim Holy
Not sure if this will fix it, but you seem to be delimiting the rows of the matrix with carriage-returns; try using a semicolon. --Tim On Tuesday, September 15, 2015 12:59:07 AM Tomas Lycken wrote: > I’ve been getting test failures on Contour.jl > for a

Re: [julia-users] `OverflowError` when defining a large-ish matrix

2015-09-15 Thread Tim Holy
Best to file a bug report, then. It would be helpful if you can trim the size of the data array down first, and possibly determine whether there's a size- threshold for the effect. Otherwise it will be hard to debug. --Tim On Tuesday, September 15, 2015 03:31:01 AM Tomas Lycken wrote: > Nope,

Re: [julia-users] `OverflowError` when defining a large-ish matrix

2015-09-15 Thread Tomas Lycken
Done. https://github.com/JuliaLang/julia/issues/13137 // T On Tuesday, September 15, 2015 at 12:34:27 PM UTC+2, Tim Holy wrote: > > Best to file a bug report, then. It would be helpful if you can trim the > size > of the data array down first, and possibly determine whether there's a > size-

Re: [julia-users] `OverflowError` when defining a large-ish matrix

2015-09-15 Thread Tomas Lycken
Nope, that unfortunately doesn't help - I get the same error. // T On Tuesday, September 15, 2015 at 12:28:49 PM UTC+2, Tim Holy wrote: > > Not sure if this will fix it, but you seem to be delimiting the rows of > the > matrix with carriage-returns; try using a semicolon. > > --Tim > > On