Skip to content

Commit 0547603

Browse files
committed
version 1.6.0
1 parent 732e48a commit 0547603

File tree

10 files changed

+128
-115
lines changed

10 files changed

+128
-115
lines changed

Numbers.nuspec

+10-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,12 @@
11
<package
2-
><metadata><version>1.5.1</version><id>PeterO.Numbers</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>Version 1.5.1
2+
><metadata><version>1.6.0</version><id>PeterO.Numbers</id><requireLicenseAcceptance>false</requireLicenseAcceptance><releaseNotes>Version 1.6.0
33

4-
- Fix bugs in EDecimal.FromString and ERational.FromString involving substrings containing negative numbers.
5-
6-
Version 1.5.0
7-
8-
- Major performance improvements in certain number parsing and generating methods, including the FromString methods of EInteger, EDecimal, EFloat, and ERational, and the ToEFloat method of EDecimal, especially where they take an arithmetic context (EContext) that specifies a limited precision and exponent range.
9-
- There were also performance improvements in digit count calculation and in rounding many-digit-long numbers.
10-
- Add int overloads to EDecimal.Pow and EFloat.Pow.
11-
- Add int overloads to several ERational methods.
12-
- Add CompareTo overloads and CompareToValue (which implements current CompareTo) in EDecimal, EFloat, and ERational. In a future version, CompareTo&apos;s behavior might change to CompareToTotal in each of these classes. Also certain CompareTo* methods now have consistent behavior when they receive a null argument.
13-
- ETrapException now has an Errors property that holds all errors that occur at the same time as the primary error.
14-
- Fixed edge cases when ToShortestString might return an incorrect result.
15-
- Fixed bug when some ETrapExceptions aren&apos;t thrown as they should.
16-
- Other bug fixes.</releaseNotes><summary></summary><license type='expression'>CC0-1.0</license><projectUrl>https://github.com/peteroupc/Numbers</projectUrl><authors>Peter Occil</authors><description>A C# library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</description><owners>Peter Occil</owners><title>Arbitrary-Precision Number Library</title><tags>numbers arithmetic decimal math</tags><dependencies><group /></dependencies></metadata><files><file src='Numbers/bin/Release/netstandard1.0/Numbers.dll' target='/lib/netstandard1.0' /><file src='Numbers/bin/Release/netstandard1.0/Numbers.xml' target='/lib/netstandard1.0' /><file src='Numbers20/bin/Release/Numbers.dll' target='/lib/net20' /><file src='Numbers20/bin/Release/Numbers.xml' target='/lib/net20' /><file src='Numbers40/bin/Release/Numbers.dll' target='/lib/net40' /><file src='Numbers40/bin/Release/Numbers.xml' target='/lib/net40' /></files></package
17-
>
4+
- Numerous performance improvements in the EInteger, EDecimal, EFloat, and ERational classes. Among them is the use of caches for small EInteger, EDecimal, and EFloat values, and faster multiplication algorithms for large EIntegers.
5+
- Correctness fixes to the Log() methods in EDecimal and EFloat
6+
- New LogN() method in EDecimal and EFloat
7+
- New methods in EInteger, including FromBytes, GetDigitCountAsEInteger, and DivRem(long)
8+
- New ToSizedEInteger/ToSizedEIntegerIfExact/IsInteger methods in EDecimal, EFloat, and ERational
9+
- New Create overloads in EFloat and ERational
10+
- New Min and Max methods in EInteger and ERational
11+
- Bug fixes</releaseNotes><summary></summary><license type='expression'>CC0-1.0</license><projectUrl>https://github.com/peteroupc/Numbers</projectUrl><authors>Peter Occil</authors><description>A C# library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.</description><owners>Peter Occil</owners><title>Arbitrary-Precision Number Library</title><tags>numbers arithmetic decimal math</tags><dependencies><group /></dependencies></metadata><files><file src='Numbers/bin/Release/netstandard1.0/Numbers.dll' target='/lib/netstandard1.0' /><file src='Numbers/bin/Release/netstandard1.0/Numbers.xml' target='/lib/netstandard1.0' /><file src='Numbers20/bin/Release/Numbers.dll' target='/lib/net20' /><file src='Numbers20/bin/Release/Numbers.xml' target='/lib/net20' /><file src='Numbers40/bin/Release/Numbers.dll' target='/lib/net40' /><file src='Numbers40/bin/Release/Numbers.xml' target='/lib/net40' /></files></package
12+
>

