Skip to content

Commit 3537140

Browse files
fix FSAL type?
1 parent 59c253f commit 3537140

File tree

3 files changed

+1
-8
lines changed

3 files changed

+1
-8
lines changed

lib/OrdinaryDiffEqCore/src/integrators/type.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ mutable struct DEOptions{absType, relType, QT, tType, Controller, F1, F2, F3, F4
4848
stop_at_next_tstop::Bool
4949
end
5050

51-
TruncatedStacktraces.@truncate_stacktrace DEOptions
52-
5351
"""
5452
ODEIntegrator
5553

lib/OrdinaryDiffEqCore/src/solve.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -476,7 +476,7 @@ function DiffEqBase.__init(
476476
typeof(eigen_est), typeof(EEst),
477477
QT, typeof(tdir), typeof(k), SolType,
478478
FType, cacheType,
479-
typeof(opts), fsal_typeof(_alg, rate_prototype),
479+
typeof(opts), typeof(faslfirst),
480480
typeof(last_event_error), typeof(callback_cache),
481481
typeof(initializealg), typeof(differential_vars)}(
482482
sol, u, du, k, t, tType(dt), f, p,

lib/OrdinaryDiffEqExponentialRK/src/alg_utils.jl

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,5 @@ function DiffEqBase.prepare_alg(
3131
end
3232

3333
fsal_typeof(alg::ETD2, rate_prototype) = ETD2Fsal{typeof(rate_prototype)}
34-
function fsal_typeof(alg::CompositeAlgorithm, rate_prototype)
35-
fsal = map(x -> fsal_typeof(x, rate_prototype), alg.algs)
36-
@assert length(unique(fsal))==1 "`fsal_typeof` must be consistent"
37-
return fsal[1]
38-
end
3934

4035
ismultistep(alg::ETD2) = true

0 commit comments

Comments
 (0)