Redzen 12.0.0-preview5

This is a prerelease version of Redzen.
There is a newer version of this package available.
See the version list below for details.
The owner has unlisted this package. This could mean that the package is deprecated, has security vulnerabilities or shouldn't be used anymore.
dotnet add package Redzen --version 12.0.0-preview5
NuGet\Install-Package Redzen -Version 12.0.0-preview5
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="Redzen" Version="12.0.0-preview5" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Redzen --version 12.0.0-preview5
#r "nuget: Redzen, 12.0.0-preview5"
#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 Redzen as a Cake Addin
#addin nuget:?package=Redzen&version=12.0.0-preview5&prerelease

// Install Redzen as a Cake Tool
#tool nuget:?package=Redzen&version=12.0.0-preview5&prerelease

General purpose C# code library.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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.
  • net5.0

    • No dependencies.

NuGet packages (2)

Showing the top 2 NuGet packages that depend on Redzen:

Package Downloads
SharpNeatLib

SharpNEAT - Evolution of Neural Networks.

SharpNeat

SharpNEAT - Evolution of Neural Networks.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Redzen:

Repository Stars
colgreen/sharpneat
SharpNEAT - Evolution of Neural Networks. A C# .NET Framework.
Version Downloads Last updated
15.0.0 1,219 7/22/2023
14.0.0 1,422 1/1/2023
13.0.0 1,221 1/9/2022
12.0.0 8,129 3/14/2021
11.0.0 3,531 8/2/2020
10.0.0 1,170 6/28/2020
9.1.3 1,061 12/30/2021
9.1.2 1,229 11/8/2020
9.1.1 7,016 7/5/2020
9.1.0 1,048 6/14/2020
9.0.0 2,465 4/24/2019
8.0.0 2,028 1/22/2019
7.2.3 2,179 6/23/2018
7.2.2 1,517 6/13/2018
7.2.1 1,765 5/20/2018
7.2.0 1,512 5/19/2018
7.1.0 1,485 5/18/2018
7.0.1 1,754 5/11/2018
7.0.0 1,717 5/10/2018
6.0.0 1,673 5/8/2018
5.0.0 1,529 4/23/2018
4.0.0 2,255 1/27/2018
3.0.2 6,919 4/23/2017
3.0.1 1,490 3/29/2017
3.0.0 1,504 3/29/2017
2.0.0 1,610 3/11/2017
1.0.5 2,795 3/9/2016
1.0.4 1,795 2/14/2016
1.0.3 1,806 2/6/2016
1.0.2 1,800 2/6/2016
1.0.1 1,778 2/5/2016
1.0.0.1 1,801 11/7/2015

- Target framework upgraded from netcoreapp3.1 to net5.0.
- MathSpanUtils.Clip() renamed to Clamp() (which is the formal term for this operation).
- Added DiscreteDistribution.SingleOutcome singleton field.
- Spanified NumericsUtils.BuildHistogramData().
- EnumerableUtils.RangeRandomOrder() now gets a temp array from ArrayPool (to reduce memory allocs and garbage collection).
- Spanified ISampler, IStatelessSampler.
- Spanified NumericsUtils, SortUtils.
- FileByteArray now uses smaller buffer size.
- DefaultRandomSeedSource: Sealed the class. Use stackalloc for obaining crypto random bytes. Integer arithmetic using bitshifts (performance tweak).
- Spanified Base64EncodingOutputStream.
- Rename: NumericsUtils.ProbabilisticRound() -> StochasticRound().
- Int32Sequence marked as sealed.
- SpanUtils.Equals{T}() renamed to Equal{T}().
- Rename: DoubleCircularBufferWithStats -> CircularBufferWithStats.
- Rename: NumericsUtils.CalculateMedian() -> Median(), and added zero length check.
- Spanified MemoryBlockStream, NonClosingStreamWrapper.
- IntroSort{K,V,W}: Spanified. Some optimizations.
- Fix: MathUtils.Log2Ceiling(uint) gave incorrect results when the high bit was set.
- MathUtils.IsPowerOfTwo() implementions changed to use BitOperations.PopCount() instead of arithmetic trick (performance).
- IRandomSource.NextBytes(Span{byte}) implementations reimplemented to use modern faster techniques for populatign 8 bytes at a time (approx. 7% performance boost)