//! Tensor-based quadrature implementations.
//!
//! This module provides numerical integration algorithms using tensor operations.
//! All implementations are generic over `R: Runtime<DType = DType>` for multi-backend support.
pub use fixed_quad_impl;
pub use monte_carlo_impl;
pub use ;
pub use qmc_impl;
pub use quad_impl;
pub use romberg_impl;
pub use simpson_impl;
pub use tanh_sinh_impl;
pub use ;