mod.rs
630 B · rust · 14 lines
1/// The presets: the axes of seeds, tessellations, masks, rules and boundaries one census sweeps.2pub mod presets;3/// The readings of one frame: topology, symmetry, spectrum, entropy and the Kronecker block test.4pub mod readings;5/// The run record and the census loop with its dedupe of settled frames.6pub mod run;78pub use presets::{classes, maxi, medi, mini, Mask, Preset, Rule, Seed};9pub use readings::{10 block_split, canonical, cuts, factors, first_negative_lobe, pack, read, shifted_factors,11 translate_of, Reading, Symmetry,12};13pub use run::{census, run_one, Census, Run};14pub use run::{fate_table, mask_tensor};