Skip to content

Commit

Permalink
fix eltype for parameter timeseries
Browse files Browse the repository at this point in the history
  • Loading branch information
hexaeder committed Jan 21, 2025
1 parent f23f441 commit a743335
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/symbolicindexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -344,7 +344,7 @@ end


function SciMLBase.create_parameter_timeseries_collection(nw::Network, p::AbstractVector, tspan)
data = DiffEqArray(Vector{Float64}[copy(p)], Float64[tspan[begin]])
data = DiffEqArray(Vector{eltype(p)}[copy(p)], Float64[tspan[begin]])
tsc = SII.ParameterTimeseriesCollection((data,), copy(p))
return tsc
end
Expand Down

0 comments on commit a743335

Please sign in to comment.