diff --git a/Project.toml b/Project.toml index 80949a3f9..149bce819 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "SciMLBase" uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462" authors = ["Chris Rackauckas and contributors"] -version = "2.51.1" +version = "2.51.2" [deps] ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b" diff --git a/src/solutions/rode_solutions.jl b/src/solutions/rode_solutions.jl index c041dc435..45cd937f1 100644 --- a/src/solutions/rode_solutions.jl +++ b/src/solutions/rode_solutions.jl @@ -60,7 +60,7 @@ function ConstructionBase.setproperties(sol::RODESolution, patch::NamedTuple) N = u === nothing ? 2 : ndims(eltype(u)) + 1 T = eltype(eltype(u)) patch = merge(getproperties(sol), patch) - return RODESolution{T, N}(patch.u, patch.u_analytic, patch.errors, patch.t, patch.W, patch.k, + return RODESolution{T, N}(patch.u, patch.u_analytic, patch.errors, patch.t, patch.W, patch.prob, patch.alg, patch.interp, patch.dense, patch.tslocation, patch.stats, patch.alg_choice, patch.retcode, patch.seed) end