Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/athemathmo/stochasticgameoflife
A simple java applet which presents a twist on Conway's Game Of Life.
https://github.com/athemathmo/stochasticgameoflife
Last synced: 3 days ago
JSON representation
A simple java applet which presents a twist on Conway's Game Of Life.
- Host: GitHub
- URL: https://github.com/athemathmo/stochasticgameoflife
- Owner: AtheMathmo
- Created: 2015-11-25T19:33:50.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-25T19:52:50.000Z (almost 9 years ago)
- Last Synced: 2023-04-10T18:27:09.492Z (over 1 year ago)
- Language: Java
- Homepage: http://www.sleepycoding.co.uk/?page_id=147
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stochastic Game of Life
_This is an old project which I am no longer working on._
This repository contains a simple java applet which presents a twist on [Conway's Game of Life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life). In the classic version the following rules apply:
1. Any live cell with fewer than two live neighbours dies, as if caused by under-population.
2. Any live cell with two or three live neighbours lives on to the next generation.
3. Any live cell with more than three live neighbours dies, as if by over-population.
4. Any dead cell with exactly three live neighbours becomes a live cell, as if by reproduction.In this version the rules can be changed slightly. We allow a revival rate which causes some cells to randomly come back to life (this can be controlled within the applet). In addition to this we allow the rules to be mutated according to a markov chain - of which the user controls the rate of transition.
---
This project is a result of me playing around with GUIs in java and wanting to create and extend Conway's Game of Life.