Skip to content

Commit 4ed4b7f

Browse files
fix: account for change in behavior of blocked bitvectors
1 parent c35f635 commit 4ed4b7f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/parameter_buffer.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -826,7 +826,7 @@ function SciMLBase.create_parameter_timeseries_collection(
826826
isempty(ps.discrete) && return nothing
827827
num_discretes = only(blocksize(ps.discrete[1]))
828828
buffers = []
829-
partition_type = Tuple{(Vector{eltype(buf)} for buf in ps.discrete)...}
829+
partition_type = Tuple{(typeof(parent(buf)) for buf in ps.discrete)...}
830830
for i in 1:num_discretes
831831
ts = eltype(tspan)[]
832832
us = NestedGetIndex{partition_type}[]

0 commit comments

Comments
 (0)