Skip to content

Commit 9053a75

Browse files
committed
Avoid Array(Float64, ...) in favour Array{Float64}(...)
as the latter has been deprecated in JuliaLang/julia#19989.
1 parent a10603e commit 9053a75

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/ACME.jl

+5-5
Original file line numberDiff line numberDiff line change
@@ -563,11 +563,11 @@ function run!(model::DiscreteModel, u::AbstractMatrix{Float64})
563563
if size(u, 1) nu(model)
564564
throw(DimensionMismatch("input matrix has $(size(u,1)) rows, but model requires $(nu(model)) inputs"))
565565
end
566-
y = Array(Float64, ny(model), size(u)[2])
567-
ucur = Array(Float64, nu(model))
568-
p = Array(Float64, np(model))
569-
ycur = Array(Float64, ny(model))
570-
xnew = Array(Float64, nx(model))
566+
y = Array{Float64,2}(ny(model), size(u)[2])
567+
ucur = Array{Float64,1}(nu(model))
568+
p = Array{Float64,1}(np(model))
569+
ycur = Array{Float64,1}(ny(model))
570+
xnew = Array{Float64,1}(nx(model))
571571
@showprogress 1 "Running model: " for n = 1:size(u)[2]
572572
# copy!(p, model.dq * model.x + model.eq * u[:,n])
573573
copy!(ucur, 1, u, (n-1)*nu(model)+1, nu(model))

0 commit comments

Comments
 (0)