Small simulation of getting the best dino height in the environment, if the dino is too short it dies and if it requires too much food it dies.
install repository and run Simulation.py
graph TD
A[Creating random agents with random genes] --> B(Putting the agents in the envoriment)
G[Breed agents] --> B
B --> C{Agent survival}
C -->|Choice One| D[Kill agent] --> A
C -->|Choice Two| E[Keep agent] --> G
C -->|Choice Three| F[Mutate agent] --> G
- Choice 1 = Agent doesn't have the required genomes to survive the simulation/environment
- Choice 2 = Agent barely has the required genomes to survive the simulation/environment
- Choice 3 = Agent fits in great for the required genomes to survive the simulation/environment