Skip to content

Commit

Permalink
no k
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisRackauckas committed Sep 1, 2024
1 parent be3c7fe commit bda2f02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SciMLBase"
uuid = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
authors = ["Chris Rackauckas <[email protected]> and contributors"]
version = "2.51.1"
version = "2.51.2"

[deps]
ADTypes = "47edcb42-4c32-4615-8424-f2b9edc5f35b"
Expand Down
2 changes: 1 addition & 1 deletion src/solutions/rode_solutions.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit bda2f02

Please sign in to comment.