Closed juanfung closed 5 years ago
Formerly, an unitialized array of size 0x0 could be created as Array(Float64, 0, 0).
Array(Float64, 0, 0)
In julia v0.7+, this can be done as Array{Float64}(undef, 0, 0).
Array{Float64}(undef, 0, 0)
See the the docs
This commit 7f5e64864c48f8d8cfc008ac8172b595c46e6679 should resolve the issue across CausalMixtures
CausalMixtures
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