GeneticSharpCore 1.1.1
dotnet add package GeneticSharpCore --version 1.1.1
NuGet\Install-Package GeneticSharpCore -Version 1.1.1
<PackageReference Include="GeneticSharpCore" Version="1.1.1" />
<PackageVersion Include="GeneticSharpCore" Version="1.1.1" />
<PackageReference Include="GeneticSharpCore" />
paket add GeneticSharpCore --version 1.1.1
#r "nuget: GeneticSharpCore, 1.1.1"
#:package GeneticSharpCore@1.1.1
#addin nuget:?package=GeneticSharpCore&version=1.1.1
#tool nuget:?package=GeneticSharpCore&version=1.1.1
GeneticSharp
GeneticSharp is a .Net Core library that that handles the mecanics of a generic algorithm implementation. It automatically creates the population, do by itself the reproduction and mutation phases according with the strategy and configuration set.
GeneticSharp do the hard job for you and let you focus on the most important piece, the problem you are solving. You can direct focus on designing your model, chromosses, and the fitness method.
GeneticSharp accepts as a model any C# POCO class. It needs to be a class, needs to implement the IEvolutionaryIndividual interface and to have the default constructor.
Simplest Usage
using GeneticSharp;
// ...
var geneticEvolution = new GeneticEvolution<MyModel>();
// gen1
var gen1Result = geneticEvolution.Evolve();
Console.WriteLine(gen1Result.BestIndividual);
// gen2
var gen2Result = geneticEvolution.Evolve();
Console.WriteLine(gen2Result.BestIndividual);
Configuration
Supported variables
- Population Size: amount of individuals (population) per generation
- Natural Selection Rate: population percetage that is selected to reproduce and generate new individuals to the next gen
- Mutation Rate
- Collection Types Sizes
Types supporteds
- string
- int, short, long
- float, double, decimal
- Nullable
- bool
- DateTime
- IEnumerable<T>, IList<T>, List<T>, Array
- Enums
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net8.0 is compatible. 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. |
-
net8.0
- AutoBuilderCore (>= 1.1.2)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.