Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
Mickdep committed May 4, 2019
2 parents 3029f8d + f7f8c2c commit 54d832e
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# GeneticAlgorithmCPP
Genetic algorithm programmed in C++ using raw pointers. In practice smart pointers are better to use but just for some practice I decided to use raw pointers.

## Note ##
This algorithm is not perfect and there are many vectors than can affect the outcome and/or the performance.
For instance the mutation chance of 1% might be too high, or the population size might be too low/high.
Besides, there are different methods of selection and crossover.

Tweaking these vectors is key to good outcome and/or performance.

In this example the goal of the algorithm was to guess a string of characters. This is just to demonstrate the function of the genetic algorithm.
If you want to use this algorithm for your own use you can simply substitute the individual's gene by your own object. Do not forget to change the way fitness is calculated and how mutation is implemented.

## Screenshot ##

0 comments on commit 54d832e

Please sign in to comment.