pub struct IsolationStats {
pub sturm_evaluations: usize,
pub descartes_tests: usize,
pub bisection_steps: usize,
pub intervals_generated: usize,
}Expand description
Root isolation statistics.
Fields§
§sturm_evaluations: usizeNumber of Sturm sequence evaluations
descartes_tests: usizeNumber of Descartes tests
bisection_steps: usizeNumber of bisection steps
intervals_generated: usizeTotal intervals generated
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 · 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