-
Notifications
You must be signed in to change notification settings - Fork 248
More efficient bisection for 1D Newton root finder #1012
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
Open
ryanelandt
wants to merge
22
commits into
boostorg:develop
Choose a base branch
from
ryanelandt:bisect
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
6bd1d9c
initial commit
ryanelandt eef5fe0
fix eval order issue with count
ryanelandt af08a6c
add unit test for 1008 failure case
ryanelandt 16b1033
address @mborland feedback
ryanelandt c2d2b76
added missing header file
ryanelandt 21dc82b
add __float128 support for Midpoint754
ryanelandt 21d9374
fixed compile issue due incorrect macro usage
ryanelandt 2f60168
fix unsigned __int128 isn't unsigend config issue
ryanelandt a803be2
compile issue fix attempt 3
ryanelandt 7acf90c
pound if zero out compiler problem
ryanelandt 0708745
preprocessor out again
ryanelandt 19bbf76
duck type dispatch to Midpoint754
ryanelandt 752a1c5
fix SFINAE type oversight
ryanelandt 777d64a
refactored ieee754_linear tools into new file
ryanelandt 8c46b6d
add_newline to end of file
ryanelandt f28048d
non-ascii character fix
ryanelandt a14567f
fix lint fails: C and LIC
ryanelandt 0a64a5f
fix issue type issue for std::float32_t + 64_t
ryanelandt 57c5512
added missing if defined guards ofr uint128
ryanelandt 3957093
remove multiprecision header from math files
ryanelandt 6d27f3a
include boost/cstdfloat.hpp
ryanelandt 66a61a8
new include
ryanelandt File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add __float128 support for Midpoint754
- Loading branch information
commit 21dc82bdc678b1d857c18794c8c3b7ed60374d30
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
As above, we shouldn't be forcing multiprecision headers to be included here, plus the using declaration at global header scope is evil ;)
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.
This header and using declaration was unneeded. Good catch.