//! Convolution engines for static, dynamic, and Chebyshev graph filtering.
//!
//! Use [`StaticConvolver`] for fixed graphs, [`DynamicConvolver`] for low-rank
//! topology updates with fixed poles, and [`ChebyConvolver`] for polynomial
//! recurrence filtering.
pub use ChebyConvolver;
pub use DynamicConvolver;
pub use ;