-
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
Add test of finding stationary points #88
Conversation
Codecov Report
@@ Coverage Diff @@
## master #88 +/- ##
==========================================
- Coverage 64.97% 58.45% -6.52%
==========================================
Files 11 11
Lines 551 544 -7
==========================================
- Hits 358 318 -40
- Misses 193 226 +33
Continue to review full report at Codecov.
|
test/stationary_points.jl
Outdated
X = IntervalBox( (-L..L+1), 2) | ||
|
||
@time rts = IntervalRootFinding.roots(∇f, X, Bisection) | ||
@time rts = IntervalRootFinding.roots(∇f, rts, Newton, 1e-20) |
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.
These two @time
can be removed. I'll add them as benchmark to #105.
Also with minor adaptation Krawczyk method could be checked here too (a bit to involved change for GitHub propose change feature though).
Co-Authored-By: dpsanders <[email protected]>
* Base.Test -> Test * Fix some deprecations * Fix a Smiley test and more deprecations * Fix linear alebra tests * New iteration protocol * Remove lexcmp * Update REQUIRE, .travis.yml and appveyor.yml for 0.7 and 1.0 * Pedal back ForwardDiff requirement
* Fix bug with log function * Fix contraction typo Co-Authored-By: Kolaru <[email protected]> * Add failing tests * Fix other test issues * Naively fix log(y/x) bug * Clean contractor code * Fix typos and cosmetic changes * Use metaprograming to avoid code duplication
Superseded by #205 |
No description provided.