Skip to content

Commit 63fe683

Browse files
authored
Merge pull request #69 from SciML/myb/fix
Fix constructDormandLockyerMcCorriganPrince6
2 parents 8fd48e4 + 3fb76d1 commit 63fe683

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/ode_tableaus.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2381,7 +2381,7 @@ function constructDormandLockyerMcCorriganPrince6(T::Type = Float64)
23812381
α = map(T,α)
23822382
c = map(T,c)
23832383
αEEst = map(T,αEEst)
2384-
return(ExplicitRKTableau(A,c,α,6,fsal=true))
2384+
return(ExplicitRKTableau(A,c,α,6,adaptiveorder=5,αEEst=αEEst,fsal=true))
23852385
end
23862386

23872387

test/ode_tableau_convergence_tests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ dts = 1 .//2 .^(8:-1:4)
1818
testTol = 0.3
1919
superduperbool = Vector{Bool}(undef, 2)
2020

21-
for tab in [constructRalston4(), constructTsitourasPapakostas6()]
21+
for tab in [constructRalston4(Rational{BigInt}), constructTsitourasPapakostas6(Rational{BigInt}), constructDormandLockyerMcCorriganPrince6(Rational{BigInt})]
2222
@test all(i -> residual_order_condition(tab, i, +, abs) < 10eps(1.0), 1:tab.order)
2323
if tab.adaptiveorder != 0
2424
@test all(i -> residual_order_condition(tab, i, +, abs; embedded=true) < 10eps(1.0), tab.adaptiveorder)

0 commit comments

Comments
 (0)