You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fixes#929. I admit I don't fully understand what exactly is going wrong
here, but it seems that using the `@unrollcolumns` macro inside the `for
i = 1:cols` loop is somehow getting lost when it tries to reference the
`values` array from the unrolled macro block. I know there have been
various issues like this raised at JuliaLang/julia, but it's easy enough
for us to just pass in `values` an explicit argument to the macro, so
that seems an easy enough work-around for now.
Fixes#929. I admit I don't fully understand what exactly is going wrong
here, but it seems that using the `@unrollcolumns` macro inside the `for
i = 1:cols` loop is somehow getting lost when it tries to reference the
`values` array from the unrolled macro block. I know there have been
various issues like this raised at JuliaLang/julia, but it's easy enough
for us to just pass in `values` an explicit argument to the macro, so
that seems an easy enough work-around for now.
Consider the following sample CSV:
The last column (
shape
) is required to be aSymbol
. Specifying this through thetypes
keyword seems to error on 0.9.6:The same issue does not arise when the type for
:shape
is specified to beString
. It seems to be specific toCSV.Rows
. This does not error:Ping JuliaDynamics/Agents.jl#550
The text was updated successfully, but these errors were encountered: