juanfung / scpd

0 stars 0 forks source link

Method for creating empty (uninitialized) arrays in julia v0.7+ is broken #17

Closed juanfung closed 5 years ago

juanfung commented 5 years ago

Formerly, an unitialized array of size 0x0 could be created as Array(Float64, 0, 0).

In julia v0.7+, this can be done as Array{Float64}(undef, 0, 0).

See the the docs

juanfung commented 5 years ago

This commit 7f5e64864c48f8d8cfc008ac8172b595c46e6679 should resolve the issue across CausalMixtures