Skip to content

An implementation of Conway's Game of Life cellular automaton. Implemented in C# .NET WPF.

License

Notifications You must be signed in to change notification settings

prbasha/ConwaysGameOfLife

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Conway's Game Of Life

An implementation of Conway's Game of Life cellular automaton.

The game is represented by a square grid of cells.

At any time, a single cell C can be in one 2 states:

  • Alive
  • Dead

To update cell C, the number of living cells N in C's eight-location-neighbourhood is calculated. C is then updated, according to this table:

C (current status) N (number of living cells around C) C (new status)
Alive 0,1 Dead (lonely)
Alive 4,5,6,7,8 Dead (overcrowded)
Alive 2,3 Alive (lives)
Dead 3 Alive (takes 3 to give birth)
Dead 0,1,2,4,5,6,7,8 Dead (barren)

Any cells beyond the square grid are always dead.

For more information: https://rosettacode.org/wiki/Conway%27s_Game_of_Life

About

An implementation of Conway's Game of Life cellular automaton. Implemented in C# .NET WPF.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages