We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27f4e5d commit e8a0ac9Copy full SHA for e8a0ac9
test/dynamic_diffeq.jl
@@ -88,8 +88,28 @@ prob = SDEProblem(f,g,embryo,(0.0,1.0))
88
89
sol = solve(prob,SRIW1(),callback=growing_cb,tstops=tstop)
90
91
+sol = solve(prob,SRI(),callback=growing_cb,tstops=tstop)
92
+
93
+sol = solve(prob,SRA(),callback=growing_cb,tstops=tstop)
94
95
+sol = solve(prob,SRA1(),callback=growing_cb,tstops=tstop)
96
97
+sol = solve(prob,RKMil(),callback=growing_cb,dt=1/10,tstops=tstop)
98
99
+sol = solve(prob,EM(),dt=1/10,callback=growing_cb,tstops=tstop)
100
101
@test length(sol[end]) == 23
102
103
sol = solve(prob,SRIW1(),callback=shrinking_cb,tstops=tstop)
104
105
+sol = solve(prob,SRI(),callback=shrinking_cb,tstops=tstop)
106
107
+sol = solve(prob,SRA(),callback=shrinking_cb,tstops=tstop)
108
109
+sol = solve(prob,SRA1(),callback=shrinking_cb,tstops=tstop)
110
111
+sol = solve(prob,RKMil(),dt=1/10,callback=shrinking_cb,tstops=tstop)
112
113
+sol = solve(prob,EM(),dt=1/10,callback=shrinking_cb,tstops=tstop)
114
115
@test length(sol[end]) == 17
0 commit comments