Struct SymbolicSupernodalHouseholder
pub struct SymbolicSupernodalHouseholder<I> {
col_ptrs_for_row_indices: Vec<I>,
col_ptrs_for_tau_values: Vec<I>,
col_ptrs_for_values: Vec<I>,
super_etree: Vec<I>,
max_blocksize: Vec<I>,
nrows: usize,
}
Expand description
Symbolic structure of the Householder reflections that compose $Q$,
such that: $$ Q = (I - H_1 T_1^{-1} H_1^H) \cdot (I - H_2 T_2^{-1} H_2^H) \dots (I - H_k T_k^{-1} H_k^H)$$
Fields§
§col_ptrs_for_row_indices: Vec<I>
§col_ptrs_for_tau_values: Vec<I>
§col_ptrs_for_values: Vec<I>
§super_etree: Vec<I>
§max_blocksize: Vec<I>
§nrows: usize
Implementations§
§impl<I> SymbolicSupernodalHouseholder<I>where
I: Index,
impl<I> SymbolicSupernodalHouseholder<I>where
I: Index,
pub fn n_supernodes(&self) -> usize
pub fn n_supernodes(&self) -> usize
Returns the number of supernodes in the symbolic QR.
pub fn col_ptrs_for_householder_values(&self) -> &[I]
pub fn col_ptrs_for_householder_values(&self) -> &[I]
Returns the column pointers for the numerical values of the Householder factors.
pub fn col_ptrs_for_tau_values(&self) -> &[I]
pub fn col_ptrs_for_tau_values(&self) -> &[I]
Returns the column pointers for the numerical values of the $T$ factors.
pub fn col_ptrs_for_householder_row_indices(&self) -> &[I]
pub fn col_ptrs_for_householder_row_indices(&self) -> &[I]
Returns the column pointers for the row indices of the Householder factors.
pub fn len_householder_values(&self) -> usize
pub fn len_householder_values(&self) -> usize
Returns the length of the slice that can be used to contain the numerical values of the Householder factors.
pub fn len_householder_row_indices(&self) -> usize
pub fn len_householder_row_indices(&self) -> usize
Returns the length of the slice that can be used to contain the row indices of the Householder factors.
pub fn len_tau_values(&self) -> usize
pub fn len_tau_values(&self) -> usize
Returns the length of the slice that can be used to contain the numerical values of the $T$ factors.
Trait Implementations§
Auto Trait Implementations§
impl<I> Freeze for SymbolicSupernodalHouseholder<I>
impl<I> RefUnwindSafe for SymbolicSupernodalHouseholder<I>where
I: RefUnwindSafe,
impl<I> Send for SymbolicSupernodalHouseholder<I>where
I: Send,
impl<I> Sync for SymbolicSupernodalHouseholder<I>where
I: Sync,
impl<I> Unpin for SymbolicSupernodalHouseholder<I>where
I: Unpin,
impl<I> UnwindSafe for SymbolicSupernodalHouseholder<I>where
I: 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
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> ⓘ
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> ⓘ
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