Hacker News new | ask | show | jobs
by concreteblock 1888 days ago
In case anyone is wondering, the way to interpet the rules is as follows.

* The state of the system is a black-white assignment of colors to the grid.

* The rules tell you how to compute the next state of the system.

* To update the state at a certain cell x, you look at the colors of x-1, x and x+1. (left, self, and right). Then use use the table of rules to determine the new color of the middle cell. For instance, the first rule tells you that if you see three black cells in a row, then in the next time step the middle cell is white.

* This update is done simultaneously over all cells, so you compute all the new cell colors and then update them all at once.