-
Notifications
You must be signed in to change notification settings - Fork 25
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
Where are docs for 0.6 / what are all the breaking changes? #207
Comments
Right, I found the breaking changes now: https://github.com/JuliaIntervals/IntervalRootFinding.jl/blob/master/NEWS.md , so it was wrong to look at https://github.com/JuliaIntervals/IntervalRootFinding.jl/releases/tag/v0.6.0 |
Right I fixed many things, now my problem is that I have no idea in what format the Jacobian (derivative) needs to be specified in, because this simple one doesn't work: henon_rule(x) = SVector{2}(1.0 - p[1]*x[1]^2 + x[2], p[2]*x[1])
henon_jacob(x) = SMatrix{2,2}(-2*p[1]*x[1], p[2], 1.0, 0.0) Can someone tell me perhaps what's the new format?
my code works fine if I give |
Thanks for reporting ! I have added a badge in the README pointing to the |
The |
The docs seems to now be findable, the vector mixing issue is #209 |
I am trying to update CHaosTools.jl to the new breaking release. I am running into problems with using a
Vector
ofInterval
: https://github.com/JuliaDynamics/ChaosTools.jl/actions/runs/11868975864/job/33078794485?pr=338#step:7:680The breaking change release notes says "remove
IntervalBox
, just useVector{Interval}
" but that does not work for theroots
function. There aren't updated docs online yet to check what's the correct usage.The text was updated successfully, but these errors were encountered: