Skip to content

Commit 96cc455

Browse files
Merge pull request #86 from SciML/ordinarydiffeq
Update for StochasticDiffEq cut of OrdinaryDiffEq
2 parents efe1768 + 5334de6 commit 96cc455

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Project.toml

Lines changed: 2 additions & 2 deletions
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.8.1"
4+
version = "1.8.2"
55

66
[deps]
77
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
@@ -36,7 +36,7 @@ Reexport = "1.0"
3636
SciMLBase = "2.59.2"
3737
SparseArrays = "1.9"
3838
StaticArrays = "1.0"
39-
StochasticDiffEq = "6.72.1"
39+
StochasticDiffEq = "6.73.0"
4040
UnPack = "0.1, 1.0"
4141
julia = "1.9"
4242

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 StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator::SDDEIntegrator)
245-
StochasticDiffEq.OrdinaryDiffEq.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
244+
function StochasticDiffEq.OrdinaryDiffEqCore.nlsolve_f(integrator::SDDEIntegrator)
245+
StochasticDiffEq.OrdinaryDiffEqCore.nlsolve_f(integrator.f, unwrap_alg(integrator, true))
246246
end
247247

248248
function unwrap_alg(integrator::SDDEIntegrator, is_stiff)

0 commit comments

Comments
 (0)