Skip to content

Commit

Permalink
Merge pull request #86 from SciML/ordinarydiffeq
Browse files Browse the repository at this point in the history
Update for StochasticDiffEq cut of OrdinaryDiffEq
  • Loading branch information
ChrisRackauckas authored Jan 26, 2025
2 parents efe1768 + 5334de6 commit 96cc455
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions 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.8.1"
version = "1.8.2"

[deps]
DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8"
Expand Down Expand Up @@ -36,7 +36,7 @@ Reexport = "1.0"
SciMLBase = "2.59.2"
SparseArrays = "1.9"
StaticArrays = "1.0"
StochasticDiffEq = "6.72.1"
StochasticDiffEq = "6.73.0"
UnPack = "0.1, 1.0"
julia = "1.9"

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

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

0 comments on commit 96cc455

Please sign in to comment.