dd.jl specifies Int64 type when it would probably be preferable to specify just Int, which would become either Int64 or Int32 depending on which julia version the user is running. We are currently using a mixture of Int64 and Int that only works if Int defaults to Int64. If this is okay, we should put up some warning of incompatibility with x86 julia versions. Otherwise, I recommend changing Int64 to Int in dd.jl.
dd.jl
specifiesInt64
type when it would probably be preferable to specify justInt
, which would become eitherInt64
orInt32
depending on which julia version the user is running. We are currently using a mixture ofInt64
andInt
that only works ifInt
defaults toInt64
. If this is okay, we should put up some warning of incompatibility with x86 julia versions. Otherwise, I recommend changing Int64 to Int in dd.jl.