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 authored and ChrisRackauckas committed Dec 10, 2023
1 parent 51d98f9 commit e4561b3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/common_interface/solve.jl
Original file line number Diff line number Diff line change
Expand Up @@ -398,7 +398,7 @@ function DiffEqBase.__init(prob::DiffEqBase.AbstractODEProblem{uType, tupType, i
dures) :
DiffEqBase.LinearInterpolation(ts, ures),
timeseries_errors = timeseries_errors,
stats = DiffEqBase.Stats(0),
stats = SciMLBase.DEStats(0),
calculate_error = false)
opts = DEOptions(saveat_internal,
tstops_internal,
Expand Down Expand Up @@ -880,7 +880,7 @@ function DiffEqBase.__init(prob::DiffEqBase.AbstractODEProblem{uType, tupType, i
dures) :
DiffEqBase.LinearInterpolation(ts, ures),
timeseries_errors = timeseries_errors,
stats = DiffEqBase.Stats(0),
stats = SciMLBase.DEStats(0),
calculate_error = false)
opts = DEOptions(saveat_internal,
tstops_internal,
Expand Down Expand Up @@ -1242,7 +1242,7 @@ function DiffEqBase.__init(prob::DiffEqBase.AbstractDAEProblem{uType, duType, tu
calculate_error = false,
timeseries_errors = timeseries_errors,
retcode = retcode,
stats = DiffEqBase.Stats(0),
stats = SciMLBase.DEStats(0),
dense_errors = dense_errors)

opts = DEOptions(saveat_internal,
Expand Down

0 comments on commit e4561b3

Please sign in to comment.