From 5334de67dfadf149c0d6b39f40b80bab543c9967 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sun, 26 Jan 2025 06:05:33 -0500 Subject: [PATCH] Update for StochasticDiffEq cut of OrdinaryDiffEq --- Project.toml | 4 ++-- src/utils.jl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Project.toml b/Project.toml index 95b3277..fc68a90 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "StochasticDelayDiffEq" uuid = "29a0d76e-afc8-11e9-03a4-eda52ae4b960" authors = ["Henrik Sykora "] -version = "1.8.1" +version = "1.8.2" [deps] DataStructures = "864edb3b-99cc-5e75-8d2d-829cb0a9cfe8" @@ -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" diff --git a/src/utils.jl b/src/utils.jl index 0398818..0b5fe3f 100644 --- a/src/utils.jl +++ b/src/utils.jl @@ -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)