Commit | Line | Data |
---|---|---|
254f065b SK |
1 | Cellular Automata |
2 | ================= | |
3 | ||
b91b5d78 SK |
4 | I started-out wanting to try Conway's Game of Life, then got hooked and decided |
5 | to play with other automata rules as well. | |
6 | ||
7 | ||
8 | Summary | |
9 | ------- | |
10 | | Automaton | Description | | |
11 | |----------------|-------------| | |
12 | | [Life] | http://en.wikipedia.org/wiki/Conway's_Game_of_Life | | |
13 | | [Forest Fire] | http://en.wikipedia.org/wiki/Forest-fire_model | | |
165cbcb2 | 14 | | [Polymorphism] | Coexistence of different transition rules on the same grid | |
b91b5d78 SK |
15 | |
16 | ||
17 | [Life]: life | |
18 | [Forest Fire]: forest-fire | |
19 | [Polymorphism]: polymorphism |