//! Singular Value Expansion (SVE) module
//!
//! This module provides functionality for computing the singular value expansion
//! of integral kernels, which is the core of the SparseIR algorithm.
//!
//! # Design Principles
//!
//! 1. **Separation of Concerns**: Clear separation between general SVE processing
//! and symmetry-specific logic
//! 2. **Type-driven Precision**: Automatic selection of working precision based on
//! required accuracy
//! 3. **Symmetry Exploitation**: Efficient computation for centrosymmetric kernels
//! via even/odd decomposition
//! 4. **Composability**: Modular design allowing easy extension and testing
// Public for testing
// Re-export public API
pub use ;
pub use SVEResult;
pub use ;
pub use ;