tilezz 0.1.4

Utilities to work with perfect-precision polygonal tiles built on top of cyclotomic integer rings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Seed-based orchestration: the multi-threaded path + the
//! external `--list-seeds` / `--seed <prefix>` flow.
//!
//! See [`parallel`] for the in-process worker dispatch, and
//! [`external`] for the seed-listing + seed-resume helpers that
//! external orchestrators (xargs, GNU parallel, Slurm, ...) drive.
//!
//! [`super::EnumResult`] is the common `(rats, stats)` return type
//! used by every dispatch entry point.

pub mod external;
pub mod parallel;

pub use external::{
    collect_seed_prefixes, dispatch_collect_seed_prefixes, dispatch_enumerate_from_seed,
    enumerate_from_seed,
};
pub use parallel::{parallel_drain_seeds, rat_enum_parallel, splitting_depth};