pub trait LuTridiagonalWorkImpl {
    type Elem: Scalar;

    fn new(layout: MatrixLayout) -> Self;
    fn eval(
        self,
        a: Tridiagonal<Self::Elem>
    ) -> Result<LUFactorizedTridiagonal<Self::Elem>>; }

Required Associated Types

Required Methods

Implementors