From f2605677822cdeb56d37268211759be5258d1ed9 Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Tue, 29 Oct 2024 08:56:15 -0100 Subject: [PATCH] Also test SRA3 --- test/nondiagonal_tests.jl | 1 + 1 file changed, 1 insertion(+) diff --git a/test/nondiagonal_tests.jl b/test/nondiagonal_tests.jl index 7f2da112..816a70a6 100644 --- a/test/nondiagonal_tests.jl +++ b/test/nondiagonal_tests.jl @@ -130,6 +130,7 @@ prototype = zeros(2,2) iip_prob = SDEProblem{true}(f, g, u0, tspan, noise_rate_prototype = prototype) @test !(solve(iip_prob, EM(), dt = 0.1)[end] ≈ ones(2)) @test !(solve(iip_prob, SOSRA())[end] ≈ ones(2)) +@test !(solve(iip_prob, SRA3())[end] ≈ ones(2)) # Out of place regression tests