Differences between revisions 17 and 18
Revision 17 as of 2007-03-09 09:00:55
Size: 582
Comment:
Revision 18 as of 2007-03-09 09:02:41
Size: 668
Comment:
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:
 * [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

== External links ==


CategoryShowcases

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