https://github.com/hermanya/life
Life is a cellular automaton devised by the British mathematician John Horton Conway in 1970
https://github.com/hermanya/life
Last synced: 11 days ago
JSON representation
Life is a cellular automaton devised by the British mathematician John Horton Conway in 1970
- Host: GitHub
- URL: https://github.com/hermanya/life
- Owner: Hermanya
- License: mit
- Created: 2014-05-21T03:26:25.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2018-01-27T16:16:31.000Z (over 8 years ago)
- Last Synced: 2025-07-22T08:55:18.067Z (12 months ago)
- Language: JavaScript
- Homepage: http://hermanya.github.io/life
- Size: 834 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[Conway's Game of Life](http://en.wikipedia.org/wiki/Conway's_Game_of_Life 'Wiki') implementation
=================
The "game" is a zero-player game, meaning that its evolution is determined by its initial state, requiring no further input. It generates an initial configuration randomly, then you observe how it evolves.
To do:
- [x] generate initial state
- [x] display states
- [x] 1D
- [x] 2D
- [ ] any dimension number
- [ ] use webworkers
- [ ] genetic algorithms
- [ ] selection
- [ ] crossover
- [ ] mutation
- [ ] write tests for known cases