wok-6.x diff gtklife/description.txt @ rev 21586
updated nspr and nspr-dev (4.10.8 -> 4.21)
author | Hans-G?nter Theisgen |
---|---|
date | Mon May 20 13:58:55 2019 +0100 (2019-05-20) |
parents | 76d19633ca73 |
children |
line diff
1.1 --- a/gtklife/description.txt Fri Mar 02 16:14:59 2012 -0800 1.2 +++ b/gtklife/description.txt Mon May 20 13:58:55 2019 +0100 1.3 @@ -3,10 +3,13 @@ 1.4 Conway's Life is a form of artificial life (specifically, a cellular automaton)- 1.5 one of the simplest there is. There are only a few rules: 1.6 1.7 - The game is played on a rectangular grid, where each cell is either alive or dead. 1.8 - Each generation is computed from the state of the previous generation, using rules 3 and 4: 1.9 - A live cell with 2 or 3 live neighbors (adjacent cells, including diagonals) lives on. Otherwise it dies. 1.10 - A dead cell with exactly 3 live neighbors comes to life. 1.11 - 1.12 -That's all there is to it. Yet fascinating behavior arises from these simple 1.13 +1. The game is played on a rectangular grid, where each cell is either alive or 1.14 + dead. 1.15 +2. Each generation is computed from the state of the previous generation, using 1.16 + rules 3 and 4: 1.17 +3. A live cell with 2 or 3 live neighbors (adjacent cells, including diagonals) 1.18 + lives on. Otherwise it dies. 1.19 +4. A dead cell with exactly 3 live neighbors comes to life. 1.20 + 1.21 +That's all there is to it. Yet fascinating behavior arises from these simple 1.22 rules.