DiffEqDevTools.jl icon indicating copy to clipboard operation
DiffEqDevTools.jl copied to clipboard

TestSolution is dense even if the solution itself is not

Open nathanaelbosch opened this issue 2 years ago • 0 comments

julia> solve(prob, Tsit5()).dense
true

julia> solve(prob, Tsit5(), dense=false).dense
false

julia> TestSolution(solve(prob, Tsit5())).dense
true

julia> TestSolution(solve(prob, Tsit5(), dense=false)).dense
true

This is unexpected to me, and might be a bug.

nathanaelbosch avatar Sep 05 '22 09:09 nathanaelbosch