This is a command-line implementation of Conway's Game of Life, written in Python 3, in fulfillment of the course, Complex Systems (CMPLXSY).
- Open a terminal or command-line interface.
- Type
python3 main.py
orpython main.py
. - Enter the grid height, width, and number of iterations as prompted.
- Initially, the grid is randomly populated with a minimum of three clusters and a maximum equal to the grid area divided by four.
- Any surviving cell from the previous iteration will live.
- The following rules shall apply following the Moore configuration:
- If a dead cell is surrounded by three live neighboors, the cell will live.
- If a live cell is surrounded by two or three live neighbors, the cell will survive.
- Otherwise, the cell will die.
CMPLXSY S11, ALT Group 8
- Badulis, Keith Gabriel N.
- Lua, Matthew Walden B.
- Nill, Byron Ethelbert V.