FsRandom.Pcg 1.4.0

.NET Standard 2.0
dotnet add package FsRandom.Pcg --version 1.4.0
NuGet\Install-Package FsRandom.Pcg -Version 1.4.0
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="FsRandom.Pcg" Version="1.4.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add FsRandom.Pcg --version 1.4.0
#r "nuget: FsRandom.Pcg, 1.4.0"
#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 FsRandom.Pcg as a Cake Addin
#addin nuget:?package=FsRandom.Pcg&version=1.4.0

// Install FsRandom.Pcg as a Cake Tool
#tool nuget:?package=FsRandom.Pcg&version=1.4.0

The PCG Pseudo-Random Number Generator for F#

NuGet AppVeyor

About PCG

PCG is a family of simple fast space-efficient statistically good algorithms for random number generation. Unlike many general-purpose RNGs, they are also hard to predict. You can read more about PCG here.

System.Random is not so good

System.Random has some problems that might be unsuitable for some users. Specifically:

  • It uses an obscure algorithm to generate random numbers.

    According to Microsoft:

    The current implementation of the Random class is based on Donald E. Knuth's subtractive random number generator algorithm. For more information, see D. E. Knuth. "The Art of Computer Programming, volume 2: Seminumerical Algorithms". Addison-Wesley, Reading, MA, second edition, 1981.

    Try to google it. And then, try to google "Mersenne Twister" or "linear congruential generator". Did you see the diference? The obscurity of this algorithm can be important. While it is designed by a well-respected computer scientist, it's very possible that its output is not random enough, or even worse, it can be easily predicted. Imagine that you are playing a game, and your opponent can predict the roll of a dice or the order of a shuffled deck. Predictability directly contradicts the very definition of randomness. While no software can generate completely random material, it can give a decent try; and it's doing well. Furthermore, System.Random's implementation has a serious defect.

  • This is more specific to F# users, but, regardless of the underlying algorithm, the System.Random class has mutable state, an antipattern of functional programming. For example, with immutable values, generating the same random stream again might be a little hard in a stateful, imperative language like C#. Uses of System.Random have an inherent cost of adding side effects, something functional programmers are scared of. But don't worry. F# has a good library for functional random number generation.

PCG is better

Taken from here (modified):

  • It's really easy to use, and yet its very flexible and offers powerful features (not all of them are yet available on this library) (including some that allow you to perform silly party tricks).
  • It's very fast, and can occupy very little space (only 32 bytes of state, in comparison with System.Random's 232 bytes of state, and with Mersenne Twister's 2.5 KiB of internal state).
  • It has small code size.
  • It's performance in statistical tests is excellent (see the PCG paper for full details).
  • It's much less predictable and thus more secure than most generators, although I would not advise it for cryptographic usage.
  • The reference implementation is open source software, with a permissive license (the Apache license).

Documentation

The documentation of the library is in the wiki. You can also check the source code comments.

Product Versions
.NET net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows
.NET Core netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1
.NET Standard netstandard2.0 netstandard2.1
.NET Framework net461 net462 net463 net47 net471 net472 net48 net481
MonoAndroid monoandroid
MonoMac monomac
MonoTouch monotouch
Tizen tizen40 tizen60
Xamarin.iOS xamarinios
Xamarin.Mac xamarinmac
Xamarin.TVOS xamarintvos
Xamarin.WatchOS xamarinwatchos
Compatible target framework(s)
Additional computed target framework(s)
Learn more about Target Frameworks and .NET Standard.

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
1.4.0 20,020 12/4/2017
1.3.0 894 6/16/2017
1.2.0 963 4/18/2017
1.1.1 939 4/7/2017
1.0.1 947 4/2/2017
1.0.0 932 3/24/2017

Integrated the source code of FsRandom into the project.
FsRandom got some improvements (`ref` became `mutable` and so on).
The library now targets only .NET Standard 2.0.
Today used to be a wonderful day. Now it shouldn't be anything of importance.