Index of /cag/raw/benchmark/suites/life
Life Benchmark
Directory Contents
Conway's Game of Life program is represented on a two-dimensional
array of cells, each cell being alive or dead at any given time. The
program begins with an initial configuration for the cells, and
henceforth obeys the following set of rules: a living cell remains
alive if it has exactly two or three living neighbors, otherwise it
dies; a dead cell becomes alive if it has exactly three living
neighbors, otherwise it stays dead.