Skip to content

Commit

Permalink
use SciMLBase.DEStats
Browse files Browse the repository at this point in the history
  • Loading branch information
Pepijn de Vos committed Oct 9, 2023
1 parent d763352 commit dfb5612
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/integrators/type.jl
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ mutable struct ODEIntegrator{algType <: Union{OrdinaryDiffEqAlgorithm, DAEAlgori
reinitialize::Bool
isdae::Bool
opts::O
stats::DiffEqBase.Stats
stats::SciMLBase.DEStats
initializealg::IA
fsalfirst::FSALType
fsallast::FSALType
Expand Down
2 changes: 1 addition & 1 deletion src/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ function DiffEqBase.__init(prob::Union{DiffEqBase.AbstractODEProblem,
advance_to_tstop,
stop_at_next_tstop)

stats = DiffEqBase.Stats(0)
stats = SciMLBase.DEStats(0)

if typeof(_alg) <: OrdinaryDiffEqCompositeAlgorithm
id = CompositeInterpolationData(f, timeseries, ts, ks, alg_choice, dense, cache)
Expand Down

0 comments on commit dfb5612

Please sign in to comment.