//! # Linear algebra primitives
//!
//! Linear algebra primitives used to represent data in either a dense or a sparse format.
/// Inner value for the `SparseVector` and `SparseMatrix` type.
pub type SparseTuple<F> = ;
/// Shorthand for common type used in sparse data structures (vector, matrix, the carry matrix,
/// etc.)
pub type SparseTupleVec<F> = ;