wok diff gtklife/description.txt @ rev 22351

umfpack: hide metis-4.0 missing
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 18 16:07:36 2019 +0100 (2019-11-18)
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 Nov 18 16:07:36 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.