Expand description
§cellular-automata-rs
A research-grade cellular automata library implementing elementary CA (Wolfram rules 0-255), Conway’s Game of Life, Langton’s Ant, and cyclic automata.
§Modules
elementary— Elementary (1D) cellular automata with Wolfram rule numberinglife— Conway’s Game of Life and 2D cellular automatalangton— Langton’s Ant and multi-ant variantscyclic— Cyclic cellular automatarule— Rule parsing and bit manipulation utilities
Re-exports§
pub use cyclic::CyclicCA;pub use elementary::ElementaryCA;pub use langton::LangtonsAnt;pub use life::GameOfLife;
Modules§
- cyclic
- Cyclic cellular automata.
- elementary
- Elementary (1D) cellular automata with Wolfram rule numbering (0-255).
- langton
- Langton’s Ant and multi-ant variants.
- life
- Conway’s Game of Life and 2D cellular automata.
- rule
- Rule parsing and bit manipulation utilities for cellular automata.