Game of Life JS Model DocumentsThis material has 2 associated documents. Select a document title to view a document's information. Main DocumentGame of Life JS Model
written by
Wolfgang Christian and Francisco Esquembre The EJS Game of Life Model simulates a popular 2D cellular automata of a lattice in a finite state which is updated in accordance with a set of nearby-neighbor rules. The universe of the Game of Life, developed by John Conway, is a two-dimensional orthogonal grid of square cells, each of which is in one of two possible states, live or dead. Every cell interacts with its eight neighbors to determine if it will live or die (generally when there are too many live neighbors or not enough live neighbors) in the next time step. You can clear the lattice, design initial configurations (click on a cell to toggle between dead/live), and change the lattice size.
Published September 5, 2013
This file has previous versions. Source Code DocumentsGame of Life JS Source CodeThis source code zip archive contains an XML representation of the Game of Life JS Model. Unzip this archive in your Ejs workspace to compile and run this model using EJS 5. Although EJS is a Java program, EJS 5 creates a stand alone JavaScript program from this source code.
Last Modified September 30, 2014
This file has previous versions. |