From 089e31a2b5335450b6ccd40c1face875666e5173 Mon Sep 17 00:00:00 2001 From: Aayush Sabharwal Date: Tue, 10 Dec 2024 14:47:35 +0530 Subject: [PATCH] feat: generalize `get_history_function` to `AbstractODESolution` --- src/solutions/ode_solutions.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solutions/ode_solutions.jl b/src/solutions/ode_solutions.jl index ccc3d7b77..c1c8c16d8 100644 --- a/src/solutions/ode_solutions.jl +++ b/src/solutions/ode_solutions.jl @@ -388,7 +388,7 @@ function (w::DDESolutionHistoryWrapper)( w.sol(out, t, deriv; idxs) end -function SymbolicIndexingInterface.get_history_function(sol::ODESolution) +function SymbolicIndexingInterface.get_history_function(sol::AbstractODESolution) DDESolutionHistoryWrapper(sol) end