MethodOfLines.jl
MethodOfLines.jl copied to clipboard
Error when using default solver algorithm in v0.5
In version 0.4, if one just calls solve(prob) without explicitly specifying an algorithm, it still works.
However, in version 0.5, this throws the error
ERROR: LoadError: MethodError: no method matching SciMLBase.PDETimeSeriesSolution(::OrdinaryDiffEq.ODECompositeSolution...
The test code is https://github.com/bowenszhu/MethodOfLines.jl/blob/test-default-solver/test_default_solver.jl
The test result can be found in https://github.com/bowenszhu/MethodOfLines.jl/actions/runs/3093114221
I'm not sure if this is an issue. Do we expect users to always choose a solver algorithm after version 0.5?
This is a bug, thank you. Until its fixed try Tsit5()
ODECompositeSolution is separate from ODESolution. We should probably just work to finally merge the two.