pub struct Report {
pub substeps: Vec<(String, u32)>,
pub iterations: u32,
pub residual: f64,
}Expand description
What one Simulation::advance actually did.
Fields§
§substeps: Vec<(String, u32)>Substeps taken, per domain, in declared order.
Owned names, because Domain::name is borrowed from the domain and this report
outlives the borrow — the same consequence of names being data rather than
constants that shows up everywhere else in this module.
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