pub trait SolveC<B> {
    type Output;

    fn solvec(&mut self, b: &B) -> Result<Self::Output>;
}
Expand description

Solves a symmetric positive definite system

Required Associated Types

Required Methods

Solves self * x = b, where self is symmetric positive definite.

Implementations on Foreign Types

Implementors