Implements Conway's Game of Life in C++ and Python, parallel version using MPI See https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life for details
Uses the standard rules:
- Any live cell with fewer than two live neighbours dies, as if caused by underpopulation.
- Any live cell with two or three live neighbours lives on to the next generation.
- Any live cell with more than three live neighbours dies, as if by overpopulation.
- Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.
C++ GUI implemented using Qt Python GUI implemented using Tkinter
TODO (Python):
- Add gui to input grid size
- Add option to run for n iterations