File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ include("forwarddiff.jl")
141
141
include (" termination_conditions_deprecated.jl" ) # TODO : remove in the next major release
142
142
include (" termination_conditions.jl" )
143
143
include (" norecompile.jl" )
144
+ include (" integrator_accessors.jl" )
144
145
145
146
# This is only used for oop stiff solvers
146
147
default_factorize (A) = lu (A; check = false )
Original file line number Diff line number Diff line change
1
+ # the following are setup per how integrators are implemented in OrdinaryDiffEq and
2
+ # StochasticDiffEq and provide dispatch points that JumpProcesses and others can use.
3
+
4
+ get_tstops (integ:: DEIntegrator ) =
5
+ error (" get_tstops not implemented for integrators of type $(nameof (typeof (integ))) " )
6
+ get_tstops_array (integ:: DEIntegrator ) =
7
+ error (" get_tstops_array not implemented for integrators of type $(nameof (typeof (integ))) " )
8
+ get_tstops_max (integ:: DEIntegrator ) =
9
+ error (" get_tstops_max not implemented for integrators of type $(nameof (typeof (integ))) " )
You can’t perform that action at this time.
0 commit comments