antbox-state 0.1.0

The logical state of the `antbox` cellular automaton / artificial life toy.
Documentation
1
2
3
4
5
6
7
8
//! Provides [State] and supporting types for functional, I/O-free `antbox` state evolution
#![deny(unsafe_code, missing_docs)]

mod genparams;
mod state;

pub use self::genparams::GenParams;
pub use self::state::State;