Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "JumpProcesses"
uuid = "ccbc3e58-028d-4f4c-8cd5-9ae44345cda5"
authors = ["Chris Rackauckas <accounts@chrisrackauckas.com>"]
version = "9.25.0"
version = "9.26.0"

[deps]
ArrayInterface = "4fba245c-0d91-5ea0-9b3e-6abc04ee57a9"
Expand Down Expand Up @@ -53,7 +53,7 @@ Random = "1"
RecursiveArrayTools = "3.35, 4"
Reexport = "1.2"
SafeTestsets = "0.1"
SciMLBase = "2.115"
SciMLBase = "2.115, 3"
StableRNGs = "1"
StaticArrays = "1.9.8"
Statistics = "1"
Expand Down
2 changes: 1 addition & 1 deletion src/SSA_stepper.jl
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ see the
[tutorial](https://docs.sciml.ai/JumpProcesses/stable/tutorials/discrete_stochastic_example/)
for details.
"""
struct SSAStepper <: DiffEqBase.DEAlgorithm end
struct SSAStepper <: DiffEqBase.AbstractDEAlgorithm end
SciMLBase.allows_late_binding_tstops(::SSAStepper) = true

"""
Expand Down
4 changes: 2 additions & 2 deletions src/simple_regular_solve.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
struct SimpleTauLeaping <: DiffEqBase.DEAlgorithm end
struct SimpleTauLeaping <: DiffEqBase.AbstractDEAlgorithm end

struct SimpleExplicitTauLeaping{T <: AbstractFloat} <: DiffEqBase.DEAlgorithm
struct SimpleExplicitTauLeaping{T <: AbstractFloat} <: DiffEqBase.AbstractDEAlgorithm
epsilon::T # Error control parameter
end

Expand Down
4 changes: 2 additions & 2 deletions src/solve.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
function DiffEqBase.__solve(jump_prob::DiffEqBase.AbstractJumpProblem{P},
alg::DiffEqBase.DEAlgorithm;
alg::DiffEqBase.AbstractDEAlgorithm;
merge_callbacks = true, kwargs...) where {P}
# Merge jump_prob.kwargs with passed kwargs
kwargs = DiffEqBase.merge_problem_kwargs(jump_prob; merge_callbacks, kwargs...)
Expand Down Expand Up @@ -33,7 +33,7 @@ function DiffEqBase.__solve(jump_prob::DiffEqBase.AbstractJumpProblem; kwargs...
end

function DiffEqBase.__init(_jump_prob::DiffEqBase.AbstractJumpProblem{P},
alg::DiffEqBase.DEAlgorithm; merge_callbacks = true, kwargs...) where {P}
alg::DiffEqBase.AbstractDEAlgorithm; merge_callbacks = true, kwargs...) where {P}
# Merge jump_prob.kwargs with passed kwargs
kwargs = DiffEqBase.merge_problem_kwargs(_jump_prob; merge_callbacks, kwargs...)

Expand Down
Loading