We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3214b7e commit bf8f443Copy full SHA for bf8f443
src/delayproblem.jl
@@ -87,7 +87,7 @@ function DelayJumpSet(delay_trigger::Dict, delay_complete::Dict, delay_interrupt
87
DelayJumpSet(delay_trigger_, delay_complete_, delay_interrupt_, collect(keys(delay_trigger_)), collect(keys(delay_interrupt_)))
88
end
89
90
-convert_delayset(delay_set::Dict) = isempty(delay_set) ? convert(Dict{Int,Function}, delay_set) : delay_set
+convert_delayset(delay_set::Dict{T1, T2}) where {T1,T2} = isempty(delay_set) ? convert(Dict{Int,Function}, delay_set) : convert(Dict{Int,T2}, delay_set)
91
92
#BEGIN DelayJump
93
mutable struct DelayJumpProblem{iip,P,A,C,J<:Union{Nothing,AbstractJumpAggregator},J2,J3,J4,J5,deType,K} <: DiffEqBase.AbstractJumpProblem{P,J}
0 commit comments