An open API service indexing awesome lists of open source software.

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

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