SoftWx.Numerics 2.0.1

dotnet add package SoftWx.Numerics --version 2.0.1
NuGet\Install-Package SoftWx.Numerics -Version 2.0.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="SoftWx.Numerics" Version="2.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add SoftWx.Numerics --version 2.0.1
#r "nuget: SoftWx.Numerics, 2.0.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install SoftWx.Numerics as a Cake Addin
#addin nuget:?package=SoftWx.Numerics&version=2.0.1

// Install SoftWx.Numerics as a Cake Tool
#tool nuget:?package=SoftWx.Numerics&version=2.0.1

Library containing a UInt128 class, and extensions to .Net's built in integral data types.
The version targeting .Net 4.5 is implemented as a Portable Class Library.
The methods in this library were written with speed in mind. UInt128 operations are generally much faster than BigInteger.
Includes an IsPrime method for ulong that's pretty fast even for ulong values near MaxValue, as it uses the Miller-Rabin algorithm that's deterministic (not probable) over the range of ulong values.

Product Compatible and additional computed target framework versions.
.NET Framework net35 is compatible.  net40 is compatible.  net403 was computed.  net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 3.5

    • No dependencies.
  • .NETFramework 4.0

    • No dependencies.
  • .NETFramework 4.5

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 1,679 2/13/2016

2.0.1 Added IComparable interface implementations to UInt128.
2.0.0 First NuGet release. Added UInt128 class, removed dependency on BigInteger, numerous other improvements.
1.0.0 First release, via http://blog.softwx.net/