-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Optimize NumberToBigInteger * DisableParallelization * Trailing zero * Fix assertion * Recursive parse * Skip trailing zeros * Shrink PowersOf1e9 * OmittedLength * pre-calculate 1000000000^(1<<5) * Move PowersOf1e9 * fix * Fix large case * public * Use PowersOf1e9.MaxPartialDigits, PowersOf1e9.TenPowMaxPartial * Remove NumberBufferToBigInteger * intDigits * Use BigInteger(ReadOnlySpan<uint> value, bool negative) * base1E9 * Remove RecursiveLarge
- Loading branch information
Showing
7 changed files
with
617 additions
and
401 deletions.
There are no files selected for viewing
759 changes: 459 additions & 300 deletions
759
src/libraries/System.Runtime.Numerics/src/System/Number.BigInteger.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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 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 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 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 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 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