Skip to content

Commit 6e63c4b

Browse files
authored
Add LU decomposition in DEStats
1 parent 4d84c92 commit 6e63c4b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/MATLABDiffEq.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,6 +94,7 @@ function buildDEStats(solverstats::Dict)
9494
destats.naccept = if (haskey(solverstats, "nsteps")) solverstats["nsteps"] else 0 end
9595
destats.nsolve = if (haskey(solverstats, "nsolves")) solverstats["nsolves"] else 0 end
9696
destats.njacs = if (haskey(solverstats, "npds")) solverstats["npds"] else 0 end
97+
destats.nw = if (haskey(solverstats, "ndecomps")) solverstats["ndecomps"] else 0 end
9798
destats
9899
end
99100

0 commit comments

Comments
 (0)