//! Topological Data Analysis (TDA) module
//!
//! This module provides advanced TDA algorithms:
//!
//! - [`alpha_complex`]: Alpha complex filtration via Bowyer-Watson Delaunay triangulation
//! - [`cubical_complex`]: Cubical complex persistence for image/grid data
//! - [`zigzag`]: Zigzag persistence for sequences of simplicial complexes
//! - `gromov_wasserstein`: Gromov-Wasserstein distance and multi-marginal OT
//!
//! ## References
//!
//! - Edelsbrunner & Harer (2010). Computational Topology.
//! - Carlsson (2009). Topology and Data.
//! - Mémoli (2011). Gromov-Wasserstein Distances.
// Re-export key public types
pub use ;
pub use ;
pub use ;
pub use ;
// Re-export VietorisRips from the tda_vr module so doc tests can use
// `scirs2_transform::tda::VietorisRips`
pub use crate;