lib.rs

762 B · rust · 17 lines

1//! The atlas: the census of mrlylife over presets of seeds, masks and rules, every frame read as a design.2#![deny(missing_docs)]34/// The presets: the axes of seeds, tessellations, masks, rules and boundaries one census sweeps.5pub mod presets;6/// The readings of one frame: topology, symmetry, spectrum, entropy and the Kronecker block test.7pub mod readings;8/// The run record and the census loop with its dedupe of settled frames.9pub mod run;1011pub use presets::{classes, maxi, medi, mini, Mask, Preset, Rule, Seed};12pub use readings::{13    block_split, canonical, cuts, factors, first_negative_lobe, pack, read, shifted_factors,14    translate_of, Reading, Symmetry,15};16pub use run::{census, run_one, Census, Run};17pub use run::{fate_table, mask_tensor};