Skip to content

Commit 94287c2

Browse files
Merge pull request #35 from SciML/ChrisRackauckas-patch-2
destats -> stats
2 parents c557e60 + 7e9f72f commit 94287c2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/MATLABDiffEq.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -94,21 +94,21 @@ function DiffEqBase.__solve(
9494
timeseries = timeseries_tmp
9595
end
9696

97-
destats = buildDEStats(solstats)
97+
stats = buildDEStats(solstats)
9898

9999
DiffEqBase.build_solution(
100100
prob,
101101
alg,
102102
ts,
103103
timeseries,
104104
timeseries_errors = timeseries_errors,
105-
destats = destats,
105+
stats = stats,
106106
)
107107
end
108108

109109
function buildDEStats(solverstats::Dict)
110110

111-
destats = DiffEqBase.DEStats(0)
111+
destats = DiffEqBase.Stats(0)
112112
destats.nf = if (haskey(solverstats, "nfevals"))
113113
solverstats["nfevals"]
114114
else

0 commit comments

Comments
 (0)