We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Solving an ODE with default options is fine, specifying an option results in a type instability. Perhaps related to #2530.
using OrdinaryDiffEq prob = ODEProblem{false}((u, p, t) -> -u, 1.0, (0.0, 1.0)) @code_warntype solve(prob) # type stable @code_warntype solve(prob, reltol = 1E-3) # type unstable
I see similar behavior when specifying abstol and dt.
abstol
dt
I'm using Julia 1.11.2 and OrdinaryDiffEq.jl v6.90.1
The text was updated successfully, but these errors were encountered:
oscardssmith
No branches or pull requests
Solving an ODE with default options is fine, specifying an option results in a type instability. Perhaps related to #2530.
I see similar behavior when specifying
abstol
anddt
.I'm using Julia 1.11.2 and OrdinaryDiffEq.jl v6.90.1
The text was updated successfully, but these errors were encountered: