Drakmord2 / go-ga

Golang Genetic Algorithm

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Go-GA

Golang Genetic Algorithm with multithread support

Algorithm

Pseudo-code

   Initialize Population
   Calculate Fitness of Population
   
   while (termination criteria isnt met) do
      Parent Selection
      Crossover with probability Pc
      Mutation with probability Pm
      Calculate Fitness
      Survivor Selection
      Select Best
   return Best

About

Golang Genetic Algorithm

License:GNU General Public License v3.0


Languages

Language:Go 99.4%Language:Shell 0.6%