wok-next view gtklife/description.txt @ rev 14907
lxinput: up 0.3.2; openbox: fix pipe menu display; slitaz-i18n: add missing core packages; tiny edits.
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Aug 02 15:13:41 2013 +0300 (2013-08-02) |
parents | |
children | 36cecde5b42c |
line source
1 GtkLife is a fast, featureful, open-source Conway's Life program.
3 Conway's Life is a form of artificial life (specifically, a cellular automaton)-
4 one of the simplest there is. There are only a few rules:
6 The game is played on a rectangular grid, where each cell is either alive or dead.
7 Each generation is computed from the state of the previous generation, using rules 3 and 4:
8 A live cell with 2 or 3 live neighbors (adjacent cells, including diagonals) lives on. Otherwise it dies.
9 A dead cell with exactly 3 live neighbors comes to life.
11 That's all there is to it. Yet fascinating behavior arises from these simple
12 rules.