tesseradecades / dndCharGASandbox

A thought experiment in creating dnd characters using genetic algorithms
0 stars 0 forks source link

Genetic Algorithm Process #4

Open tesseradecades opened 5 years ago

tesseradecades commented 5 years ago

Process

Genetic Algorithms have 5 Phases.

  1. Initial Population
  2. Fitness Selection
  3. Selection
  4. Crossover
  5. Mutation

These phases generally occur in the following flow

START
Generate the initial population
Compute fitness
REPEAT
    Selection
    Crossover
    Mutation
    Compute fitness
UNTIL population has converged
STOP

Credit to Vijini Mallawaarachchi