Numbers/Numbers.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ Version 1.6.0
3737
<DebugType>full</DebugType>
3838
<CodeAnalysisRuleSet>rules.ruleset</CodeAnalysisRuleSet></PropertyGroup>
3939
<PropertyGroup Condition=' &apos;$(Configuration)|$(Platform)&apos; == &apos;Release|AnyCPU&apos; '>
40-
<DebugType/>
40+
<DebugType>none</DebugType>
4141
<DocumentationFile>bin\Release\netstandard1.0\Numbers.xml</DocumentationFile>
4242

4343
<CodeAnalysisRuleSet>rules.ruleset</CodeAnalysisRuleSet></PropertyGroup>
4444
<ItemGroup>
4545

4646
<AdditionalFiles Include='stylecop.json'/><AdditionalFiles Include='rules.ruleset'/><PackageReference Include='StyleCop.Analyzers' PrivateAssets='All' Version='1.2.0-beta.113'/><PackageReference Include='Microsoft.CodeAnalysis.FxCopAnalyzers' PrivateAssets='All' Version='2.9.8'/></ItemGroup>
47-
<PropertyGroup/><PropertyGroup/> </Project>
47+
<PropertyGroup/><PropertyGroup/> </Project>

Numbers/PeterO/Numbers/DigitShiftAccumulator.cs

