pub struct IluColoringPreconditioner<T: ComplexField> { /* private fields */ }Expand description
Parallel ILU using Graph Coloring / Level Scheduling
This approach analyzes the sparsity pattern of L and U to find independent rows that can be solved in parallel. Rows are grouped into “levels” where all rows in a level depend only on rows from previous levels.
Good for matrices with limited fill-in and structured sparsity patterns.
Implementations§
Source§impl<T: ComplexField> IluColoringPreconditioner<T>
impl<T: ComplexField> IluColoringPreconditioner<T>
Trait Implementations§
Source§impl<T: Clone + ComplexField> Clone for IluColoringPreconditioner<T>
impl<T: Clone + ComplexField> Clone for IluColoringPreconditioner<T>
Source§fn clone(&self) -> IluColoringPreconditioner<T>
fn clone(&self) -> IluColoringPreconditioner<T>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<T: Debug + ComplexField> Debug for IluColoringPreconditioner<T>
impl<T: Debug + ComplexField> Debug for IluColoringPreconditioner<T>
Source§impl<T: ComplexField + Send + Sync> Preconditioner<T> for IluColoringPreconditioner<T>
impl<T: ComplexField + Send + Sync> Preconditioner<T> for IluColoringPreconditioner<T>
Auto Trait Implementations§
impl<T> Freeze for IluColoringPreconditioner<T>
impl<T> RefUnwindSafe for IluColoringPreconditioner<T>where
T: RefUnwindSafe,
impl<T> Send for IluColoringPreconditioner<T>
impl<T> Sync for IluColoringPreconditioner<T>
impl<T> Unpin for IluColoringPreconditioner<T>where
T: Unpin,
impl<T> UnwindSafe for IluColoringPreconditioner<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more