pub struct JacobiSolver { /* private fields */ }Implementations§
Source§impl JacobiSolver
impl JacobiSolver
pub fn new(config: SolverConfig) -> Self
pub fn solve(&mut self, a: &Matrix, b: &Vector) -> Result<Vector, SolverError>
pub fn get_last_iteration_count(&self) -> usize
Auto Trait Implementations§
impl Freeze for JacobiSolver
impl RefUnwindSafe for JacobiSolver
impl Send for JacobiSolver
impl Sync for JacobiSolver
impl Unpin for JacobiSolver
impl UnwindSafe for JacobiSolver
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