+13-4
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,11 @@ public bool TruncateRightExact(FastInteger fastint) {
298298
return (this.bitLeftmost | this.bitsAfterLeftmost) == 0;
299299
}
300300
if (!this.isSmall && !this.shiftedBigInt.CanFitInInt64()) {
301-
if (this.shiftedBigInt == null) throw new InvalidOperationException();
301+
#if DEBUG
302+
if (this.shiftedBigInt == null) {
303+
throw new InvalidOperationException();
304+
}
305+
#endif
302306
int a = fastint.ToInt32();
303307
if (a > 10) {
304308
this.ShiftRightBig(10, true, true);
@@ -423,12 +427,16 @@ private void UpdateKnownLength(FastInteger digitsShiftedFast) {
423427
}
424428

425429
private void ShiftRightBig(int digits, bool truncate, bool simple) {
426-
if (this.shiftedBigInt == null) throw new InvalidOperationException();
430+
#if DEBUG
431+
if (this.shiftedBigInt == null) {
432+
throw new InvalidOperationException();
433+
}
434+
#endif
427435
if (digits <= 0) {
428436
return;
429437
}
430438
// DebugUtility.Log("ShiftRightBig "+digits+" "+truncate+" "+
431-
// simple+" "+this);
439+
// simple+" "+this);
432440
if (this.shiftedBigInt.IsZero) {
433441
this.discardedDigitCount = this.discardedDigitCount ?? new
434442
FastInteger(0);
@@ -585,7 +593,8 @@ private void ShiftRightBig(int digits, bool truncate, bool simple) {
585593
EInteger[] divrem1 = sbi.DivRem(NumberUtility.FindPowerOfTen(
586594
digits - 1));
587595
EInteger[] divrem2 = divrem1[0].DivRem(10);
588-
// DebugUtility.Log("divrem " + (// divrem1[0]) + " " + divrem1[1] + " / " + divrem2[0] + " " + (divrem2[1]));
596+
// DebugUtility.Log("divrem " + (// divrem1[0]) + " " + divrem1[1] + " / " +
597+
// divrem2[0] + " " + (divrem2[1]));
589598
this.bitsAfterLeftmost |= this.bitLeftmost;
590599
this.bitsAfterLeftmost |= divrem1[1].IsZero ? 0 : 1;
591600
this.bitLeftmost = divrem2[1].ToInt32Checked();

Numbers/PeterO/Numbers/EInteger.cs

+28-9
Original file line numberDiff line numberDiff line change
@@ -4372,7 +4372,7 @@ public EInteger Remainder(EInteger divisor) {
43724372
/// Thus, for negative values, the arbitrary-precision integer is
43734373
/// sign-extended.</summary>
43744374
/// <param name='eshift'>The number of bits to shift. Can be negative,
4375-
/// in which case this is the same as shiftLeft with the absolute value
4375+
/// in which case this is the same as ShiftLeft with the absolute value
43764376
/// of this parameter.</param>
43774377
/// <returns>An arbitrary-precision integer.</returns>
43784378
/// <exception cref='ArgumentNullException'>The parameter <paramref
@@ -4399,7 +4399,7 @@ public EInteger ShiftRight(EInteger eshift) {
43994399
/// value of 2 multiplies it by 4, a value of 3 by 8, a value of 4 by
44004400
/// 16, and so on.</summary>
44014401
/// <param name='eshift'>The number of bits to shift. Can be negative,
4402-
/// in which case this is the same as shiftRight with the absolute
4402+
/// in which case this is the same as ShiftRight with the absolute
44034403
/// value of this parameter.</param>
44044404
/// <returns>An arbitrary-precision integer.</returns>
44054405
/// <exception cref='ArgumentNullException'>The parameter <paramref
@@ -4437,18 +4437,37 @@ public EInteger ShiftLeft(int numberBits) {
44374437
this.ShiftRight(1).ShiftRight(Int32.MaxValue) :
44384438
this.ShiftRight(-numberBits);
44394439
}
4440-
var numWords = (int)this.wordCount;
4440+
int numWords = this.wordCount;
44414441
var shiftWords = (int)(numberBits >> 4);
44424442
var shiftBits = (int)(numberBits & 15);
44434443
if (!this.negative) {
4444-
var ret = new short[numWords + BitsToWords((int)numberBits)];
4444+
// Determine shifted integer's word count in advance;
4445+
// it's more cache-friendly to do so because the
4446+
// unshifted word has less memory
4447+
int lastWordBL = NumberUtility.BitLength(
4448+
(int)(this.words[this.wordCount - 1]) & 0xffff);
4449+
lastWordBL += shiftBits;
4450+
var newWordCount = 0;
4451+
if (lastWordBL <= 16) {
4452+
// New bit count is such that an additional word
4453+
// is not needed
4454+
newWordCount = numWords + shiftWords;
4455+
} else {
4456+
newWordCount = numWords + BitsToWords(numberBits);
4457+
}
4458+
var ret = new short[newWordCount];
44454459
Array.Copy(this.words, 0, ret, shiftWords, numWords);
44464460
ShiftWordsLeftByBits(
44474461
ret,
4448-
(int)shiftWords,
4449-
numWords + BitsToWords(shiftBits),
4462+
shiftWords,
4463+
newWordCount - shiftWords,
44504464
shiftBits);
4451-
return new EInteger(CountWords(ret), ret, false);
4465+
#if DEBUG
4466+
if (newWordCount <= 0 || ret[newWordCount - 1] == 0) {
4467+
throw new InvalidOperationException();
4468+
}
4469+
#endif
4470+
return new EInteger(newWordCount, ret, false);
44524471
} else {
44534472
var ret = new short[numWords + BitsToWords((int)numberBits)];
44544473
Array.Copy(this.words, ret, numWords);
@@ -8567,7 +8586,7 @@ private static void SchoolbookSquare(
85678586
private static short ShiftWordsLeftByBits(
85688587
short[] r,
85698588
int rstart,
8570-
int n,
8589+
int count,
85718590
int shiftBits) {
85728591
#if DEBUG
85738592
if (shiftBits >= 16) {
@@ -8579,7 +8598,7 @@ private static short ShiftWordsLeftByBits(
85798598
if (shiftBits != 0) {
85808599
int sb16 = 16 - shiftBits;
85818600
int rs = rstart;
8582-
for (var i = 0; i < n; ++i, ++rs) {
8601+
for (var i = 0; i < count; ++i, ++rs) {
85838602
u = r[rs];
85848603
r[rs] = unchecked((short)((u << shiftBits) | carry));
85858604
carry = (u & ShortMask) >> sb16;

Numbers20/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Reflection;
22
[assembly: System.CLSCompliant(true)]
3-
[assembly: AssemblyInformationalVersion("1.5.1")]
4-
[assembly: AssemblyVersion("1.5.1.0")]
5-
[assembly: AssemblyFileVersion("1.5.1.0")]
3+
[assembly: AssemblyInformationalVersion("1.6.0")]
4+
[assembly: AssemblyVersion("1.6.0.0")]
5+
[assembly: AssemblyFileVersion("1.6.0.0")]
66
[assembly: AssemblyProduct("Arbitrary-Precision Number Library")]
77
[assembly: AssemblyTitle("Arbitrary-Precision Number Library")]
88
[assembly: AssemblyDescription("A C# library that supports arbitrary-pre" +

Numbers40/Properties/AssemblyInfo.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
using System.Reflection;
22
[assembly: System.CLSCompliant(true)]
3-
[assembly: AssemblyInformationalVersion("1.5.1")]
4-
[assembly: AssemblyVersion("1.5.1.0")]
5-
[assembly: AssemblyFileVersion("1.5.1.0")]
3+
[assembly: AssemblyInformationalVersion("1.6.0")]
4+
[assembly: AssemblyVersion("1.6.0.0")]
5+
[assembly: AssemblyFileVersion("1.6.0.0")]
66
[assembly: AssemblyProduct("Arbitrary-Precision Number Library")]
77
[assembly: AssemblyTitle("Arbitrary-Precision Number Library")]
88
[assembly: AssemblyDescription("A C# library that supports arbitrary-pre" +

0 commit comments

Comments
 (0)