Skip to content

Commit f4c0a1f

Browse files
Merge pull request #59 from SciML/nlsolver
update for nlsolver changes
2 parents 958afcc + 7b78330 commit f4c0a1f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "StochasticDelayDiffEq"
22
uuid = "29a0d76e-afc8-11e9-03a4-eda52ae4b960"
33
authors = ["Henrik Sykora <[email protected]>"]
4-
version = "1.3.1"
4+
version = "1.3.2"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"

src/utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,8 +241,8 @@ function initialize_solution!(integrator::SDDEIntegrator)
241241
nothing
242242
end
243243

244-
function DiffEqBase.nlsolve_f(integrator::SDDEIntegrator)
245-
DiffEqBase.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
244+
function StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator::SDDEIntegrator)
245+
StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
246246
end
247247

248248
function unwrap_alg(integrator::SDDEIntegrator, is_stiff)

0 commit comments

Comments
 (0)