-
Notifications
You must be signed in to change notification settings - Fork 39
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
CompatHelper: bump compat for IntervalRootFinding to 0.6, (keep existing compat) #338
CompatHelper: bump compat for IntervalRootFinding to 0.6, (keep existing compat) #338
Conversation
This is actually breaking. Must change See https://github.com/JuliaIntervals/IntervalRootFinding.jl/releases/tag/v0.6.0 |
ds = DeterministicIteratedMap(henon_rule, zeros(2), [1.4, 0.3]) | ||
x = interval(-1.5, 1.5) | ||
y = interval(-0.5, 0.5) | ||
box = x × y | ||
box = [x, y] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The problem is here: the initial vector must have the same type as the output of the function.
Since henon_rule
and henon_jacob
use SArrays
, this should be a SVector
(and same for the two other testsets below).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
thank you!!! That fixed it!!!
This pull request changes the compat entry for the
IntervalRootFinding
package from0.5.9
to0.5.9, 0.6
.This keeps the compat entries for earlier versions.
Note: I have not tested your package with this new compat entry.
It is your responsibility to make sure that your package tests pass before you merge this pull request.