Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions test/dsl/dsl_options.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
# Fetch packages.
using Catalyst, ModelingToolkitBase, OrdinaryDiffEq, Statistics, StochasticDiffEq, Plots, Test
using Catalyst: symmap_to_varmap
using SciMLBase
using Symbolics: unwrap

# Sets stable rng number.
Expand Down
1 change: 1 addition & 0 deletions test/simulation_and_solving/hybrid_models.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Fetch packages.
using Catalyst, JumpProcesses, ModelingToolkitBase, OrdinaryDiffEq, Statistics, Test, Random
using SciMLBase
using StochasticDiffEq: SRIW1 # For SDE+Jump hybrid problems
import DiffEqNoiseProcess # Required for SDEProblem via mtkcompile

Expand Down
1 change: 1 addition & 0 deletions test/simulation_and_solving/simulate_ODEs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Fetch packages.
using Catalyst, OrdinaryDiffEq, Test
using SciMLBase

# Sets stable rng number.
using StableRNGs
Expand Down
1 change: 1 addition & 0 deletions test/simulation_and_solving/simulate_SDEs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Fetch packages.
using Catalyst, Statistics, StochasticDiffEq, Test
using Catalyst: getnoisescaling
using SciMLBase

# Sets stable rng number.
using StableRNGs
Expand Down
1 change: 1 addition & 0 deletions test/simulation_and_solving/simulate_jumps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Fetch packages.
using Catalyst, JumpProcesses, ModelingToolkitBase, OrdinaryDiffEq, Statistics, Test
using SciMLBase
using SymbolicIndexingInterface: setp

# Sets stable rng number.
Expand Down
1 change: 1 addition & 0 deletions test/spatial_modelling/dspace_reaction_systems_ODEs.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
# Fetch packages.
using OrdinaryDiffEq
using Random, Statistics, SparseArrays, Test
using SciMLBase

# Fetch test networks.
include("../spatial_test_networks.jl")
Expand Down
3 changes: 2 additions & 1 deletion test/spatial_modelling/dspace_reaction_systems_jumps.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Fetch packages.
using JumpProcesses, Statistics, SparseArrays, Test
using SciMLBase

# Fetch test networks.
include("../spatial_test_networks.jl")
Expand Down Expand Up @@ -194,4 +195,4 @@ let
@test abs(d) < reltol * non_spatial_mean[i]
end
end
end
end
1 change: 1 addition & 0 deletions test/upstream/mtk_structure_indexing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

# Fetch packages
using Catalyst, JumpProcesses, NonlinearSolve, OrdinaryDiffEq, Plots, SteadyStateDiffEq, StochasticDiffEq, Test
using SciMLBase
import ModelingToolkitBase: getp, getu, setp, setu

# Sets rnd number.
Expand Down
Loading