pub struct AdaptiveResult {
pub states: Vec<PropState>,
pub n_eval: usize,
pub n_accept: usize,
pub n_reject: usize,
}Expand description
Result of an adaptive propagation.
Fields§
§states: Vec<PropState>Trajectory states (including initial)
n_eval: usizeTotal number of derivative evaluations (cost metric)
n_accept: usizeNumber of accepted steps
n_reject: usizeNumber of rejected steps
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AdaptiveResult
impl RefUnwindSafe for AdaptiveResult
impl Send for AdaptiveResult
impl Sync for AdaptiveResult
impl Unpin for AdaptiveResult
impl UnwindSafe for AdaptiveResult
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