pub struct StdStepCalc<'d, D: SchurDriver + WithBacksolver, P: PCalculator> { /* private fields */ }Expand description
Reference implementation that strings together
SchurDriver::schur_solve and a final
SensBacksolver::solve using the A data the driver was
built with.
Mirrors upstream
SensStdStepCalc.cpp:23-282.
The Schur-driver type is borrowed for the lifetime of the
StdStepCalc; this matches upstream’s “build once, step many”
pattern.
Implementations§
Source§impl<'d, D: SchurDriver + WithBacksolver, P: PCalculator> StdStepCalc<'d, D, P>
impl<'d, D: SchurDriver + WithBacksolver, P: PCalculator> StdStepCalc<'d, D, P>
Trait Implementations§
Source§impl<'d, D, P> SensStepCalc for StdStepCalc<'d, D, P>
impl<'d, D, P> SensStepCalc for StdStepCalc<'d, D, P>
Auto Trait Implementations§
impl<'d, D, P> Freeze for StdStepCalc<'d, D, P>
impl<'d, D, P> RefUnwindSafe for StdStepCalc<'d, D, P>where
D: RefUnwindSafe,
P: RefUnwindSafe,
impl<'d, D, P> Send for StdStepCalc<'d, D, P>
impl<'d, D, P> Sync for StdStepCalc<'d, D, P>
impl<'d, D, P> Unpin for StdStepCalc<'d, D, P>
impl<'d, D, P> UnsafeUnpin for StdStepCalc<'d, D, P>
impl<'d, D, P> UnwindSafe for StdStepCalc<'d, D, P>where
D: RefUnwindSafe,
P: RefUnwindSafe,
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
impl<T, U> Imply<T> for U
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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