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 fa70fc5 commit 00d1182Copy full SHA for 00d1182
test/test_prob_sol.jl
@@ -61,7 +61,9 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
61
@test sol.u[end] != zeros(1)
62
sol = @test_nowarn solve(prob,SOSRI2(),dt=0.01)
63
64
+
65
# Additive problems
66
+ println("additive problems")
67
prob.p .= padd;
68
sol = @test_nowarn solve(prob,SRA(),dt=0.01)
69
@@ -78,6 +80,7 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
78
80
# @test_nowarn solve(prob,SKenCarp(),dt=0.01) # Not working
79
81
82
# Test SROCK methods
83
+ println("SROCK methods")
84
prob.p .= pmul;
85
sol = @test_nowarn solve(prob,SROCK1(),dt=0.01)
86
@@ -101,6 +104,7 @@ padd = [1.0,-4.,-2.,10.,-0.0,-0.0, 0.1]
101
104
end
102
105
103
106
# Test Implicit methods
107
+ println("implicit methods")
108
sol = @test_nowarn solve(prob,ImplicitEM(),dt=0.01)
109
110
sol = @test_nowarn solve(prob,ImplicitEM(symplectic=true, theta = 1/2),dt=0.01)
0 commit comments