//! Radical (Laguerre) Voronoi tessellation + its first two consumers.
//!
//! Gated behind the `voronoi` feature (which implies `compute`). The default
//! backend is a **native pure-Rust** cell-by-cell radical tessellation
//! ([`RadicalVoronoi`]) — no C/C++ FFI, WASM-clean — ported from voro++
//! (`src/v_cell.cpp`, `src/v_rad_option.h`, `src/v_container_prd.cpp`) as used
//! by the reference implementation (`vorowrapper.cpp`). Two real consumers ship with it:
//! [`DomainAnalysis`] (microheterogeneity / ionic-liquid domains, `domain.cpp`)
//! and [`VoidAnalysis`] (cavity / free-volume, `void.cpp`).
//!
//! Layer: `compute` → `core` (`SimBox`); no new dependency.
pub use ;
pub use ;
pub use ;
pub use polarizability_finite_field;
pub use RadicalVoronoi;
pub use ;