forked from dotnet/runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
Progress so far #4
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
dakersnar
wants to merge
43
commits into
ieee-decimal-PRed
Choose a base branch
from
ieee-decimal
base: ieee-decimal-PRed
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 all commits
Commits
Show all changes
43 commits
Select commit
Hold shift + click to select a range
053c7a3
Add IDecimalFloatingPointIEE754 and Decimal32
dakersnar dcf9ca4
fix initial Decimal32 surface, fix ref files
dakersnar 543bf3d
Automatic updates to sln and projitems files
dakersnar 6bba90b
Merge branch 'main' of https://github.com/dotnet/runtime into ieee-de…
dakersnar 19c0463
Making progress
dakersnar 142221d
Started fleshing out IeeeDecimalNumber.cs
dakersnar 0c592f2
More progress including Parse and TryParse
dakersnar e60fbfa
continue to work on parsing
dakersnar 474cdcb
Make AllowHyphenDuringParsing public
dakersnar 88bb570
Merge branch 'main' of https://github.com/dotnet/runtime into ieee-de…
dakersnar c327401
Fix csproj file to include IeeeDecimalNumber.cs
dakersnar faf39b4
remove methods
dakersnar b6a36f8
Start with Number.NumberToFloatingPointBits.cs copy
dakersnar 39cbf41
Oops, forgot to add this file. This is the start of the work on the N…
dakersnar d1d9a7f
Stopping point for parsing, moving to formatting first
dakersnar 3967c80
Just kidding, continuing to work on parsing. I think this is complete.
dakersnar e7a86c1
Fix exception throwing in parsing
dakersnar 70e493c
Add missing parsing elements
dakersnar 2c72ff7
Fill out Decimal32 constructor
dakersnar 61611be
add Decimal32Tests.cs
dakersnar 2e55401
Undo accidental sln change
dakersnar b910176
Finish parsing end to end
dakersnar 8e03769
30 out of 48 parse tests passing
dakersnar ecbb04c
33 out of 48 parse tests passing
dakersnar 1030ea6
51/51 Parse Tests Pass
dakersnar 25488b8
All parse tests passing
dakersnar 57ce295
Better test coverage for parsing stuff
dakersnar 3656aaa
Cleanup
dakersnar 0ba0672
more cleanup
dakersnar a48d274
Merge pull request #1 from dakersnar/ieee-decimal-basic-setup-and-par…
dakersnar 549cc0f
Organized Decimal32.cs
dakersnar 1691996
Rename the parsing file
dakersnar bea1d8a
move helper
dakersnar 08590c2
Merge pull request #2 from dakersnar/ieee-decimal-cleanup-APIs
dakersnar 20ae1bf
Fixed ref file
dakersnar 04607f6
Add Lerp, comment out Platinum functions and interfaces
dakersnar b921150
Add conversions
dakersnar d1f3ffe
Address PR feedback
dakersnar 35c1665
Move IDecimalFloatingPointIee754.cs, update ref files
dakersnar 5842c4b
Add Encode* and Decode* functions
dakersnar 8f8d4c2
Small update on interface
dakersnar 0c3bb82
slight adjustments
dakersnar a394ddc
Adjust constant name
dakersnar 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
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
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
201 changes: 199 additions & 2 deletions
201
src/libraries/System.Runtime.Numerics/ref/System.Runtime.Numerics.cs
Large diffs are not rendered by default.
Oops, something went wrong.
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
Oops, something went wrong.
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.
This was a hack for the prototype. Another strategy is likely needed.