We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c557e60 + 7e9f72f commit 94287c2Copy full SHA for 94287c2
src/MATLABDiffEq.jl
@@ -94,21 +94,21 @@ function DiffEqBase.__solve(
94
timeseries = timeseries_tmp
95
end
96
97
- destats = buildDEStats(solstats)
+ stats = buildDEStats(solstats)
98
99
DiffEqBase.build_solution(
100
prob,
101
alg,
102
ts,
103
timeseries,
104
timeseries_errors = timeseries_errors,
105
- destats = destats,
+ stats = stats,
106
)
107
108
109
function buildDEStats(solverstats::Dict)
110
111
- destats = DiffEqBase.DEStats(0)
+ destats = DiffEqBase.Stats(0)
112
destats.nf = if (haskey(solverstats, "nfevals"))
113
solverstats["nfevals"]
114
else
0 commit comments