pub struct PowerIterationSolver {
pub tol: f64,
pub max_iter: u32,
}Expand description
Power iteration to find the dominant eigenvalue of a dense matrix.
Fields§
§tol: f64§max_iter: u32Implementations§
Auto Trait Implementations§
impl Freeze for PowerIterationSolver
impl RefUnwindSafe for PowerIterationSolver
impl Send for PowerIterationSolver
impl Sync for PowerIterationSolver
impl Unpin for PowerIterationSolver
impl UnsafeUnpin for PowerIterationSolver
impl UnwindSafe for PowerIterationSolver
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