Clone of The Game of Life
Igor Krejčí

An implementation of the classic Game of Life using agent based modeling.

Rules:
  • A live cell with less than two alive neighbors dies.
  • A live cell with more than three alive neighbors dies.
  • A dead cell with three neighbors becomes alive.
This insight is an element of the Agent Based Modeling learning module in Systems KeLE.