Redzen 11.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Redzen --version 11.0.0
                    
NuGet\Install-Package Redzen -Version 11.0.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="Redzen" Version="11.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Redzen" Version="11.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Redzen" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Redzen --version 11.0.0
                    
#r "nuget: Redzen, 11.0.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.
#:package Redzen@11.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Redzen&version=11.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Redzen&version=11.0.0
                    
Install as a Cake Tool

General purpose C# code library.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
.NET Core netcoreapp3.1 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETCoreApp 3.1

    • 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
16.0.0 1,769 8/6/2024
15.0.0 2,292 7/22/2023
14.0.0 2,045 1/1/2023
13.0.0 1,397 1/9/2022
12.0.0 10,361 3/14/2021
11.0.0 3,904 8/2/2020
10.0.0 1,317 6/28/2020
9.1.3 1,454 12/30/2021
9.1.2 1,349 11/8/2020
9.1.1 9,132 7/5/2020
9.1.0 1,167 6/14/2020
9.0.0 2,696 4/24/2019
8.0.0 2,196 1/22/2019
7.2.3 2,450 6/23/2018
7.2.2 1,831 6/13/2018
7.2.1 2,098 5/20/2018
7.2.0 1,829 5/19/2018
7.1.0 1,802 5/18/2018
7.0.1 2,104 5/11/2018
7.0.0 2,054 5/10/2018
6.0.0 2,022 5/8/2018
5.0.0 1,858 4/23/2018
4.0.0 2,615 1/27/2018
3.0.2 10,869 4/23/2017
3.0.1 1,733 3/29/2017
3.0.0 1,762 3/29/2017
2.0.0 1,846 3/11/2017
1.0.5 3,064 3/9/2016
1.0.4 2,047 2/14/2016
1.0.3 2,047 2/6/2016
1.0.2 2,058 2/6/2016
1.0.1 2,038 2/5/2016
1.0.0.1 2,053 11/7/2015

- Enabled nullable reference types (introduced as part of C#8).
- Added Float.BoxMullerGaussian, ZigguratGaussian, DiscreteDistribution and related classes.
- Rename MathArrayUtils to MathSpanUtils.
- Added MathFSpanUtils; a single-precision floating-point equivalent of MathSpanUtils.
- Deleted ArrayUtils; this is superseded by SpanUtils.
- Fix: Base64EncodingOutputStream.Write() - incorrect offset bound check.
- Eliminate a single branch from the ZigguratGuassian class; in synthetic benchmarks this improves performance by approx. 36%.
- Fix: NextDoubleNonZero() could return zero (very infrequently)
- RandomSourceBase.Next(): Use high bits as the source of entropy, as these generally exhibit high quality randomness in LCG PRNGs.
- Removed a number of AggressiveInlining attributes where, on balance, they are not useful.
- XorShiftRandom: Removed redundant test of maxValue.
- Doubled sampling resolution of NextDoubleNonZero().
- Added IRandomSource.NextFloatNonZero().