Allow optimizing over Bigfloat intervals#45
Conversation
Codecov Report
@@ Coverage Diff @@
## master #45 +/- ##
==========================================
+ Coverage 89.06% 89.55% +0.48%
==========================================
Files 4 4
Lines 64 67 +3
==========================================
+ Hits 57 60 +3
Misses 7 7
Continue to review full report at Codecov.
|
|
LGTM, thanks a lot! Could you please bump the version in Project.toml to 0.4.1? |
|
Apparently you can give me permission to modify your PR like this: But doesn't make sense for this particular one. |
|
Sure, done. You won't be able to get it automerged though, since there's unbounded compat. Probably instead of e.g. IntervalRootFinding = "≥ 0.4.0"you want something like IntervalRootFinding = "0.4, 0.5"which means versions in the interval |
|
Hmm. Why does this package even need IntervalRootFinding? Anyway, could you go ahead and make that change too please? |
|
It doesn't, nor does it seem to need IntervalConstraintProgramming. I'll try and clean up the dependencies and fix the compat. |
|
Turns out DataStructures, ForwardDiff, IntervalConstraintProgramming, and IntervalRootFinding were all unneeded. Makes the compat much easier to figure out :) |
|
Most of those packages are needed by various of the open PRs. But then they should be added back in in those PRs I guess! |
|
Thanks! |
I looked for something like the
numeric_typefunction I introduce here in IntervalArithmetic.jl but didn't see anything, so I just defined it here. Fixes #43.