pub trait RcondTridiagonalWorkImpl {
    type Elem: Scalar;

    fn new(layout: MatrixLayout) -> Self;
    fn calc(
        &mut self,
        lu: &LUFactorizedTridiagonal<Self::Elem>
    ) -> Result<<Self::Elem as Scalar>::Real>; }

Required Associated Types

Required Methods

Implementors