Skip to content
This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
/ corefx Public archive

Commit

Permalink
Improve performance of BigInteger.Add/Sub/Div/Rem
Browse files Browse the repository at this point in the history
To introduce further performance tweaks, some minor improvements are
added to `BigIntegerCalculator`, which cover all the basic operations.
Having these algorithms based on raw uint[] objects will lead to more
interesting tweaks of the more fancy stuff (`ModPow`).
  • Loading branch information
axelheer committed May 19, 2015
1 parent cd67f03 commit be16ac1
Show file tree
Hide file tree
Showing 8 changed files with 886 additions and 181 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
<!-- References are resolved from packages.config -->
<ItemGroup>
<Compile Include="System\Numerics\BigIntegerCalculator.AddSub.cs" />
<Compile Include="System\Numerics\BigIntegerCalculator.DivRem.cs" />
<Compile Include="System\Numerics\BigIntegerCalculator.SquMul.cs" />
<Compile Include="System\Numerics\BigInteger.cs" />
<Compile Include="System\Numerics\BigIntegerBuilder.cs" />
Expand Down
Loading

0 comments on commit be16ac1

Please sign in to comment.