Skip to content

Commit

Permalink
add SciMLBase to tests
Browse files Browse the repository at this point in the history
  • Loading branch information
prbzrg committed Aug 31, 2024
1 parent c1f29d6 commit bcd441f
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions test/adaptive/sde_complex_adaptive_mean_test.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using StochasticDiffEq, DiffEqCallbacks, DiffEqNoiseProcess, Test, Random
import SciMLBase

Random.seed!(100)
# Definitions according to vector/matrix representations of operators from QuantumOptics
Expand Down
1 change: 1 addition & 0 deletions test/reversal_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ using Random
using SDEProblemLibrary
# automatically construct SDE transformation for Ito reversal
using ModelingToolkit
import SciMLBase

# tested solvers
additive_noise_solver = [
Expand Down
2 changes: 2 additions & 0 deletions test/stratonovich_convergence_tests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
using StochasticDiffEq, Test, Random, DiffEqDevTools
using SDEProblemLibrary: prob_sde_linear_stratonovich, prob_sde_2Dlinear_stratonovich
import SciMLBase

Random.seed!(100)
dts = 1 ./2 .^(10:-1:2) #14->7 good plot

Expand Down
1 change: 1 addition & 0 deletions test/zerod_noise_test.jl
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using StochasticDiffEq, Test
import SciMLBase

function f(du, u, p, t)
du[1] = u[1]
Expand Down

0 comments on commit bcd441f

Please sign in to comment.