Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/s0lst1c3/game-of-life
Adaptation of Conway's Cellular Automaton
https://github.com/s0lst1c3/game-of-life
Last synced: 8 days ago
JSON representation
Adaptation of Conway's Cellular Automaton
- Host: GitHub
- URL: https://github.com/s0lst1c3/game-of-life
- Owner: s0lst1c3
- Created: 2013-11-03T01:34:47.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-03T03:02:08.000Z (about 11 years ago)
- Last Synced: 2024-04-15T00:43:27.297Z (7 months ago)
- Homepage:
- Size: 102 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Description
-----------The Game of Life is an automaton originally created by British
Mathematician John Conway to model the cellular cycle of life
and death. To play the game, simply enter in a set of coordinates
in the GOLBoard.dat file, each on a seperate line. Then run the
conway.py file to launch the simulation. The 'cells' on the board
will live, die, and create new cells according to the following
rules:Game rules
----------
1. To simulate underpopulation, any cell with fewer than two
living neighbors will die.
2. Live cells with two or three live neighbors will survive
until the next generation.
3. To simulate overcrowding, live cells with over three
neighbors will die.
4. To simulate reproduction, dead cells with exactly three live
neighbors will gain life.Live cells are represented by an asterisk on the board.
Dead cells are represted by a blank space.