Skip to content

Commit 40860f7

Browse files
update defaults
1 parent 87dd177 commit 40860f7

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

test/default_ode_alg_test.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ default_algorithm(prob_ode_bigfloat2Dlinear;alg_hints=[:stiff])
2626

2727
sol =solve(prob_ode_bigfloat2Dlinear;alg_hints=[:stiff])
2828

29-
@test typeof(sol.alg) == Rosenbrock23{0,true}
29+
@test typeof(sol.alg) == Rosenbrock23{0,true,typeof(lufact!)}
3030

3131
immutable FooAlg end
3232

test/default_sde_alg_test.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ srand(100)
44

55
prob = prob_sde_additive
66
sol =solve(prob,dt=1/2^(3))
7-
@test typeof(sol.alg) == SRIW1
7+
@test typeof(sol.alg) == SRIW1{StochasticDiffEq.RSWM{:RSwM3,Float64}}
88

99
sol =solve(prob,dt=1/2^(3),alg_hints=[:additive])
10-
@test typeof(sol.alg) == SRA1
10+
@test typeof(sol.alg) == SRA1{StochasticDiffEq.RSWM{:RSwM3,Float64}}

test/runtests.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@
33
using DifferentialEquations, Base.Test
44
@time @testset "Default ODE Algorithm" begin include("default_ode_alg_test.jl") end
55
@time @testset "Default SDE Algorithm" begin include("default_sde_alg_test.jl") end
6+
@time @testset "Default DDE Algorithm" begin include("default_dde_alg_test.jl") end
67
@time @testset "Default DAE Algorithm" begin include("default_dae_alg_test.jl") end
78
@time @testset "Default FEM Algorithm" begin include("default_fem_alg_test.jl") end

0 commit comments

Comments
 (0)