Skip to content

Commit

Permalink
Remove explicit dependency on SciMLBase
Browse files Browse the repository at this point in the history
  • Loading branch information
giordano committed Mar 12, 2024
1 parent 4a71c4f commit 81fac45
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion test/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
OrdinaryDiffEq = "1dea7af3-3e70-54e6-95c3-0bf5283fa5ed"
PDMats = "90014a1f-27ba-587c-ab20-58faa44d9150"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
SciMLBase = "0bca4576-84f4-4d90-8ffe-ffa030f20462"
StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
5 changes: 2 additions & 3 deletions test/models/lorenz63.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ using HDF5
using Random
using PDMats
using OrdinaryDiffEq
using SciMLBase
using ParticleDA

Base.@kwdef struct Lorenz63ModelParameters{S <: Real, T <: Real}
Expand All @@ -27,9 +26,9 @@ function get_params(
return P(; (; (Symbol(k) => v for (k, v) in model_params_dict)...)...)
end

struct Lorenz63Model{S <: Real, T <: Real}
struct Lorenz63Model{S <: Real, T <: Real, I}
parameters::Lorenz63ModelParameters{S, T}
integrators::Vector{<:SciMLBase.AbstractODEIntegrator}
integrators::Vector{I}
initial_state_distribution::MvNormal{S}
state_noise_distribution::MvNormal{S}
observation_noise_distribution::MvNormal{T}
Expand Down

0 comments on commit 81fac45

Please sign in to comment.