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 ab55e3c commit 9d1828aCopy full SHA for 9d1828a
src/integrator_accessors.jl
@@ -0,0 +1,9 @@
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
+# returns if the given integrator has an integ.iter field
5
+hasiter(integ) = true
6
7
+get_tstops(integ) = integ.opts.tstops
8
+get_tstops_array(integ) = get_tstops(integ).valtree
9
+get_max_tstops(integ) = maximum(get_tstops_array(integ))
0 commit comments