pub struct IsolationStats {
pub sturm_computations: u64,
pub bisection_steps: u64,
pub sign_evaluations: u64,
pub roots_isolated: u64,
}Expand description
Statistics for root isolation.
Fields§
§sturm_computations: u64Sturm sequence computations.
bisection_steps: u64Bisection steps.
sign_evaluations: u64Sign evaluations.
roots_isolated: u64Roots isolated.
Trait Implementations§
Source§impl Clone for IsolationStats
impl Clone for IsolationStats
Source§fn clone(&self) -> IsolationStats
fn clone(&self) -> IsolationStats
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IsolationStats
impl Debug for IsolationStats
Source§impl Default for IsolationStats
impl Default for IsolationStats
Source§fn default() -> IsolationStats
fn default() -> IsolationStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for IsolationStats
impl RefUnwindSafe for IsolationStats
impl Send for IsolationStats
impl Sync for IsolationStats
impl Unpin for IsolationStats
impl UnsafeUnpin for IsolationStats
impl UnwindSafe for IsolationStats
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