Crate cellular_automaton[][src]

Expand description

A cellular automaton simulation library with support for WebAssembly.

Structs

A two-dimensional cellular automaton with a finite number of cells.

A ruleset containing birth and survival (B/S) rules.

A ruleset containing birth, survival, and generation (B/S/C) rules.

Type Definitions

A list containing values that represent the number of state-1 neighbors that must exist for a state-0 (dead) cell to be born.

The number of possible cell states.

A list containing values that represent the number of state-1 neighbors that must exist for a state-1 cell to remain in state-1.