Added tag v0.5.0 for changeset 1ea1affbc82e
Add release notes for version 0.5.0
Fix NRE in Throughput Column with a framework of net8.0 and a runtime of net6.0
Combine RandN.MersenneTwister and RandN.XorShift projects into a single RandN.ExtraRngs project Multiple projects and packages is too granular and are difficult to maintain. It makes more sense to combine them into one single package. Perhaps in the future if we have many algorithms, it'd make sense to divide them into families of RNGs.
Clean up warnings
Disable big endian support by default Since I have no access to a big endian processor supporting .NET, this code is completely untested. In the event that someone wants to test big-endian CPUs, RandN can be compiled with ENABLE_BIG_ENDIAN defined.
Merge 'Add extra tests around ShuffleInPlace'
Add more tests for BigIntegers and disallow unsafe blocks in MersenneTwister
Add extra tests around ShuffleInPlace
Replace Unsafe.As<T> calls with `is` expressions
Merge pull request #27 from steve7411/master
Merge pull request #27 from steve7411/master Adding a ShuffleInPlace that takes in a Span
Adding a ShuffleInPlace that takes in a Span and forwarding to it when possible
Add benchmark for large BigIntegers
Add tests for averaging integer distributions
Use TheoryData for Uniform.BigInteger and Uniform.Decimal tests
Attempt to fix exception in Test Discovery on .NET Framework 4.8 for a fourth time
Attempt to fix exception in Test Discovery on .NET Framework 4.8 for a third time
Attempt to fix exception in Test Discovery on .NET Framework 4.8 again
Attempt to fix exception in Test Discovery on .NET Framework 4.8