20
This is a report of a software project that created the conditions for evolution in an attempt to learn something about how evolution works in nature. This is for the programmer looking for ideas for interdisciplinary programming projects, or for anyone interested in how evolution and natural selection work.
Before commenting on the religious/theological implications of this simulation, please note that this video in no way purports to explain all the mysteries of life and the universe.
GitHub: https://github.com/davidrmiller/biosim4
I absolutely love genetic algorithms.
At university we evolved pilots for the classic moon lander game.
The genome was a collection of instructions like turn left, turn right, accelerate, decelerate.
Each generation you test all of them in the game then “breed” the most successful. Essentially take half of eachs genome and apply some mutations.
Eventually you end up with one that just manoeuvres perfectly onto the landing pad.
It’s just fascinating watching them gradually get better.
We also played around with NEAT which uses evolutionary algorithms to create neural networks by changing their structure and weights.
Just a really awesome topic.