Redzen 12.0.0
See the version list below for details.
dotnet add package Redzen --version 12.0.0
NuGet\Install-Package Redzen -Version 12.0.0
<PackageReference Include="Redzen" Version="12.0.0" />
paket add Redzen --version 12.0.0
#r "nuget: Redzen, 12.0.0"
// Install Redzen as a Cake Addin #addin nuget:?package=Redzen&version=12.0.0 // Install Redzen as a Cake Tool #tool nuget:?package=Redzen&version=12.0.0
General purpose C# code library.
Product | Versions 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. 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. |
-
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 |
---|---|---|
16.0.0 | 788 | 8/6/2024 |
15.0.0 | 2,139 | 7/22/2023 |
14.0.0 | 1,591 | 1/1/2023 |
13.0.0 | 1,306 | 1/9/2022 |
12.0.0 | 9,875 | 3/14/2021 |
11.0.0 | 3,833 | 8/2/2020 |
10.0.0 | 1,241 | 6/28/2020 |
9.1.3 | 1,310 | 12/30/2021 |
9.1.2 | 1,284 | 11/8/2020 |
9.1.1 | 8,388 | 7/5/2020 |
9.1.0 | 1,100 | 6/14/2020 |
9.0.0 | 2,583 | 4/24/2019 |
8.0.0 | 2,111 | 1/22/2019 |
7.2.3 | 2,268 | 6/23/2018 |
7.2.2 | 1,581 | 6/13/2018 |
7.2.1 | 1,840 | 5/20/2018 |
7.2.0 | 1,575 | 5/19/2018 |
7.1.0 | 1,550 | 5/18/2018 |
7.0.1 | 1,832 | 5/11/2018 |
7.0.0 | 1,793 | 5/10/2018 |
6.0.0 | 1,753 | 5/8/2018 |
5.0.0 | 1,597 | 4/23/2018 |
4.0.0 | 2,341 | 1/27/2018 |
3.0.2 | 9,502 | 4/23/2017 |
3.0.1 | 1,554 | 3/29/2017 |
3.0.0 | 1,579 | 3/29/2017 |
2.0.0 | 1,668 | 3/11/2017 |
1.0.5 | 2,869 | 3/9/2016 |
1.0.4 | 1,860 | 2/14/2016 |
1.0.3 | 1,862 | 2/6/2016 |
1.0.2 | 1,872 | 2/6/2016 |
1.0.1 | 1,840 | 2/5/2016 |
1.0.0.1 | 1,865 | 11/7/2015 |
- Target framework upgraded from netcoreapp3.1 to net5.0; this allows use of some new API surface in net5 which improves performance in places.
- The redzen assembly is no longer strong named, as this is no longer necessary or helpful within a dotnet core runtime environment.
- The following classes, interfaces, and methods have been 'spanified':
- TimSort{T}, TimSort{K,V}, TimSort{K,V,W}
- IntroSort{K,V,W}
- SortUtils
- NumericsUtils
- Base64EncodingOutputStream
- ISampler, IStatelessSampler
- MemoryBlockStream
- NonClosingStreamWrapper.
- TimSort: Replaced BinarySort() method with a simple InsertionSort() method that performs much better.
- IntroSort{K,V,W} performance tweaks.
- Added MathSpan.Min(), Max() for double, float, and Int32.
- Added MathSpan.SumOfSquares() for double, float values.
- Added MathSpan Int32 overloads.
- EnumerableUtils.RangeRandomOrder() now gets a temp array from ArrayPool (to reduce memory allocs and garbage collection).
- Added DiscreteDistribution.SingleOutcome singleton field.
- FileByteArray now uses smaller buffer size.
- DefaultRandomSeedSource: Sealed the class. Use stackalloc for obaining crypto random bytes. Integer arithmetic using bitshifts (performance tweak).
- Rename: NumericsUtils.ProbabilisticRound() to StochasticRound().
- Rename: CalculateMedian() to Median(), and moved from NumericsUtils to MathSpan.
- Rename: DoubleCircularBufferWithStats to CircularBufferWithStats.
- 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 tweak).
- IRandomSource.NextBytes(Span{byte}) implementations reimplemented to use modern faster techniques for populating 8 bytes at a time (approx. 7% performance boost)
- SpanUtils.Equals{T}() renamed to Equal{T}().
- Multiple other small fixes and improvements; see repository git history for full details.