pub struct AmpResult {
pub x: Vec<f64>,
pub residual_norm: f64,
pub iterations: usize,
}Expand description
Result of an AMP-family solver.
Fields§
§x: Vec<f64>§residual_norm: f64§iterations: usizeTrait Implementations§
Auto Trait Implementations§
impl Freeze for AmpResult
impl RefUnwindSafe for AmpResult
impl Send for AmpResult
impl Sync for AmpResult
impl Unpin for AmpResult
impl UnsafeUnpin for AmpResult
impl UnwindSafe for AmpResult
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