//! Combinatorial solvers plus the byte-table readers that feed them.
//!
//! `incidence`, `matching`, and `union_find` are pure combinatorial primitives
//! over integer node indices. `missing_edge` and `mesh_quotient` also carry
//! byte parsers: they read the standard-family trim-mesh and boundary tables
//! directly, so this module is coupled to the standard family's on-disk layout
//! rather than being purely domain-agnostic.
pub
pub
pub
pub
pub
pub use UnionFind;