IN101 project on Conway's Game of Life
Naive Implementation Documentation

The naive implementation of Conway's game of life uses a string to store the state of the universe's state, using the following convention:

The information about the universe (width, height, number of simulation steps and cells' state) is stored in a universe structure.

Installation

Usage

./app-naive-loader filename
Options:
filename: source textfile (see formatting above)
./app-naive-conway [-ipt?] filename
Options:
-i: generate image output for each step
-p: print simulation steps to the console
-t: consider the universe as a torus
-?: print source textfile formatting help
filename: source textfile to load the universe from