Skip to content

Commit bab04af

Browse files
committed
Version 1.7.0
1 parent f265722 commit bab04af

7 files changed

+16
-18
lines changed

Numbers.nuspec

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

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-
>
4+
- Added overloads to string-to-number methods that take char[] and byte[] arrays.
5+
- Added methods that convert EDecimal, EFloat, and ERational to and from raw bits that follow IEEE 754 binary floating-point formats (To/FromDoubleBits, To/FromSingleBits).
6+
- Added Log1P and ExpM1 methods to EDecimal and EFloat
7+
- Added &apos;long&apos; overloads to several arithmetic methods
8+
- Added implication and equivalence (Imp/Eqv) methods and an nth-root method to EInteger</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 targetFramework='.NETStandard1.0' /><group targetFramework='.NETFramework2.0' /><group targetFramework='.NETFramework4.0' /></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
9+
>

Numbers/PeterO/Numbers/EInteger.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3011,7 +3011,7 @@ public EInteger Remainder(long longValue) {
30113011

30123012
/// <summary>Compares an arbitrary-precision integer with this
30133013
/// instance.</summary>
3014-
/// <param name='intValue'>The parameter <paramref name='intValue'/> is
3014+
/// <param name='longValue'>The parameter <paramref name='longValue'/> is
30153015
/// a 64-bit signed integer.</param>
30163016
/// <returns>Zero if the values are equal; a negative number if this
30173017
/// instance is less, or a positive number if this instance is

Numbers/docs.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10226,7 +10226,7 @@
1022610226

1022710227
<summary>Compares an arbitrary-precision integer with this
1022810228
instance.</summary>
10229-
<param name='intValue'>The parameter <paramref name='intValue'/> is
10229+
<param name='longValue'>The parameter <paramref name='longValue'/> is
1023010230
a 32-bit signed integer.</param>
1023110231
<returns>Zero if the values are equal; a negative number if this
1023210232
instance is less, or a positive number if this instance is

Test/rules.ruleset

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<Rule Action='None' Id='SX1101'/>
4040
<Rule Action='None' Id='SX1309'/>
4141
<Rule Action='None' Id='SX1309S'/>
42+
<Rule Action='None' Id='SX1825'/>
4243
<Rule Id='SA0001' Action='None'/>
4344
</Rules>
4445
</RuleSet>

docs/PeterO.Numbers.EDecimal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4134,7 +4134,7 @@ Returns the remainder that would result when this arbitrary-precision decimal fl
41344134

41354135
<b>Return Value:</b>
41364136

4137-
The remainder that would result when this arbitrary-precision decimal floating-point number is divided by another arbitrary-precision decimal floating-point number. Signals FlagDivideByZero and returns infinity if the divisor is 0 and the dividend is nonzero. Signals FlagInvalid and returns not-a-number (NaN) if the divisor and the dividend are 0, or if the result of the division doesn't fit the given precision.
4137+
The remainder that would result when this arbitrary-precision decimal floating-point number is divided by another arbitrary-precision decimal floating-point number. Signals FlagDivideByZero and returns infinity if the divisor (this arbitrary-precision decimal floating-point number) is 0 and the dividend (the other arbitrary-precision decimal floating-point number) is nonzero. Signals FlagInvalid and returns not-a-number (NaN) if the divisor and the dividend are 0, or if the result of the division doesn't fit the given precision.
41384138

41394139
<a id="RemainderNaturalScale_PeterO_Numbers_EDecimal"></a>
41404140
### RemainderNaturalScale

docs/PeterO.Numbers.EFloat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -3848,7 +3848,7 @@ Returns the remainder that would result when this arbitrary-precision binary flo
38483848

38493849
<b>Return Value:</b>
38503850

3851-
The remainder that would result when this arbitrary-precision binary floating-point number is divided by another arbitrary-precision binary floating-point number. Signals FlagDivideByZero and returns infinity if the divisor is 0 and the dividend is nonzero. Signals FlagInvalid and returns not-a-number (NaN) if the divisor and the dividend are 0, or if the result of the division doesn't fit the given precision.
3851+
The remainder that would result when this arbitrary-precision binary floating-point number is divided by another arbitrary-precision binary floating-point number. Signals FlagDivideByZero and returns infinity if the divisor (this arbitrary-precision binary floating-point number) is 0 and the dividend (the other arbitrary-precision binary floating-point number) is nonzero. Signals FlagInvalid and returns not-a-number (NaN) if the divisor and the dividend are 0, or if the result of the division doesn't fit the given precision.
38523852

38533853
<a id="RemainderNaturalScale_PeterO_Numbers_EFloat"></a>
38543854
### RemainderNaturalScale

docs/PeterO.Numbers.EInteger.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Applications should instead use dedicated security libraries to handle big numbe
3131
* <code>[CanFitInInt32()](#CanFitInInt32)</code> - Returns whether this object's value can fit in a 32-bit signed integer.
3232
* <code>[CanFitInInt64()](#CanFitInInt64)</code> - Returns whether this object's value can fit in a 64-bit signed integer.
3333
* <code>[CompareTo(int)](#CompareTo_int)</code> - Compares an arbitrary-precision integer with this instance.
34-
* <code>[CompareTo(long)](#CompareTo_long)</code> - Not documented yet.
34+
* <code>[CompareTo(long)](#CompareTo_long)</code> - Compares an arbitrary-precision integer with this instance.
3535
* <code>[CompareTo(PeterO.Numbers.EInteger)](#CompareTo_PeterO_Numbers_EInteger)</code> - Compares an arbitrary-precision integer with this instance.
3636
* <code>[Decrement()](#Decrement)</code> - Returns one subtracted from this arbitrary-precision integer.
3737
* <code>[Divide(int)](#Divide_int)</code> - Divides this arbitrary-precision integer by a 32-bit signed integer and returns the result.
@@ -515,16 +515,16 @@ Zero if the values are equal; a negative number if this instance is less, or a p
515515
public int CompareTo(
516516
long longValue);
517517

518-
Not documented yet.
518+
Compares an arbitrary-precision integer with this instance.
519519

520520
<b>Parameters:</b>
521521

522-
* <i>longValue</i>: The parameter <i>longValue</i>
522+
* <i>intValue</i>: The parameter <i>intValue</i>
523523
is a 64-bit signed integer.
524524

525525
<b>Return Value:</b>
526526

527-
The return value is not documented yet.
527+
Zero if the values are equal; a negative number if this instance is less, or a positive number if this instance is greater.
528528

529529
<a id="CompareTo_PeterO_Numbers_EInteger"></a>
530530
### CompareTo

0 commit comments

Comments
 (0)