Skip to content

Commit

Permalink
Add LU decomposition in DEStats
Browse files Browse the repository at this point in the history
  • Loading branch information
utkarsh530 authored May 16, 2020
1 parent 4d84c92 commit 6e63c4b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/MATLABDiffEq.jl
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@ function buildDEStats(solverstats::Dict)
destats.naccept = if (haskey(solverstats, "nsteps")) solverstats["nsteps"] else 0 end
destats.nsolve = if (haskey(solverstats, "nsolves")) solverstats["nsolves"] else 0 end
destats.njacs = if (haskey(solverstats, "npds")) solverstats["npds"] else 0 end
destats.nw = if (haskey(solverstats, "ndecomps")) solverstats["ndecomps"] else 0 end
destats
end

Expand Down

0 comments on commit 6e63c4b

Please sign in to comment.