Tavenem.Randomize 2.2.9

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. Prefix Reserved
dotnet add package Tavenem.Randomize --version 2.2.9
NuGet\Install-Package Tavenem.Randomize -Version 2.2.9
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="Tavenem.Randomize" Version="2.2.9" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Tavenem.Randomize --version 2.2.9
#r "nuget: Tavenem.Randomize, 2.2.9"
#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 Tavenem.Randomize as a Cake Addin
#addin nuget:?package=Tavenem.Randomize&version=2.2.9

// Install Tavenem.Randomize as a Cake Tool
#tool nuget:?package=Tavenem.Randomize&version=2.2.9

build NuGet downloads

Tavenem.Randomize

Tavenem.Randomize provides pseudo-random number generation in various distributions.

For example, to print a single value from a normal distribution:

Console.WriteLine(Randomizer.Instance.NormalDistributionSample());

To print 10,000 values:

foreach (var value in Randomizer.Instance.NormalDistributionSamples(10000))
{
    Console.WriteLine(value);
}

Supported distributions:

Tavenem.Randomize utilizes a Mersenne Twister by default, but also provides a mechanism for replacing the underlying generator with your own, provided it implements the library's IGenerator interface.

The library also provides a serializable RandomParameters struct, which can be used to persist or transport the parameters used to obtain a random value.

Tavenem.Randomize also provides a Rehydrator class that allows a deterministic set of random values to be recreated from the same seed, even if those values are requested out of order.

Installation

Tavenem.Randomize is available as a NuGet package.

Roadmap

Tavenem.Randomize is a relatively stable library. Although additions and bugfixes are possible at any time, release should generally be expected to folow the .NET release cycle, with one or more preview releases during a framework preview, and a new stable release coinciding with the release of a new .NET framework major version.

Contributing

Contributions are always welcome. Please carefully read the contributing document to learn more before submitting issues or pull requests.

Code of conduct

Please read the code of conduct before engaging with our community, including but not limited to submitting or replying to an issue or pull request.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Tavenem.Randomize:

Package Downloads
Tavenem.Universe The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Classes to help model a universe.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.9 180 11/24/2023
2.2.8-preview-0002 172 7/25/2023
2.2.7-preview-0001 102 7/21/2023
2.1.3 381 11/8/2022
2.1.0-preview.2 103 9/29/2022
2.1.0-preview.1 171 9/13/2022
2.0.0 368 12/3/2021
2.0.0-preview.1 149 8/27/2021
1.0.1 430 5/4/2021
1.0.0 389 4/9/2021