JuliaIntervals / IntervalRootFinding.jl

Library for finding the roots of a function using interval arithmetic
https://juliaintervals.github.io/IntervalRootFinding.jl/
Other
126 stars 26 forks source link

Add compat with IntervalArithmetic 0.16 #139

Closed ericphanson closed 4 years ago

ericphanson commented 4 years ago

I haven't tested this, but the CI should check. It would be nice to be able to use both IntervalArithmetic 0.16 and the latest release of IntervalRootFinding.jl together.

lbenet commented 4 years ago

Thanks a lot! I was precisely dealing with problems related to this!

To take effect, this requires a new tag; @dpsanders can you take care of this?

ericphanson commented 4 years ago

Just to say in e.g. https://travis-ci.org/JuliaIntervals/IntervalRootFinding.jl/jobs/622651902#L219 we can see IntervalArithmetic 0.16.1 was indeed used, so the tests are indeed testing the change this PR makes (whereas if some other dependency was also holding IntervalArithmetic back to 0.15 the tests could pass but that wouldn't help us know if IntervalArithmetic 0.16.1 is OK with IntervalRootFinding).

dpsanders commented 4 years ago

Thanks!