-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
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
BoundsError for nonlinear ODE #179
Comments
The workaround that i know is to define @SebastianGuadalupe can you try to see if this problem also arises if you use the DifferentialEquations interface directly? (cf. https://perezhz.github.io/TaylorIntegration.jl/stable/common/) |
Thanks for reporting. I agree with the workaround of @mforets. I would also suggest using the following: @taylorize function benchmark7!(du, u, p, t)
local two = 2.0+zero(u[1])
du[1] = u[3]^3 - u[2] + u[4]
du[2] = u[3]
du[3] = two
du[4] = u[4]
return du
end |
I also think the prolem will still be present |
Alright, thanks. Should we report this in TaylorIntegration.jl or it is known? I just uploaded some documentation for this library related to this (and some other common issues), see #180. Comments welcome :) |
Yes, please, report to TaylorIntegration.jl, and if possible, add further comments in the the docs as well. |
👍 @SebastianGuadalupe i'm looking at you 😄 |
The text was updated successfully, but these errors were encountered: