Struct sprs_ldl::Ldl[][src]

pub struct Ldl { /* fields omitted */ }

Builder pattern structure to customize a LDLT decomposition

Implementations

impl Ldl[src]

pub fn new() -> Self[src]

pub fn check_symmetry(self, check: SymmetryCheck) -> Self[src]

pub fn check_perm(self, check: PermutationCheck) -> Self[src]

pub fn fill_in_reduction(self, method: FillInReduction) -> Self[src]

pub fn perm<N, I>(&self, mat: CsMatViewI<'_, N, I>) -> PermOwnedI<I> where
    I: SpIndex
[src]

pub fn symbolic<N, I>(self, mat: CsMatViewI<'_, N, I>) -> LdlSymbolic<I> where
    I: SpIndex,
    N: Copy + PartialEq
[src]

pub fn numeric<N, I>(
    self,
    mat: CsMatViewI<'_, N, I>
) -> Result<LdlNumeric<N, I>, LinalgError> where
    I: SpIndex,
    N: Copy + Num + PartialOrd
[src]

Trait Implementations

impl Clone for Ldl[src]

impl Copy for Ldl[src]

impl Debug for Ldl[src]

impl Default for Ldl[src]

impl Eq for Ldl[src]

impl PartialEq<Ldl> for Ldl[src]

impl StructuralEq for Ldl[src]

impl StructuralPartialEq for Ldl[src]

Auto Trait Implementations

impl RefUnwindSafe for Ldl

impl Send for Ldl

impl Sync for Ldl

impl Unpin for Ldl

impl UnwindSafe for Ldl

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Pointable for T

type Init = T

The type for initializers.

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.