Differences between revisions 13 and 14
Revision 13 as of 2007-02-25 08:36:05
Size: 433
Editor: KaiJaeger
Comment:
Revision 14 as of 2007-03-09 08:57:28
Size: 521
Comment:
Deletions are marked like this. Additions are marked like this.
Line 12: Line 12:

See also [http://catpad.net/michael/apl/ Conway's Game of Life in one line of APL]

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

See also [http://catpad.net/michael/apl/ Conway's Game of Life in one line of APL]


CategoryShowcases

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