pub struct PirlsWorkspace {Show 17 fields
pub wz: Array1<f64>,
pub eta_buf: Array1<f64>,
pub scaled_matrix: Array2<f64>,
pub final_aug_matrix: Array2<f64>,
pub rhs_full: Array1<f64>,
pub working_residual: Array1<f64>,
pub weighted_residual: Array1<f64>,
pub delta_eta: Array1<f64>,
pub vec_buf_p: Array1<f64>,
pub factorization_scratch: MemBuffer,
pub perm: Vec<usize>,
pub perm_inv: Vec<usize>,
pub factorization_matrix: Array2<f64>,
pub weighted_xvalues: Vec<f64>,
pub weighted_x_chunk: Array2<f64>,
pub hessian_buf: Array2<f64>,
pub matvec_buf: Array1<f64>,
/* private fields */
}Fields§
§wz: Array1<f64>§eta_buf: Array1<f64>§scaled_matrix: Array2<f64>§final_aug_matrix: Array2<f64>§rhs_full: Array1<f64>§working_residual: Array1<f64>§weighted_residual: Array1<f64>§delta_eta: Array1<f64>§vec_buf_p: Array1<f64>§factorization_scratch: MemBuffer§perm: Vec<usize>§perm_inv: Vec<usize>§factorization_matrix: Array2<f64>§weighted_xvalues: Vec<f64>§weighted_x_chunk: Array2<f64>§hessian_buf: Array2<f64>§matvec_buf: Array1<f64>Implementations§
Auto Trait Implementations§
impl Freeze for PirlsWorkspace
impl RefUnwindSafe for PirlsWorkspace
impl Send for PirlsWorkspace
impl Sync for PirlsWorkspace
impl Unpin for PirlsWorkspace
impl UnsafeUnpin for PirlsWorkspace
impl UnwindSafe for PirlsWorkspace
Blanket Implementations§
impl<T> Allocation for T
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T> DistributionExt for Twhere
T: ?Sized,
impl<T, U> Imply<T> for U
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.