From 4ea66e8cbda827964b849843f7f2192234c5c421 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Sat, 22 Oct 2022 10:16:14 +0200 Subject: [PATCH 1/4] Test master --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index a35929d31..4b0375272 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,7 @@ SciMLSensitivity.jl is a component package in the [SciML Scientific Machine Lear It holds the sensitivity analysis utilities. Users interested in using this functionality should check out [DifferentialEquations.jl](https://github.com/JuliaDiffEq/DifferentialEquations.jl). + ## Tutorials and Documentation For information on using the package, see the [SciMLSensitivity](https://docs.sciml.ai/dev/modules/SciMLSensitivity/) section of the From 1618f3305a1d47e616eb3eb8545ff4119f5b2bca Mon Sep 17 00:00:00 2001 From: Frank Schaefer Date: Wed, 26 Oct 2022 15:31:42 -0400 Subject: [PATCH 2/4] retcode update for new SciMLBase --- src/concrete_solve.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concrete_solve.jl b/src/concrete_solve.jl index 7214f2db7..a63b4372c 100644 --- a/src/concrete_solve.jl +++ b/src/concrete_solve.jl @@ -630,7 +630,7 @@ function DiffEqBase._concrete_solve_adjoint(prob::Union{SciMLBase.AbstractODEPro # saveat values # seems overcomplicated, but see the PR - if sol.retcode === :Terminated + if sol.retcode == :Terminated # solver might be terminated by a callback @assert haskey(kwargs, :callback) && length(sol.t) < 3 # In this case, we don't want to save the sensitivity solutions at ts=sol.t From 83458cdc4d46faeab2d6788812d222bf3180f524 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 27 Oct 2022 03:10:01 -0500 Subject: [PATCH 3/4] Update concrete_solve.jl --- src/concrete_solve.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/concrete_solve.jl b/src/concrete_solve.jl index a63b4372c..59472062e 100644 --- a/src/concrete_solve.jl +++ b/src/concrete_solve.jl @@ -630,7 +630,7 @@ function DiffEqBase._concrete_solve_adjoint(prob::Union{SciMLBase.AbstractODEPro # saveat values # seems overcomplicated, but see the PR - if sol.retcode == :Terminated + if sol.retcode == ReturnCode.Terminated # solver might be terminated by a callback @assert haskey(kwargs, :callback) && length(sol.t) < 3 # In this case, we don't want to save the sensitivity solutions at ts=sol.t From b8f83a8c9e9e9ebfa9870b265b8afcc261c4ac2d Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 27 Oct 2022 03:10:24 -0500 Subject: [PATCH 4/4] Update Project.toml --- Project.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Project.toml b/Project.toml index 18302f02a..211d97b57 100644 --- a/Project.toml +++ b/Project.toml @@ -66,7 +66,7 @@ RandomNumbers = "1.5.3" RecursiveArrayTools = "2.4.2" Reexport = "0.2, 1.0" ReverseDiff = "1.9" -SciMLBase = "1.51.0" +SciMLBase = "1.66.0" StaticArrays = "1" StochasticDiffEq = "6.20" Tracker = "0.2"