Differences between revisions 21 and 22
Revision 21 as of 2007-03-09 09:05:08
Size: 675
Comment:
Revision 22 as of 2008-08-20 18:57:21
Size: 674
Editor: anonymous
Comment: converted to 1.6 markup
Deletions are marked like this. Additions are marked like this.
Line 16: Line 16:
 * wiki:WikiPedia/Conways_Game_of_Life
 * [http://catpad.net/michael/apl/ Conway’s Game of Life in one line of APL]
 * [http://www.vector.org.uk/archive/v213/cliff213.htm Time(r) for the Game of Life]
 * WikiPedia:Conways_Game_of_Life
 * [[http://catpad.net/michael/apl/|Conway’s Game of Life in one line of APL]]
 * [[http://www.vector.org.uk/archive/v213/cliff213.htm|Time(r) for the Game of Life]]

John Conways’s “Game of Life”

This function takes a boolean matrix as argument and returns a boolean matrix with the new generation.

  ∇ nextGeneration←Life currentGeneration
[1] ⍝⍝ Take a matrix of Booleans and returns one
[2]  nextGeneration←↑1 currentGeneration∨.∧3 4=+/,¯1 0 1∘.⊖¯1 0 1∘.⌽⊂currentGeneration


CategoryShowcases

GameOfLife (last edited 2015-01-28 19:11:48 by KaiJaeger)