Skip to content

Finds initial noise ranges for desired final densities of CAs

Notifications You must be signed in to change notification settings

mateuskreuch/cellular-automata-density

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Cellular Automata Density

Given a matrix size and number of iterations, this code calculates the longest initial noise range for all 210 possible configurations of a standard cellular automaton in order to achieve a desired final density range.

Definitions

A standard cellular automaton as defined here is an automaton which just checks the 8 neighbors around it, as does Conway's game of life. Such an automaton can be expressed in two rules: a survive rule, which decides if an alive cell keeps living, and a birth rule, which decides if a dead cell becomes alive.

To generalize this concept, each rule can be a set having numbers from 0 to 8. Then, during the iteration, it is seen if the amount of neighbors of a cell is found in such a set. A survive rule represented by the set {0, 2, 6, 8}, for example, makes it so that a cell will only keep living if the amount of neighbors around it is even, except four.

Thus, there are 210 possible configurations for this kind of cellular automaton: each number from 0 to 8 is or is not in the set, so there are 29 possibilities per set and two sets (survive and birth).

About

Finds initial noise ranges for desired final densities of CAs

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages