wok-next diff gtklife/description.txt @ rev 14237
Up yad 0.20.1; up libgee 0.9.92; add yad-gtk3, libnotify-gtk3*. Add steadyflow gtk+3 downloader (compiles, runs, but can't able to download or/and save files).
author | Aleksej Bobylev <al.bobylev@gmail.com> |
---|---|
date | Fri Mar 22 14:44:40 2013 +0000 (2013-03-22) |
parents | |
children | 36cecde5b42c |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/gtklife/description.txt Fri Mar 22 14:44:40 2013 +0000 1.3 @@ -0,0 +1,12 @@ 1.4 +GtkLife is a fast, featureful, open-source Conway's Life program. 1.5 + 1.6 +Conway's Life is a form of artificial life (specifically, a cellular automaton)- 1.7 +one of the simplest there is. There are only a few rules: 1.8 + 1.9 + The game is played on a rectangular grid, where each cell is either alive or dead. 1.10 + Each generation is computed from the state of the previous generation, using rules 3 and 4: 1.11 + A live cell with 2 or 3 live neighbors (adjacent cells, including diagonals) lives on. Otherwise it dies. 1.12 + A dead cell with exactly 3 live neighbors comes to life. 1.13 + 1.14 +That's all there is to it. Yet fascinating behavior arises from these simple 1.15 +rules.