use crate;
// 2x2 Dense matrix types are restricted to the crate
// NB: Implements special matrix decomposition cases
// NB: S = 4 here because the matrix has 2^2 elements
pub type DenseMatrix2<T> = ;
// NB: S = 3 here because the upper triangle has 3 elements
pub type DenseMatrixSym2<T> = ;
// hand implemented DenseMatrixSym2<T> to make sure
// everything is properly unrolled