1// structured/mod.rs 2mod semiseparable; 3mod toeplitz; 4mod cauchy_vandermonde; 5 6pub use semiseparable::semiseparable_matvec; 7pub use toeplitz::toeplitz_matvec; 8pub use cauchy_vandermonde::{cauchy_matvec, vandermonde_matvec};