Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove explicit dependency on SciMLBase #256

Merged
merged 4 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions 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 All @@ -23,7 +22,6 @@ GaussianRandomFields = "2.2.1"
HDF5 = "0.14, 0.15, 0.16"
MPI = "0.20.8"
OrdinaryDiffEq = "6.40"
SciMLBase = "1.81"
PDMats = "0.11"
StableRNGs = "1"
YAML = "0.4"
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}
matt-graham marked this conversation as resolved.
Show resolved Hide resolved
initial_state_distribution::MvNormal{S}
state_noise_distribution::MvNormal{S}
observation_noise_distribution::MvNormal{T}
Expand Down
Loading