Skip to content

Commit 14d2551

Browse files
committed
unpack arrays into tuples
1 parent 792a84d commit 14d2551

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/systems/jumps/jumpsystem.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,6 @@ function DiffEqJump.JumpProblem(js::JumpSystem, prob, aggregator; kwargs...)
5757
end
5858
end
5959
((prob isa DiscreteProblem) && !isempty(vrjs)) && error("Use continuous problems such as an ODEProblem or a SDEProblem with VariableRateJumps")
60-
jset = JumpSet(Tuple(vrjs), Tuple(crjs), nothing, nothing)
60+
jset = JumpSet(Tuple(vrjs...), Tuple(crjs...), nothing, nothing)
6161
JumpProblem(prob, aggregator, jset)
6262
end

0 commit comments

Comments
 (0)