Skip to content

Commit 17fbed0

Browse files
Format
1 parent f39e159 commit 17fbed0

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/OrdinaryDiffEq.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,8 @@ export constructDormandPrince
410410

411411
export FunctionMap, Euler, Heun, Ralston, Midpoint, RK4, ExplicitRK, OwrenZen3, OwrenZen4,
412412
OwrenZen5,
413-
BS3, BS5, DP5, Tsit5, DP8, TanYam7, TsitPap8, CompositeAlgorithm, Anas5, RKO65, FRK65, PFRK87,
413+
BS3, BS5, DP5, Tsit5, DP8, TanYam7, TsitPap8, CompositeAlgorithm, Anas5, RKO65,
414+
FRK65, PFRK87,
414415
RKM, MSRK5, MSRK6, Stepanov5, SIR54, QPRK98, PSRK4p7q6, PSRK3p6q5, PSRK3p5q4
415416

416417
export RadauIIA3, RadauIIA5

src/composite_algs.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,4 +73,4 @@ function AutoAlgSwitch(nonstiffalg::Tuple, stiffalg::Tuple; kwargs...)
7373
end
7474

7575
AutoTsit5(alg; kwargs...) = AutoAlgSwitch(Tsit5(), alg; kwargs...)
76-
AutoDP5(alg; kwargs...) = AutoAlgSwitch(DP5(), alg; kwargs...)
76+
AutoDP5(alg; kwargs...) = AutoAlgSwitch(DP5(), alg; kwargs...)

src/dense/interpolants.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ RK_WITH_SPECIAL_INTERPOLATIONS = Union{FunctionMapConstantCache, FunctionMapCach
44
OwrenZen3ConstantCache, OwrenZen3Cache,
55
OwrenZen4ConstantCache, OwrenZen4Cache,
66
OwrenZen5ConstantCache, OwrenZen5Cache,
7-
BS5ConstantCache, BS5Cache,
7+
BS5ConstantCache, BS5Cache
88
}
99
function _ode_interpolant(Θ, dt, y₀, y₁, k,
1010
cache::RK_WITH_SPECIAL_INTERPOLATIONS,

0 commit comments

Comments
 (0)