pub struct Report {
pub substeps: Vec<(&'static str, u32)>,
pub iterations: u32,
pub residual: f64,
}Expand description
What one Simulation::advance actually did.
Fields§
§substeps: Vec<(&'static str, u32)>Substeps taken, per domain, in declared order.
iterations: u32Coupling iterations used. One for every schedule but Iterative.
residual: f64Largest residual left at the end.
Trait Implementations§
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnsafeUnpin for Report
impl UnwindSafe for Report
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