dotnet new templates for GeneticSharp

Now GeneticSharp has a NuGet package called GeneticSharp.Templates, this package allows you to install GeneticSharp templates using the dotnet new command. Installing the GeneticSharp.Templates Before you can use the dotnet new command to create the GeneticSharp projects from templates, you need to install it on your machine: dotnet new -i...
Read "dotnet new templates for Genetic..."

GeneticSharp v2.2.0 - Sudoku sample

The GeneticSharp v2.2.0 is out. The additions of this version are the new whole sample and extensions showing how to use GeneticSharp to solve a Sudoku. The GeneticSharp.Extensions project receive those new features: Multiple MultipleChromosome Compound chromosome to artificially increase genetics diversity by evolving a list of chromosomes instead of...
Read "GeneticSharp v2.2.0 - Sudoku sample"

GeneticSharp v2.1.0

The GeneticSharp v2.1.0 is out. Features Add constructor with values to FloatingPointChromosome #33 As it is now whenever you create an instance of FloatingPointChromosome, it will randomly create gene values. I have a case where I need to stop optimization at some time, save results to DB and resume it...
Read "GeneticSharp v2.1.0"

GeneticSharp Car2D

I made an Unity3D sample for GeneticSharp inspired by amazing BoxCar2D where a genetic algorithm tries to design 2D cars to overcome roads challenges. Introduction I was always amazed by the 2D cars designed by BoxCar2D and see how genetic algorithm make new and (probably) better cars each new generation...
Read "GeneticSharp Car2D"

GeneticSharp - Unity3d sample

I just pushed to GeneticSharp master branch the GeneticSharp.Runners.UnityApp. In this Unity3d project there are 3 samples: Car2D Based on famous BoxCar2D, this sample uses a genetic algorithm to create car designs to overcome road challenges, like gaps, hills, and obstacles. A post explaining this sample in detail will be...
Read "GeneticSharp - Unity3d sample"

TSP with GeneticSharp and Unity3D

In this post I will show how to use GeneticSharp and Unity3D to solve the TSP (Travelling salesman problem). Introduction According to Wikipedia “The travelling salesman problem (TSP) asks the following question: “Given a list of cities and the distances between each pair of cities, what is the shortest possible...
Read "TSP with GeneticSharp and Unity3D"
Tutorials

Articles

Labs