Skip to content

Commit

Permalink
Merge 7b78330 into 958afcc
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Dec 1, 2022
2 parents 958afcc + 7b78330 commit d22f57c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "StochasticDelayDiffEq"
uuid = "29a0d76e-afc8-11e9-03a4-eda52ae4b960"
authors = ["Henrik Sykora <henrik1991@gmail.com>"]
version = "1.3.1"
version = "1.3.2"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down
4 changes: 2 additions & 2 deletions src/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -241,8 +241,8 @@ function initialize_solution!(integrator::SDDEIntegrator)
nothing
end

function DiffEqBase.nlsolve_f(integrator::SDDEIntegrator)
DiffEqBase.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
function StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator::SDDEIntegrator)
StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
end

function unwrap_alg(integrator::SDDEIntegrator, is_stiff)
Expand Down

0 comments on commit d22f57c

Please sign in to comment.