Skip to content

Commit fbb67de

Browse files
Tame sde_twodimlinear_tests.jl for less stochasticity
1 parent 6643b6a commit fbb67de

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/sde/sde_twodimlinear_tests.jl

+3-3
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ sim4 = test_convergence(dts,prob,SOSRI2(),trajectories=100)
168168
@test abs(sim4.𝒪est[:final]-1.5) < 0.3
169169

170170
# 2D oop
171-
f_oop(u,p,t) = u
172-
g_oop(u,p,t) = u
173-
prob = SDEProblem(f_oop, g_oop, ones(2, 2), (0., 1.))
171+
f_oop(u,p,t) = 0.1*u
172+
g_oop(u,p,t) = 0.1*u
173+
prob = SDEProblem(f_oop, g_oop, 0.001*ones(2, 2), (0., 1.))
174174
@test_nowarn solve(prob, ImplicitEM())

0 commit comments

Comments
 (0)